diff --git a/debian/changelog b/debian/changelog index d9e93d7..0c125c4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +python-pyqrcode (1.2.1-3) unstable; urgency=medium + + * Remove Python2 support. + + -- Sascha Steinbiss Sat, 30 Nov 2019 10:38:50 +0100 + python-pyqrcode (1.2.1-2) unstable; urgency=medium * Update VCS-Git-* to Salsa URLs. diff --git a/debian/control b/debian/control index f5be219..035c78f 100644 --- a/debian/control +++ b/debian/control @@ -4,35 +4,12 @@ Maintainer: Sascha Steinbiss Build-Depends: debhelper (>= 11~), dh-python, - python-all, - python-setuptools, python3-all, python3-setuptools Standards-Version: 4.2.1 Vcs-Git: https://salsa.debian.org/debian/python-pyqrcode.git Vcs-Browser: https://salsa.debian.org/debian/python-pyqrcode Homepage: https://github.com/mnooner256/pyqrcode - -Package: python-pyqrcode -Architecture: all -Depends: ${python:Depends}, - ${misc:Depends} -Recommends: python-png -Description: Python 2 module to generate QR Codes - The pyqrcode module is a QR code generator that is simple to use and written - in pure Python. The module can automate most of the building process for - creating QR codes. Most codes can be created using only two lines of code. - . - Unlike other generators, all of the helpers can be controlled manually. You - are free to set any or all of the properties of your QR code. QR codes can be - saved as SVG, PNG, and plain text. They can also be displayed directly in - most Linux terminal emulators. - . - The pyqrcode module attempts to follow the QR code standard as closely as - possible. The terminology, encodings and algorithms used in pyqrcode come - directly from the standard. - . - This package contains the Python 2 version. Package: python3-pyqrcode Architecture: all @@ -52,5 +29,3 @@ The pyqrcode module attempts to follow the QR code standard as closely as possible. The terminology, encodings and algorithms used in pyqrcode come directly from the standard. - . - This package contains the Python 3 version. diff --git a/debian/rules b/debian/rules index 5bc8d50..049889f 100755 --- a/debian/rules +++ b/debian/rules @@ -1,9 +1,6 @@ #!/usr/bin/make -f - -buildvers := $(shell pyversions -sv) -build3vers := $(shell py3versions -sv) export PYBUILD_NAME = pyqrcode %: - dh $@ --with python2,python3 --buildsystem=pybuild + dh $@ --with python3 --buildsystem=pybuild