Codebase list python-pyqrcode / 38ca88f
remove Python2 support Sascha Steinbiss 4 years ago
3 changed file(s) with 7 addition(s) and 29 deletion(s). Raw diff Collapse all Expand all
0 python-pyqrcode (1.2.1-3) unstable; urgency=medium
1
2 * Remove Python2 support.
3
4 -- Sascha Steinbiss <satta@debian.org> Sat, 30 Nov 2019 10:38:50 +0100
5
06 python-pyqrcode (1.2.1-2) unstable; urgency=medium
17
28 * Update VCS-Git-* to Salsa URLs.
33 Maintainer: Sascha Steinbiss <satta@debian.org>
44 Build-Depends: debhelper (>= 11~),
55 dh-python,
6 python-all,
7 python-setuptools,
86 python3-all,
97 python3-setuptools
108 Standards-Version: 4.2.1
119 Vcs-Git: https://salsa.debian.org/debian/python-pyqrcode.git
1210 Vcs-Browser: https://salsa.debian.org/debian/python-pyqrcode
1311 Homepage: https://github.com/mnooner256/pyqrcode
14
15 Package: python-pyqrcode
16 Architecture: all
17 Depends: ${python:Depends},
18 ${misc:Depends}
19 Recommends: python-png
20 Description: Python 2 module to generate QR Codes
21 The pyqrcode module is a QR code generator that is simple to use and written
22 in pure Python. The module can automate most of the building process for
23 creating QR codes. Most codes can be created using only two lines of code.
24 .
25 Unlike other generators, all of the helpers can be controlled manually. You
26 are free to set any or all of the properties of your QR code. QR codes can be
27 saved as SVG, PNG, and plain text. They can also be displayed directly in
28 most Linux terminal emulators.
29 .
30 The pyqrcode module attempts to follow the QR code standard as closely as
31 possible. The terminology, encodings and algorithms used in pyqrcode come
32 directly from the standard.
33 .
34 This package contains the Python 2 version.
3512
3613 Package: python3-pyqrcode
3714 Architecture: all
5128 The pyqrcode module attempts to follow the QR code standard as closely as
5229 possible. The terminology, encodings and algorithms used in pyqrcode come
5330 directly from the standard.
54 .
55 This package contains the Python 3 version.
00 #!/usr/bin/make -f
1
2 buildvers := $(shell pyversions -sv)
3 build3vers := $(shell py3versions -sv)
41
52 export PYBUILD_NAME = pyqrcode
63
74 %:
8 dh $@ --with python2,python3 --buildsystem=pybuild
5 dh $@ --with python3 --buildsystem=pybuild