diff options
-rw-r--r-- | debian/changelog | 2 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rwxr-xr-x | debian/rules | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 6f4c887..b531604 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,8 @@ scons (3.1.2-2) unstable; urgency=medium * Upload to unstable. + * debian/rules: Remove "--with python2". + * debian/control: Switch to Depends "${python3:Depends}". -- Jörg Frings-Fürst <debian@jff.email> Wed, 29 Jan 2020 11:01:23 +0100 diff --git a/debian/control b/debian/control index cc2b861..a1862f0 100644 --- a/debian/control +++ b/debian/control @@ -16,7 +16,7 @@ Vcs-Browser: https://salsa.debian.org/debian/scons Package: scons Architecture: all Depends: - ${python:Depends}, + ${python3:Depends}, ${misc:Depends} Description: replacement for make SCons is a make replacement providing a range of enhanced features such 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 |