diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..a80c772 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +prometheus-pve-exporter (2.1.2-1+swh1) unstable-swh; urgency=medium + + * Initial release + + -- Vincent Sellier Wed, 11 Aug 2021 16:21:55 +0200 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..b6911b3 --- /dev/null +++ b/debian/control @@ -0,0 +1,23 @@ +Source: prometheus-pve-exporter +Section: python +Priority: optional +Maintainer: swh sysadm +Build-Depends: debhelper (>= 9), + dh-python, + python3-all, + python3-setuptools, + python3-prometheus-client, + python3-proxmoxer, + python3-yaml, + python3-requests, + python3-werkzeug, +Standards-Version: 4.5.1 +X-Python3-Version: >= 3.6 +Homepage: https://github.com/prometheus-pve/prometheus-pve-exporter + +Package: python3-prometheus-pve-exporter +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends}, ${python3:Depends} +Description: Proxmox VE exporter for the Prometheus monitoring system. + This is an exporter that exposes information gathered from Proxmox VE + node for use by the Prometheus monitoring system. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..60a7b7c --- /dev/null +++ b/debian/copyright @@ -0,0 +1,11 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: prometheus-pve-exporter +Source: https://github.com/prometheus-pve/prometheus-pve-exporter + +Files: * +Copyright: 2014-2017 José Padilla +License: Apache License 2 + +Files: debian/* +Copyright: 2021 swh sysadm +License: Apache License 2 diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..7f63e3e --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,5 @@ +[DEFAULT] +upstream-branch=debian/upstream +upstream-tag=debian/upstream/%(version)s +debian-branch=debian/unstable-swh +pristine-tar=True diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..ec00789 --- /dev/null +++ b/debian/rules @@ -0,0 +1,8 @@ +#!/usr/bin/make -f + +export PYBUILD_NAME=prometheus-pve-exporter + +%: + dh $@ --with python3 --buildsystem=pybuild + +override_dh_auto_test: 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)