diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..b7a1788 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +py-zabbix (1.1.3-1) unstable; urgency=low + + * Initial release. + + -- Davide Madrisan Tue, 14 Aug 2018 10:03:50 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..50b53f5 --- /dev/null +++ b/debian/control @@ -0,0 +1,33 @@ +Source: py-zabbix +Maintainer: Alexey Dubkov +Section: python +Priority: optional +Build-Depends: + debhelper (>= 9), + dh-python, + python-all (>= 2.6.6-3), + python-setuptools, + python3-all, + python3-setuptools +Standards-Version: 3.9.8 +X-Python-Version: >= 2.7 +X-Python3-Version: >= 3.3 +Homepage: https://github.com/adubkov/py-zabbix.git + +Package: python-pyzabbix +Architecture: all +Depends: + ${misc:Depends}, + ${python:Depends}, + python-requests +Description: Zabbix module for Python. + +Package: python3-pyzabbix +Architecture: all +Depends: + ${misc:Depends}, + ${python3:Depends}, + python3-requests, +Description: Zabbix module for Python. + . + This package contains the Python 3 version of the library. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..04e9aea --- /dev/null +++ b/debian/copyright @@ -0,0 +1,31 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: py-zabbix +Upstream-Contact: https://github.com/adubkov +Source: https://github.com/adubkov/py-zabbix +Comment: + The overall licence of the py-zabbix upstream code amounts to GPL-2.0. + +Files: * +Copyright: 2018, Alexey Dubkov + +License: GPL-2.0 + This program is free software; you can redistribute it + and/or modify it under the terms of the GNU General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later + version. + . + This program is distributed in the hope that it will be + useful, but WITHOUT ANY WARRANTY; without even the implied + warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the GNU General Public License for more + details. + . + You should have received a copy of the GNU General Public + License along with this package; if not, write to the Free + Software Foundation, Inc., 51 Franklin St, Fifth Floor, + Boston, MA 02110-1301 USA + . + On Debian systems, the full text of the GNU General Public + License version 2 can be found in the file + `/usr/share/common-licenses/GPL-2'. diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..54d8734 --- /dev/null +++ b/debian/rules @@ -0,0 +1,14 @@ +#!/usr/bin/make -f + +export PYBUILD_NAME=pyzabbix + +%: + dh $@ --with python2,python3 --buildsystem=pybuild + +# The test suite currently requires external network access, so we +# can't enable it. +# +override_dh_auto_test: + +override_dh_installchangelogs: + dh_installchangelogs CHANGELOG.rst diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt)