diff options
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | debian/control | 43 | ||||
-rwxr-xr-x | debian/rules | 3 |
3 files changed, 7 insertions, 45 deletions
diff --git a/debian/changelog b/debian/changelog index 4ee6657..ef008e4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +logilab-common (1.4.4-1.1) UNRELEASED; urgency=medium + + * Drop python2 packaging + + -- Philippe Pepiot <philippe.pepiot@logilab.fr> Fri, 08 Nov 2019 13:50:50 +0100 + logilab-common (1.4.4-1) unstable; urgency=medium * Switch to pybuild diff --git a/debian/control b/debian/control index 544cbf6..a321470 100644 --- a/debian/control +++ b/debian/control @@ -10,62 +10,19 @@ Uploaders: David Douard <david.douard@logilab.fr>, Build-Depends: debhelper (>= 8), dh-python, - python-all, - python-setuptools, python3-all, python3-setuptools, Build-Depends-Indep: graphviz, - python-unittest2, - python-egenix-mxdatetime, - python-tz, python3-tz | python3 (<< 3.3), python-six (>= 1.4.0), python3-six (>= 1.4.0) | python3 (<< 3.3), X-Python3-Version: >= 3.3 -X-Python-Version: >= 2.6 Standards-Version: 3.9.1 Homepage: http://www.logilab.org/project/logilab-common Vcs-Hg: http://hg.logilab.org/logilab/common Vcs-Browser: http://hg.logilab.org/logilab/common -Package: python-logilab-common -Architecture: all -Provides: ${python:Provides} -Depends: - python-six (>= 1.4.0), - ${python:Depends}, - ${misc:Depends}, -Recommends: - python-egenix-mxdatetime -Suggests: - python-unittest2, - python-kerberos, -Conflicts: - python-constraint (<< 0.4.0-4), - python-logilab-astng (<< 0.19.1-1), - pylint (<< 1), - devtools (<= 0.9.0-1), - logilab-doctools (<= 0.1.6-4), - python-logilab-aspects (<= 0.1.4-2), - python2.3-logilab-common, - python2.4-logilab-common, - cubicweb-server (<< 3.6.0-1), -Description: useful miscellaneous modules used by Logilab projects - logilab-common is a collection of low-level Python packages and modules, - designed to ease: - . - * handling command line options and configuration files - * writing interactive command line tools - * manipulation files and character strings - * running unit tests - * manipulating tree structures - * generating text and HTML reports - * logging - * parsing XML processing instructions - . - This package contains the Python 2.x version of this library. - Package: python3-logilab-common Architecture: all Depends: diff --git a/debian/rules b/debian/rules index 6668ee2..af22b21 100755 --- a/debian/rules +++ b/debian/rules @@ -12,7 +12,7 @@ export PYBUILD_DISABLE=test PACKAGE3:=python3-logilab-common %: - dh $@ --with python2,python3 --buildsystem=pybuild + dh $@ --with python3 --buildsystem=pybuild override_dh_auto_install: dh_auto_install @@ -25,6 +25,5 @@ override_dh_auto_install: override_dh_auto_test: ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) - python -m logilab.common.pytest -t test python3 -m logilab.common.pytest -t test endif |