debian package 0.1-1

This commit is contained in:
Stefan Bühler 2023-01-12 10:17:23 +01:00
parent 7f7841f2bf
commit ec3ec224f7
10 changed files with 75 additions and 0 deletions

11
debian/changelog vendored Normal file
View File

@ -0,0 +1,11 @@
pqm (0.1-1) unstable; urgency=medium
* Initial release.
-- Stefan Bühler <stefan.buehler@tik.uni-stuttgart.de> Thu, 12 Jan 2023 10:14:06 +0100
pqm (0.1-0) unstable; urgency=medium
* Initial release (fake ITP).
-- Stefan Bühler <stefan.buehler@tik.uni-stuttgart.de> Thu, 12 Jan 2023 10:14:05 +0100

21
debian/control vendored Normal file
View File

@ -0,0 +1,21 @@
Source: pqm
Section: mail
Priority: optional
Maintainer: Stefan Bühler <stefan.buehler@tik.uni-stuttgart.de>
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).

28
debian/copyright vendored Normal file
View File

@ -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 <no-support-by-mail@uni-stuttgart.de>
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.

5
debian/gbp.conf vendored Normal file
View File

@ -0,0 +1,5 @@
[DEFAULT]
debian-branch = debian
upstream-branch = main
upstream-tag = v%(version)s
pristine-tar = False

2
debian/pqm.docs vendored Normal file
View File

@ -0,0 +1,2 @@
README.md
pqm.example.yaml

1
debian/pqm.install vendored Normal file
View File

@ -0,0 +1 @@
pqm /usr/bin

1
debian/pqm.lintian-overrides vendored Normal file
View File

@ -0,0 +1 @@
pqm: no-manual-page [usr/bin/pqm]

4
debian/rules vendored Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/make -f
%:
dh $@

1
debian/source/format vendored Normal file
View File

@ -0,0 +1 @@
3.0 (quilt)

1
debian/source/options vendored Normal file
View File

@ -0,0 +1 @@
extend-diff-ignore = "(^|/)(venv|.mypy_cache)(/|$)"