From 390984cbb229f6d0f4cf178095e1a7a3dd005b18 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 07:38:15 +0200 Subject: Adding debian version 0.7.1-1. Signed-off-by: Daniel Baumann --- debian/changelog | 66 ++++++++++++++++++++++++++++++++++++++++++++++++ debian/control | 25 ++++++++++++++++++ debian/copyright | 31 +++++++++++++++++++++++ debian/rules | 16 ++++++++++++ debian/source/format | 1 + debian/upstream/metadata | 5 ++++ debian/watch | 3 +++ 7 files changed, 147 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/control create mode 100644 debian/copyright create mode 100755 debian/rules create mode 100644 debian/source/format create mode 100644 debian/upstream/metadata create mode 100644 debian/watch diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..f38bc90 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,66 @@ +port-for (0.7.1-1) unstable; urgency=medium + + * Merging upstream version 0.7.1. + + -- David Kunz Wed, 30 Aug 2023 09:08:59 +0200 + +port-for (0.7.0-1) unstable; urgency=medium + + * Merging upstream version 0.7.0. + * Updating Standards-Version to 4.6.2. + * Updating Copyright for debian directory. + * Adding upstream metadata. + * Remove dublicate Section in control. + + -- David Kunz Tue, 27 Jun 2023 13:52:04 +0200 + +port-for (0.6.3-1) unstable; urgency=medium + + * Merging upstream version 0.6.3. + * Correcting spelling for NMU. + * Updating build-depends. + * Adding PYBUILD_SYSTEM in rules. + * Disable dh_auto_test in rules. + + -- David Kunz Mon, 09 Jan 2023 12:01:17 +0100 + +port-for (0.6.2-1) unstable; urgency=medium + + * Merging upstream version 0.6.2. + * Updating Standards-Version to 4.6.1. + + -- David Kunz Mon, 18 Jul 2022 13:45:47 +0200 + +port-for (0.6.1-1) unstable; urgency=medium + + * Merging upstream version 0.6.1. + * Updating copyright for David Kunz. + * Updating debhelper-compat to 13. + * Updating Standards-Version to 4.6.0. + * Updating vcs in control. + * Adding watch file. + + -- David Kunz Sat, 08 Jan 2022 11:51:40 +0100 + +port-for (0.4-2.1) unstable; urgency=medium + + * Non-maintainer upload by the Reproducible Builds team. + * No source change upload to rebuild on buildd with .buildinfo files. + + -- Holger Levsen Tue, 05 Jan 2021 16:22:12 +0100 + +port-for (0.4-2) unstable; urgency=medium + + * Updating year in copyright for 2019. + * Updating to standards version 4.3.0. + * Updating to debhelper 12. + * Change email address + * Change from debhelper to debhelper-compat + + -- David Kunz Fri, 04 Jan 2019 11:37:43 +0100 + +port-for (0.4-1) unstable; urgency=medium + + * Initial release (Closes: #901506). + + -- David Kunz Tue, 04 Sep 2018 10:45:17 +0200 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..46d239f --- /dev/null +++ b/debian/control @@ -0,0 +1,25 @@ +Source: port-for +Section: python +Priority: optional +Maintainer: David Kunz +Build-Depends: + debhelper-compat (= 13), + dh-python, + python3-all, + python3-mock, + python3-setuptools, + pybuild-plugin-pyproject, +Rules-Requires-Root: no +Standards-Version: 4.6.2 +Homepage: https://github.com/kmike/port-for +Vcs-Browser: https://salsa.debian.org/david.kunz/port-for +Vcs-Git: https://salsa.debian.org/david.kunz/port-for.git + +Package: python3-port-for +Architecture: all +Depends: + ${misc:Depends}, + ${python3:Depends}, +Description: local TCP ports management for Python + port-for is a utility that helps with local TCP ports management. It can find + an unused TCP localhost port and remember the association. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..ebcd6dd --- /dev/null +++ b/debian/copyright @@ -0,0 +1,31 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: port-for +Upstream-Contact: Mikhail Korobov +Source: https://pypi.python.org/pypi/port-for + +Files: * +Copyright: 2012-2017 Mikhail Korobov +License: MIT + +Files: debian/* +Copyright: 2018-2023 David Kunz +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/rules b/debian/rules new file mode 100755 index 0000000..ef70aa6 --- /dev/null +++ b/debian/rules @@ -0,0 +1,16 @@ +#!/usr/bin/make -f + +export PYBUILD_NAME=port-for +export PYBUILD_SYSTEM=pyproject + +%: + dh ${@} --buildsystem=pybuild --with python3 + +override_dh_auto_install: + dh_auto_install + +override_dh_auto_test: + # disabled + + mkdir -p debian/python3-$(PYBUILD_NAME)/usr/share/doc/python3-$(PYBUILD_NAME) + cp README.rst debian/python3-$(PYBUILD_NAME)/usr/share/doc/python3-$(PYBUILD_NAME)/README 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/upstream/metadata b/debian/upstream/metadata new file mode 100644 index 0000000..2d80dad --- /dev/null +++ b/debian/upstream/metadata @@ -0,0 +1,5 @@ +Archive: "https://github.com/kmike/port-for" +Bug-Database: "https://github.com/kmike/port-for/labels/bug" +Documentation: "https://github.com/kmike/port-for#port-for" +Repository: "https://github.com/kmike/port-for" +Repository-Browse: "https://github.com/kmike" diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..566291a --- /dev/null +++ b/debian/watch @@ -0,0 +1,3 @@ +version=4 +opts=filenamemangle=s/.+\/v?(\d\S+)\.tar\.gz/port-for-$1\.tar\.gz/ \ + https://github.com/kmike/port-for/tags .*/v?(\d\S+)\.tar\.gz -- cgit v1.2.3