From ec3ec224f7faa193589be450c7126da49a6e8fb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20B=C3=BChler?= Date: Thu, 12 Jan 2023 10:17:23 +0100 Subject: [PATCH] debian package 0.1-1 --- debian/changelog | 11 +++++++++++ debian/control | 21 +++++++++++++++++++++ debian/copyright | 28 ++++++++++++++++++++++++++++ debian/gbp.conf | 5 +++++ debian/pqm.docs | 2 ++ debian/pqm.install | 1 + debian/pqm.lintian-overrides | 1 + debian/rules | 4 ++++ debian/source/format | 1 + debian/source/options | 1 + 10 files changed, 75 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/gbp.conf create mode 100644 debian/pqm.docs create mode 100644 debian/pqm.install create mode 100644 debian/pqm.lintian-overrides create mode 100755 debian/rules create mode 100644 debian/source/format create mode 100644 debian/source/options diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..0697f2c --- /dev/null +++ b/debian/changelog @@ -0,0 +1,11 @@ +pqm (0.1-1) unstable; urgency=medium + + * Initial release. + + -- Stefan Bühler Thu, 12 Jan 2023 10:14:06 +0100 + +pqm (0.1-0) unstable; urgency=medium + + * Initial release (fake ITP). + + -- Stefan Bühler Thu, 12 Jan 2023 10:14:05 +0100 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..eeaf643 --- /dev/null +++ b/debian/control @@ -0,0 +1,21 @@ +Source: pqm +Section: mail +Priority: optional +Maintainer: Stefan Bühler +Rules-Requires-Root: no +Build-Depends: + debhelper-compat (= 13), +Standards-Version: 4.6.1 +Homepage: https://git-nks-public.tik.uni-stuttgart.de/mail/pqm + +Package: pqm +Architecture: all +Depends: + python3:any, + python3-trio, + python3-pyparsing, + python3-yaml, + ${misc:Depends}, +Description: postfix (cluster) queue manager + CLI tool to manage postfix queues (optionally across multiple hosts through + ssh). diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..749690a --- /dev/null +++ b/debian/copyright @@ -0,0 +1,28 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Source: https://git-nks-public.tik.uni-stuttgart.de/mail/pqm +Upstream-Name: pqm + +Files: + * +Copyright: + 2023 Universität Stuttgart +License: MIT + +License: MIT + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + . + The above copyright notice and this permission notice shall be included in all + copies or substantial portions of the Software. + . + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + SOFTWARE. diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..17d14b6 --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,5 @@ +[DEFAULT] +debian-branch = debian +upstream-branch = main +upstream-tag = v%(version)s +pristine-tar = False diff --git a/debian/pqm.docs b/debian/pqm.docs new file mode 100644 index 0000000..2d5f3fa --- /dev/null +++ b/debian/pqm.docs @@ -0,0 +1,2 @@ +README.md +pqm.example.yaml diff --git a/debian/pqm.install b/debian/pqm.install new file mode 100644 index 0000000..6d6b06c --- /dev/null +++ b/debian/pqm.install @@ -0,0 +1 @@ +pqm /usr/bin \ No newline at end of file diff --git a/debian/pqm.lintian-overrides b/debian/pqm.lintian-overrides new file mode 100644 index 0000000..1d2136f --- /dev/null +++ b/debian/pqm.lintian-overrides @@ -0,0 +1 @@ +pqm: no-manual-page [usr/bin/pqm] diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..2d33f6a --- /dev/null +++ b/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +%: + dh $@ 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) diff --git a/debian/source/options b/debian/source/options new file mode 100644 index 0000000..b7b4a80 --- /dev/null +++ b/debian/source/options @@ -0,0 +1 @@ +extend-diff-ignore = "(^|/)(venv|.mypy_cache)(/|$)"