Codebase list logbook / c72340a
Complete python2 removal, which was done already as a NMU but that the maintainer decided to ignore and perform partially; Closes: #936962 Sandro Tosi 4 years ago
4 changed file(s) with 29 addition(s) and 8 deletion(s). Raw diff Collapse all Expand all
0 logbook (1.5.3-3) UNRELEASED; urgency=medium
1
2 * Complete python2 removal, which was done already as a NMU but that the
3 maintainer decided to ignore and perform partially; Closes: #936962
4
5 -- Sandro Tosi <morph@debian.org> Sat, 14 Mar 2020 16:24:20 -0400
6
07 logbook (1.5.3-2) unstable; urgency=medium
18
29 * Remove python2 package.
66 Build-Depends:
77 debhelper-compat (= 12),
88 dh-python,
9 python-all,
10 python-setuptools,
119 python3-all,
1210 python3-setuptools,
13 python-sphinx (>= 1.0.7+dfsg) | python3-sphinx,
14 python-docutils,
15 python2.7-doc,
16 cython,
11 python3-sphinx,
12 python3-docutils,
13 python3-doc,
1714 cython3,
18 python2.7-dev,
1915 python3-dev,
2016 Standards-Version: 4.4.1
2117 Homepage: http://pythonhosted.org/Logbook/
3632 Package: python-logbook-doc
3733 Architecture: all
3834 Depends: ${misc:Depends}, ${sphinxdoc:Depends}
39 Suggests: python-doc
35 Suggests: python3-doc
4036 Section: doc
4137 Description: logging system for Python that replaces the standard library's module (doc)
4238 Logbook is a logging system for Python that replaces the standard library's
00 0001-Point-intersphinx-map-to-local-doc.patch
1 use-cython3.patch
0 --- a/Makefile
1 +++ b/Makefile
2 @@ -25,11 +25,11 @@ docs:
3 make -C docs html SPHINXOPTS=-Aonline=1
4
5 release: logbook/_speedups.so
6 - python scripts/make-release.py
7 + @python scripts/make-release.py
8
9 logbook/_speedups.so: logbook/_speedups.pyx
10 - cython logbook/_speedups.pyx
11 - python setup.py build_ext --inplace
12 + cython3 logbook/_speedups.pyx
13 + python3 setup.py build_ext --inplace
14
15 cybuild: logbook/_speedups.so
16