summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2017-10-13 08:43:21 +0200
committerJörg Frings-Fürst <debian@jff-webhosting.net>2017-10-13 08:43:21 +0200
commita6b3ffd0f78e4d74110de5894722daf97eb9404d (patch)
tree206cdcaaf7cc411ade65a87fa59840d83c8df2bb
parent0df66c2788b61033b84a5f7ecff5ed5d1f6bd4b6 (diff)
New patch/0125-printf_regression.patch
-rw-r--r--debian/changelog8
-rw-r--r--debian/files1
-rw-r--r--debian/patches/0125-printf_regression.patch37
-rw-r--r--debian/patches/series1
4 files changed, 46 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 8db961b..6ba2445 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+scons (3.0.0-2) UNRELEASED; urgency=medium
+
+ * New patch/0125-printf_regression.patch (Closes: #878327):
+ - Support python 2 print statements in SConscripts
+ (cherry picked from upstream commit).
+
+ -- Jörg Frings-Fürst <debian@jff-webhosting.net> Fri, 13 Oct 2017 08:22:58 +0200
+
scons (3.0.0-1) unstable; urgency=medium
* New upstream release.
diff --git a/debian/files b/debian/files
deleted file mode 100644
index 55c5400..0000000
--- a/debian/files
+++ /dev/null
@@ -1 +0,0 @@
-scons_3.0.0-1_source.buildinfo devel optional
diff --git a/debian/patches/0125-printf_regression.patch b/debian/patches/0125-printf_regression.patch
new file mode 100644
index 0000000..1d5cee0
--- /dev/null
+++ b/debian/patches/0125-printf_regression.patch
@@ -0,0 +1,37 @@
+Description: Support python 2 print statements in SConscripts
+ This fixes a regression introduced in scons-3.0.0, where
+ SConscripts containing python 2 print statements would cause
+ syntax errors even when executing scons with python 2.7.
+Origin: upstream, https://github.com/SConsProject/scons/commit/2e0de3c55f22b3eaa7767b69740b898f3d2f46bf
+Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=878327
+Forwarded: not-needed
+Last-Update: 2017-10-13
+---
+This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
+Index: trunk/CHANGES.txt
+===================================================================
+--- trunk.orig/CHANGES.txt
++++ trunk/CHANGES.txt
+@@ -11,6 +11,9 @@ NOTE: This is a major release. You shou
+ Significant changes in some python action signatures. Also switching between PY 2.7 and PY 3.5, 3.6
+ will cause rebuilds.
+
++ From Thomas Berg:
++ - Fixed a regression in scons-3.0.0 where "from __future__ import print_function" was imposed
++ on the scope where SConstruct is executed, breaking existing builds using PY 2.7.
+
+ From William Blevins:
+ - Updated D language scanner support to latest: 2.071.1. (PR #1924)
+Index: trunk/engine/SCons/Script/SConscript.py
+===================================================================
+--- trunk.orig/engine/SCons/Script/SConscript.py
++++ trunk/engine/SCons/Script/SConscript.py
+@@ -5,8 +5,6 @@ files.
+
+ """
+
+-from __future__ import print_function
+-
+ #
+ # Copyright (c) 2001 - 2017 The SCons Foundation
+ #
diff --git a/debian/patches/series b/debian/patches/series
index 3b82bac..f390c4b 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -4,3 +4,4 @@
0110-remove_stale_files.patch
0100-parallel_build.patch
0120-fix-bibtex-call.patch
+0125-printf_regression.patch