Codebase list d2to1 / 8f0f3ca
Drop Python 2 support. Andrey Rahmatullin 4 years ago
3 changed file(s) with 10 addition(s) and 25 deletion(s). Raw diff Collapse all Expand all
0 d2to1 (0.2.12-2) UNRELEASED; urgency=medium
0 d2to1 (0.2.12-2) unstable; urgency=medium
1
2 * Team upload.
13
24 [ Ondřej Nový ]
35 * Fixed homepage (https)
1416 [ Piotr Ożarowski ]
1517 * Add dh-python to Build-Depends
1618
17 -- Ondřej Nový <novy@ondrej.org> Tue, 29 Mar 2016 21:29:11 +0200
19 [ Andrey Rahmatullin ]
20 * Drop Python 2 support.
21
22 -- Andrey Rahmatullin <wrar@debian.org> Sat, 10 Aug 2019 23:07:45 +0500
1823
1924 d2to1 (0.2.12-1) unstable; urgency=medium
2025
22 Priority: optional
33 Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
44 Uploaders: Aurelien Jarno <aurel32@debian.org>
5 Build-Depends: debhelper (>= 7.0.50~), dh-python, python-all (>= 2.6.6-3~), python-setuptools, python3-all (>= 3.1.2-6~), python3-setuptools
5 Build-Depends: debhelper (>= 7.0.50~), dh-python, python3-all (>= 3.1.2-6~), python3-setuptools
66 Standards-Version: 3.9.6
77 Homepage: https://pypi.python.org/pypi/d2to1
88 Vcs-Git: https://salsa.debian.org/python-team/modules/d2to1.git
99 Vcs-Browser: https://salsa.debian.org/python-team/modules/d2to1
10
11 Package: python-d2to1
12 Architecture: all
13 Depends: ${misc:Depends}, ${python:Depends}
14 Description: Python support for distutils2-like setup.cfg files as package metadata
15 d2to1 (the 'd' is for 'distutils') allows using distutils2-like setup.cfg
16 files for a package's metadata with a distribute/setuptools setup.py script.
17 It works by providing a distutils2-formatted setup.cfg file containing all
18 of a package's metadata, and a very minimal setup.py which will slurp its
19 arguments from the setup.cfg.
20 .
21 This package provides d2to1 on the Python 2 module path. It is complemented
22 by python3-d2to1.
2310
2411 Package: python3-d2to1
2512 Architecture: all
00 #!/usr/bin/make -f
11
2 PYVERS := $(shell pyversions -r)
32 PY3VERS := $(shell py3versions -r)
43
54 %:
6 dh $@ --with python2,python3
5 dh $@ --with python3
76
87 override_dh_auto_build:
98 set -ex; \
10 for py in $(PYVERS) $(PY3VERS); do \
9 for py in $(PY3VERS); do \
1110 $$py setup.py build; \
1211 done
1312
1413 override_dh_auto_install:
15 set -ex; \
16 for py in $(PYVERS); do \
17 $$py setup.py install --skip-build --no-compile \
18 --root debian/python-d2to1 \
19 --install-layout=deb; \
20 done
2114 set -ex; \
2215 for py in $(PY3VERS); do \
2316 $$py setup.py install --skip-build --no-compile \