From a6de79413b04b4043a4cf7c44a778f1f23fdf43f Mon Sep 17 00:00:00 2001 From: John Estabrook Date: Fri, 26 Mar 2021 16:47:53 +0000 Subject: initial commit --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 23 +++++++++++++++++++++++ debian/copyright | 0 debian/rules | 17 +++++++++++++++++ 5 files changed, 46 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100755 debian/rules (limited to 'debian') 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 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 +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 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" + -- cgit v1.2.3