diff -Nru stomper-0.4.1/debian/changelog stomper-0.4.1/debian/changelog --- stomper-0.4.1/debian/changelog 2018-08-18 22:59:58.000000000 +0000 +++ stomper-0.4.1/debian/changelog 2019-08-10 10:58:23.000000000 +0000 @@ -1,3 +1,13 @@ +stomper (0.4.1-2) unstable; urgency=medium + + * Team upload. + * Use debhelper-compat instead of debian/compat. + * Drop Python 2 support. + * Bump debhelper compat level to 12. + * Bump standards version to 4.4.0 (no changes). + + -- Ondřej Nový Sat, 10 Aug 2019 12:58:23 +0200 + stomper (0.4.1-1) unstable; urgency=medium * Team upload. diff -Nru stomper-0.4.1/debian/compat stomper-0.4.1/debian/compat --- stomper-0.4.1/debian/compat 2018-08-12 00:20:13.000000000 +0000 +++ stomper-0.4.1/debian/compat 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -11 diff -Nru stomper-0.4.1/debian/control stomper-0.4.1/debian/control --- stomper-0.4.1/debian/control 2018-08-18 22:59:52.000000000 +0000 +++ stomper-0.4.1/debian/control 2019-08-10 10:57:44.000000000 +0000 @@ -4,38 +4,17 @@ Maintainer: Debian Python Modules Team Uploaders: Simon Chopin Build-Depends: - debhelper (>= 11), + debhelper-compat (= 12), dh-python, - python-setuptools, - python-all (>= 2.6.6-3~), - python-future, python3-setuptools, python3-all, python3-future, -Standards-Version: 4.1.2 +Standards-Version: 4.4.0 Homepage: https://github.com/oisinmulvihill/stomper/ Vcs-Git: https://salsa.debian.org/python-team/modules/stomper.git Vcs-Browser: https://salsa.debian.org/python-team/modules/stomper Testsuite: autopkgtest-pkg-python -Package: python-stomper -Architecture: all -Depends: - ${misc:Depends}, - ${python:Depends} -Description: Python client implementation of the STOMP protocol (Python 2) - The client is attempting to be transport layer neutral. This module provides - functions to create and parse STOMP messages in a programmatic fashion. The - messages can be easily generated and parsed, however its up to the user to do - the sending and receiving. - . - The Streaming Text Oriented Messaging Protocol is a text-based protocol - vaguely similar to HTTP, intended for message oriented middleware. Its - protocol specification can be found at - http://stomp.github.io/ - . - This package installs the library for Python 2. - Package: python3-stomper Architecture: all Depends: diff -Nru stomper-0.4.1/debian/rules stomper-0.4.1/debian/rules --- stomper-0.4.1/debian/rules 2018-08-18 22:59:52.000000000 +0000 +++ stomper-0.4.1/debian/rules 2019-08-10 10:57:12.000000000 +0000 @@ -3,15 +3,7 @@ export PYBUILD_NAME = stomper %: - dh $@ --with python2,python3 --buildsystem=pybuild + dh $@ --with python3 --buildsystem=pybuild override_dh_install: dh_install -XSOURCES.txt - -override_dh_auto_test: -ifeq "$(filter nocheck,$(DEB_BUILD_OPTIONS))" "" - set -e; \ - for py in $(shell pyversions -r) $(shell py3versions -r); do \ - $$py setup.py test; \ - done -endif