diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 4 | ||||
-rw-r--r-- | debian/patches/0130-python3.patch | 46 | ||||
-rw-r--r-- | debian/patches/series | 1 |
3 files changed, 50 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index c9a36cf..052bc3b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -22,8 +22,10 @@ scons (3.1.0-1) unstable; urgency=medium * debian/copyright: - Add year 2019. - Use secure URI. + * New debian/patches/0130-python3.patch: + - Switch shebang to python3. - -- Jörg Frings-Fürst <debian@jff.email> Thu, 25 Jul 2019 07:44:50 +0200 + -- Jörg Frings-Fürst <debian@jff.email> Tue, 06 Aug 2019 09:49:22 +0200 scons (3.0.1-2) unstable; urgency=medium diff --git a/debian/patches/0130-python3.patch b/debian/patches/0130-python3.patch new file mode 100644 index 0000000..9c13592 --- /dev/null +++ b/debian/patches/0130-python3.patch @@ -0,0 +1,46 @@ +Description: Use shebang python3 +Author: Jörg Fring-Fürst <debian@jff.email> +Forwarded: not-needed +Last-Update: 2019-08-06 +--- +This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ +Index: trunk/script/scons +=================================================================== +--- trunk.orig/script/scons ++++ trunk/script/scons +@@ -1,4 +1,4 @@ +-#! /usr/bin/env python ++#! /usr/bin/env python3 + # + # SCons - a Software Constructor + # +Index: trunk/script/scons-configure-cache +=================================================================== +--- trunk.orig/script/scons-configure-cache ++++ trunk/script/scons-configure-cache +@@ -1,4 +1,4 @@ +-#! /usr/bin/env python ++#! /usr/bin/env python3 + # + # SCons - a Software Constructor + # +Index: trunk/script/scons-time +=================================================================== +--- trunk.orig/script/scons-time ++++ trunk/script/scons-time +@@ -1,4 +1,4 @@ +-#!/usr/bin/env python ++#!/usr/bin/env python3 + # + # scons-time - run SCons timings and collect statistics + # +Index: trunk/script/sconsign +=================================================================== +--- trunk.orig/script/sconsign ++++ trunk/script/sconsign +@@ -1,4 +1,4 @@ +-#! /usr/bin/env python ++#! /usr/bin/env python3 + # + # SCons - a Software Constructor + # diff --git a/debian/patches/series b/debian/patches/series index 20ca14e..5325217 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -5,3 +5,4 @@ 0100-parallel_build.patch 0120-fix-bibtex-call.patch #0125-printf_regression.patch +0130-python3.patch |