Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ wheels/
*.egg-info/
.installed.cfg
*.egg
.pybuild/

# PyInstaller
# Usually these files are written by a python script from a template
Expand Down
9 changes: 9 additions & 0 deletions debian/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Debian dpkg-buildpackage generated bits.
*.debhelper
*.debhelper.log
*.substvars
.debhelper/
debhelper-build-stamp
files
# Package directories
/python3-acapi2
5 changes: 5 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
python3-acapi2 (2.1.3) stable; urgency=medium

* Initial release.

-- John Franklin <franklin@sentaidigital.com> Mon, 25 Sep 2023 11:51:44 -0400
1 change: 1 addition & 0 deletions debian/compat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
10
13 changes: 13 additions & 0 deletions debian/control
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Source: python3-acapi2
Section: web
Priority: optional
Maintainer: John Franklin <franklin@sentaidigital.com>
Build-Depends: debhelper (>=9), dh-exec, dh-python, python3-all, python3-setuptools, python3-backoff
Standards-Version: 3.9.8
Homepage: https://github.com/pmatias/python-acquia-cloud-2

Package: python3-acapi2
Architecture: all
Depends: ${python3:Depends} ${misc:Depends}
Description: Acquia Cloud API V2 python bindings
Python Client library to communicate with the Acquia Cloud API V2.
10 changes: 10 additions & 0 deletions debian/copyright
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Source: https://github.com/sentaidigital/onedrive_tray_deb
Upstream-Name: Acquia Cloud API
Upstream-Contact: John Franklin <franklin@sentaidigital.com>

Files:
*
License: MIT
Copyright: 2021-2023 Matthais Katz
2017-2020 Pablo Fabregat
2 changes: 2 additions & 0 deletions debian/gbp.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[dch]
git-author=true
15 changes: 15 additions & 0 deletions debian/rules
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/usr/bin/make -f
# You must remove unused comment lines for the released package.
#export DH_VERBOSE = 1
#export DEB_BUILD_MAINT_OPTIONS = hardening=+all
#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic
#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed

export PYBUILD_NAME = acapi2


%:
dh $@ --with python3 --buildsystem=pybuild

# Skip running the tests until they work in the build environment.
override_dh_auto_test:
Loading