Codebase list oslo-sphinx / debian/4.18.0-3
Drop python 2 support (Closes: #937219). Thomas Goirand 4 years ago
4 changed file(s) with 28 addition(s) and 41 deletion(s). Raw diff Collapse all Expand all
0 oslo-sphinx (4.18.0-3) UNRELEASED; urgency=medium
1
0 oslo-sphinx (4.18.0-3) unstable; urgency=medium
1
2 [ Ondřej Nový ]
23 * d/control: Set Vcs-* to salsa.debian.org
34 * d/control: Add trailing tilde to min version depend to allow
45 backports
56 * d/control: Use team+openstack@tracker.debian.org as maintainer
67 * Use debhelper-compat instead of debian/compat.
78
8 -- Ondřej Nový <onovy@debian.org> Mon, 12 Feb 2018 10:28:54 +0100
9 [ Thomas Goirand ]
10 * Drop python 2 support (Closes: #937219).
11
12 -- Thomas Goirand <zigo@debian.org> Wed, 04 Sep 2019 09:51:49 +0200
913
1014 oslo-sphinx (4.18.0-2) unstable; urgency=medium
1115
99 Build-Depends:
1010 debhelper-compat (= 10),
1111 dh-python,
12 openstack-pkg-tools,
13 python-all,
14 python-pbr (>= 2.0.0),
15 python-setuptools,
16 python-sphinx (>= 1.6.2),
12 openstack-pkg-tools (>= 99~),
13 python3-sphinx,
1714 python3-all,
18 python3-pbr (>= 2.0.0),
15 python3-pbr,
1916 python3-setuptools,
2017 python3-sphinx,
2118 Build-Depends-Indep:
22 python-hacking (>= 0.10.0),
23 python-openstackdocstheme (>= 1.17.0),
24 python-requests (>= 2.14.2),
25 python-six,
19 python3-openstackdocstheme,
2620 python3-hacking (>= 0.10.0),
2721 python3-requests (>= 2.14.2),
2822 python3-six,
3226 Homepage: https://github.com/openstack/oslo.sphinx
3327 Testsuite: autopkgtest-pkg-python
3428
35 Package: python-oslosphinx
36 Architecture: all
37 Depends:
38 python-oslosphinx-common,
39 python-pbr (>= 2.0.0),
40 python-requests (>= 2.14.2),
41 python-six,
42 ${misc:Depends},
43 ${python:Depends},
44 Description: theme and extension support for openstack - Python 2.7
45 Theme and extension support for Sphinx documentation from the OpenStack
46 project. To use the theme, symply add 'oslosphinx' to the extensions list in
47 the conf.py file in your Sphinx project.
48 .
49 This package contains the Python 2.7 module.
50
5129 Package: python-oslosphinx-common
5230 Architecture: all
5331 Depends:
5432 ${misc:Depends},
55 ${python:Depends},
33 ${python3:Depends},
5634 Description: theme and extension support for openstack - common
5735 Theme and extension support for Sphinx documentation from the OpenStack
5836 project. To use the theme, symply add 'oslosphinx' to the extensions list in
6442 Architecture: all
6543 Depends:
6644 python-oslosphinx-common,
67 python3-pbr (>= 2.0.0),
68 python3-requests (>= 2.14.2),
45 python3-pbr,
46 python3-requests,
6947 python3-six,
7048 ${misc:Depends},
7149 ${python3:Depends},
33 include /usr/share/openstack-pkg-tools/pkgos.make
44
55 %:
6 dh $@ --buildsystem=python_distutils --with python2,python3
6 dh $@ --buildsystem=python_distutils --with python3
7
8 override_dh_auto_clean:
9 rm -rf build .stestr
10 find . -iname '*.pyc' -delete
11 for i in $$(find . -type d -iname __pycache__) ; do rm -rf $$i ; done
12
13 override_dh_auto_build:
14 echo "Do nothing..."
15
16 override_dh_auto_test:
17 echo "Do nothing..."
718
819 override_dh_auto_install:
9 set -e && for pyvers in $(PYTHONS); do \
10 python$$pyvers setup.py install --install-layout=deb \
11 --root $(CURDIR)/debian/python-oslosphinx; \
12 done
13 set -e && for pyvers in $(PYTHON3S); do \
14 python$$pyvers setup.py install --install-layout=deb \
15 --root $(CURDIR)/debian/python3-oslosphinx; \
16 done
20 pkgos-dh_auto_install --no-py2 --in-tmp