diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 23 | ||||
-rw-r--r-- | debian/copyright | 0 | ||||
-rwxr-xr-x | debian/rules | 17 |
5 files changed, 46 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..13e063c --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +vyos-http-api-tools (0.1.0-1) unstable; urgency=medium + + * Initial release. + + -- VyOS maintainers and contributors <maintainers@vyos.io> Fri, 26 Mar 2021 16:19:34 +0000 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..f599e28 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +10 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..d6e1da8 --- /dev/null +++ b/debian/control @@ -0,0 +1,23 @@ +Source: vyos-http-api-tools +Section: contrib/net +Priority: extra +Maintainer: VyOS Package Maintainers <maintainers@vyos.net> +Build-Depends: debhelper (>= 10), + python3.7, + python3-setuptools, + dh-virtualenv (>= 1.0), + python3-pip, + python3-dev, + python3-venv +Standards-Version: 3.9.6 + +Package: vyos-http-api-tools +Architecture: any +Pre-Depends: dpkg (>= 1.16.1), + python3.7, + ${misc:Pre-Depends} +Depends: ${misc:Depends} +Description: api tools for VyOS + api tools for VyOS + + diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/debian/copyright diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..f88d083 --- /dev/null +++ b/debian/rules @@ -0,0 +1,17 @@ +#!/usr/bin/make -f + +export DH_VIRTUALENV_INSTALL_ROOT=/usr/share + +%: + dh $@ --with python-virtualenv + +override_dh_virtualenv: + dh_virtualenv \ + --python /usr/bin/python3.7 \ + --use-system-packages \ + --builtin-venv \ + --setuptools \ + --upgrade-pip \ + --extra-pip-arg "--ignore-installed" \ + --extra-pip-arg "--no-cache-dir" + |