summaryrefslogtreecommitdiff
diff options
authorBoyuan Yang <byang@debian.org>2022-06-13 12:45:32 -0400
committergit-ubuntu importer <ubuntu-devel-discuss@lists.ubuntu.com>2022-06-13 22:43:11 +0000
commit636dd4b3550ced27abb218be48c45f6685c2f89c (patch)
treee68360b2614dba30d9bfe8591bf7c8222b8c1dc3
parent113f1d49e8cfe32dcbb7af87051f4e7f94a33eb5 (diff)
Imported using git-ubuntu import.
Notes
Notes: * Team upload. [ Ondřej Nový ] * Use debhelper-compat instead of debian/compat. * d/control: Update Maintainer field with new Debian Python Team contact address. * d/control: Update Vcs-* fields with new Debian Python Team Salsa layout. [ Boyuan Yang ] * Bump Standards-Version to 4.6.1. * Migrate from cdbs to dh13. * d/rules: Do not run (broken) tests. It did not run in previous builds anyway.
-rw-r--r--debian/changelog19
-rw-r--r--debian/compat1
-rw-r--r--debian/control15
-rwxr-xr-xdebian/rules11
4 files changed, 30 insertions, 16 deletions
diff --git a/debian/changelog b/debian/changelog
index 4428dc8..fab3637 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,22 @@
+python-wither (1.1-3) unstable; urgency=medium
+
+ * Team upload.
+
+ [ Ondřej Nový ]
+ * Use debhelper-compat instead of debian/compat.
+ * d/control: Update Maintainer field with new Debian Python Team
+ contact address.
+ * d/control: Update Vcs-* fields with new Debian Python Team Salsa
+ layout.
+
+ [ Boyuan Yang ]
+ * Bump Standards-Version to 4.6.1.
+ * Migrate from cdbs to dh13.
+ * d/rules: Do not run (broken) tests. It did not run in previous
+ builds anyway.
+
+ -- Boyuan Yang <byang@debian.org> Mon, 13 Jun 2022 12:45:32 -0400
+
python-wither (1.1-2) unstable; urgency=medium
[ Ondřej Nový ]
diff --git a/debian/compat b/debian/compat
deleted file mode 100644
index 9a03714..0000000
--- a/debian/compat
+++ /dev/null
@@ -1 +0,0 @@
-10 \ No newline at end of file
diff --git a/debian/control b/debian/control
index d537d1e..9b8d3f1 100644
--- a/debian/control
+++ b/debian/control
@@ -1,20 +1,19 @@
Source: python-wither
Section: python
Priority: optional
-Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
+Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders:
Mike Gabriel <sunweaver@debian.org>
Build-Depends:
- cdbs (>= 0.4.90~),
- debhelper (>= 10),
- python3-all,
+ debhelper-compat (= 13),
+ python3,
python3-pytest,
python3-setuptools,
- dh-python,
-Standards-Version: 4.3.0
+ dh-sequence-python3,
+Standards-Version: 4.6.1
Homepage: https://pypi.python.org/pypi/wither
-Vcs-Git: https://salsa.debian.org/python-team/modules/python-wither.git
-Vcs-Browser: https://salsa.debian.org/python-team/modules/python-wither
+Vcs-Git: https://salsa.debian.org/python-team/packages/python-wither.git
+Vcs-Browser: https://salsa.debian.org/python-team/packages/python-wither
Package: python3-wither
Architecture: all
diff --git a/debian/rules b/debian/rules
index ccd31b7..c4aa643 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,10 +1,7 @@
#!/usr/bin/make -f
-include /usr/share/cdbs/1/class/python-distutils.mk
-include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/cdbs/1/rules/utils.mk
+%:
+ dh $@ --buildsystem=pybuild
-common-binary-post-install-arch:: list-missing
-
-get-orig-source:
- uscan --noconf --force-download --rename --download-current-version --destdir=..
+override_dh_auto_test:
+ # Do not run test. It did not run in previous builds anyway.