diff options
-rw-r--r-- | debian/changelog | 4 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rwxr-xr-x | debian/rules | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog index a835cbb..6d3ffd0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -13,15 +13,17 @@ scons (3.1.0-1) unstable; urgency=medium * debian/control: - Remove trailing whitespaces. - Add python3 support. + - Remove python2 support. - Use secure URI for homepage. * debian/rules: - Remove trailing whitespaces. - Add python3 support. + - Remove python2 support. * debian/copyright: - Add year 2019. - Use secure URI. - -- Jörg Frings-Fürst <debian@jff.email> Tue, 23 Jul 2019 16:33:56 +0200 + -- Jörg Frings-Fürst <debian@jff.email> Thu, 25 Jul 2019 07:36:16 +0200 scons (3.0.1-2) unstable; urgency=medium diff --git a/debian/control b/debian/control index 5c6305c..280a6dd 100644 --- a/debian/control +++ b/debian/control @@ -6,7 +6,6 @@ Uploaders: Laszlo Boszormenyi (GCS) <gcs@debian.org> Build-Depends: debhelper (>= 12), dh-python, - python-all, python3-all Standards-Version: 4.4.0 Homepage: https://www.scons.org/ @@ -16,7 +15,6 @@ Vcs-Browser: https://salsa.debian.org/debian/scons Package: scons Architecture: all Depends: - ${python2:Depends}, ${python3:Depends}, ${misc:Depends} Description: replacement for make diff --git a/debian/rules b/debian/rules index a6576fe..e759c42 100755 --- a/debian/rules +++ b/debian/rules @@ -3,4 +3,4 @@ export PYBUILD_INSTALL_ARGS=--no-version-script --standalone-lib --no-install-man --no-install-bat %: - dh $@ --with python2,python3 --buildsystem=pybuild + dh $@ --with python3 --buildsystem=pybuild |