diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | debian/files | 1 | ||||
-rw-r--r-- | debian/patches/0110-remove_stale_files.patch | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 0d0c874..be64e6c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +scons (3.0.1-2) UNRELEASED; urgency=medium + + * Refresh debian/patches/0110-remove_stale_files.patch to + make fix python 3 compatibility (Closes: #893740). + + -- Jörg Frings-Fürst <debian@jff.email> Fri, 12 Oct 2018 19:47:43 +0200 + scons (3.0.1-1) unstable; urgency=medium * New upstream release: diff --git a/debian/files b/debian/files deleted file mode 100644 index 59a90df..0000000 --- a/debian/files +++ /dev/null @@ -1 +0,0 @@ -scons_3.0.1-1_source.buildinfo devel optional diff --git a/debian/patches/0110-remove_stale_files.patch b/debian/patches/0110-remove_stale_files.patch index b3a94d2..298d47c 100644 --- a/debian/patches/0110-remove_stale_files.patch +++ b/debian/patches/0110-remove_stale_files.patch @@ -13,7 +13,7 @@ Index: trunk/engine/SCons/Script/Main.py + # Remove temporary files left by SCons + if options.clean: -+ if os.environ.has_key('DH_INTERNAL_OPTIONS'): ++ if 'DH_INTERNAL_OPTIONS' in os.environ: + import shutil + for path in ('.sconsign.dblite', '.sconf_temp'): + try: |