summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-devtools/python/python-scons-native_3.0.0.bb (renamed from meta/recipes-devtools/python/python-scons-native_2.5.1.bb)0
-rw-r--r--meta/recipes-devtools/python/python-scons/SConscript-Support-python2-print-statements.patch38
-rw-r--r--meta/recipes-devtools/python/python-scons_3.0.0.bb (renamed from meta/recipes-devtools/python/python-scons_2.5.1.bb)12
3 files changed, 46 insertions, 4 deletions
diff --git a/meta/recipes-devtools/python/python-scons-native_2.5.1.bb b/meta/recipes-devtools/python/python-scons-native_3.0.0.bb
index dae89ab5d2..dae89ab5d2 100644
--- a/meta/recipes-devtools/python/python-scons-native_2.5.1.bb
+++ b/meta/recipes-devtools/python/python-scons-native_3.0.0.bb
diff --git a/meta/recipes-devtools/python/python-scons/SConscript-Support-python2-print-statements.patch b/meta/recipes-devtools/python/python-scons/SConscript-Support-python2-print-statements.patch
new file mode 100644
index 0000000000..b1a790219e
--- /dev/null
+++ b/meta/recipes-devtools/python/python-scons/SConscript-Support-python2-print-statements.patch
@@ -0,0 +1,38 @@
1From 885aabdb313685405737112dcb7d7774eee6d879 Mon Sep 17 00:00:00 2001
2From: Thomas Berg <merlin66b@gmail.com>
3Date: Thu, 19 Oct 2017 14:02:21 -0500
4Subject: [PATCH] SConscript: Support python2 print statements
5
6This fixes a regression introduced in scons-3.0.0, where
7SConscripts containing python 2 print statements would cause
8syntax errors even when executing scons with python 2.7.
9
10This ensures backward compatibility, allowing users to build
11legacy code with scons-3.0.0 without having to patch it.
12
13Taken from
14https://github.com/SConsProject/scons/commit/2e0de3c55f22b3eaa7767b69740b898f3d2f46bf
15
16Upstream-Status: Accepted
17
18Signed-off-by: Jose Lamego <jose.a.lamego@linux.intel.com>
19---
20 engine/SCons/Script/SConscript.py | 2 --
21 1 file changed, 2 deletions(-)
22
23diff --git a/engine/SCons/Script/SConscript.py b/engine/SCons/Script/SConscript.py
24index bc05540..332d1fa 100644
25--- a/engine/SCons/Script/SConscript.py
26+++ b/engine/SCons/Script/SConscript.py
27@@ -5,8 +5,6 @@ files.
28
29 """
30
31-from __future__ import print_function
32-
33 #
34 # Copyright (c) 2001 - 2017 The SCons Foundation
35 #
36--
372.7.4
38
diff --git a/meta/recipes-devtools/python/python-scons_2.5.1.bb b/meta/recipes-devtools/python/python-scons_3.0.0.bb
index 3f43856199..33bfb45e2e 100644
--- a/meta/recipes-devtools/python/python-scons_2.5.1.bb
+++ b/meta/recipes-devtools/python/python-scons_3.0.0.bb
@@ -1,13 +1,14 @@
1SUMMARY = "Software Construction tool (make/autotools replacement)" 1SUMMARY = "Software Construction tool (make/autotools replacement)"
2SECTION = "devel/python" 2SECTION = "devel/python"
3LICENSE = "MIT" 3LICENSE = "MIT"
4LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3a885dff6d14e4cd876d9008a09a42de" 4LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=46ddf66004e5be5566367cb525a66fc6"
5SRCNAME = "scons" 5SRCNAME = "scons"
6 6
7SRC_URI = "https://files.pythonhosted.org/packages/source/s/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" 7SRC_URI = "https://files.pythonhosted.org/packages/source/s/${SRCNAME}/${SRCNAME}-${PV}.tar.gz \
8 file://SConscript-Support-python2-print-statements.patch"
8 9
9SRC_URI[md5sum] = "3eac81e5e8206304a9b4683c57665aa4" 10SRC_URI[md5sum] = "7ca558edaaa1942fe38f3105ca2400fb"
10SRC_URI[sha256sum] = "c8de85fc02ed1a687b1f2ac791eaa0c1707b4382a204f17d782b5b111b9fdf07" 11SRC_URI[sha256sum] = "aa5afb33c2bbd33c311e47e912412195739e9ffb2e933534a31f85fba8f3470e"
11 12
12UPSTREAM_CHECK_URI = "https://pypi.python.org/pypi/SCons/" 13UPSTREAM_CHECK_URI = "https://pypi.python.org/pypi/SCons/"
13 14
@@ -20,4 +21,7 @@ RDEPENDS_${PN} = "\
20 python-io \ 21 python-io \
21 python-json \ 22 python-json \
22 python-subprocess \ 23 python-subprocess \
24 python-shell \
25 python-pprint \
26 python-importlib \
23 " 27 "