Complete python2 removal, which was done already as a NMU but that the maintainer decided to ignore and perform partially; Closes: #936962
Sandro Tosi
3 years ago
|
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 |
|
0 | 7 |
logbook (1.5.3-2) unstable; urgency=medium
|
1 | 8 |
|
2 | 9 |
* Remove python2 package.
|
6 | 6 |
Build-Depends:
|
7 | 7 |
debhelper-compat (= 12),
|
8 | 8 |
dh-python,
|
9 | |
python-all,
|
10 | |
python-setuptools,
|
11 | 9 |
python3-all,
|
12 | 10 |
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,
|
17 | 14 |
cython3,
|
18 | |
python2.7-dev,
|
19 | 15 |
python3-dev,
|
20 | 16 |
Standards-Version: 4.4.1
|
21 | 17 |
Homepage: http://pythonhosted.org/Logbook/
|
|
36 | 32 |
Package: python-logbook-doc
|
37 | 33 |
Architecture: all
|
38 | 34 |
Depends: ${misc:Depends}, ${sphinxdoc:Depends}
|
39 | |
Suggests: python-doc
|
|
35 |
Suggests: python3-doc
|
40 | 36 |
Section: doc
|
41 | 37 |
Description: logging system for Python that replaces the standard library's module (doc)
|
42 | 38 |
Logbook is a logging system for Python that replaces the standard library's
|
0 | 0 |
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 |
|