diff options
author | Alejandro Hernandez <alejandro.hernandez@linux.intel.com> | 2016-06-08 05:56:14 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-12 23:47:16 +0100 |
commit | 313a5f5502e06e2ebcb213f81a9494997e470b63 (patch) | |
tree | 7a2c1ed490c6a91a37228547ccdca5bb9801c0f9 /meta/recipes-devtools/python | |
parent | 07c5fd7a0a2a71ceccb003ce68ff5b58242bcbb4 (diff) | |
download | poky-313a5f5502e06e2ebcb213f81a9494997e470b63.tar.gz |
python-scons: Upgrade from 2.4.1 to 2.5.0
Upgrades both python-scons and python-scons-native to 2.5.0,
also fixes a runtime dependency issue when calling scons
(From OE-Core rev: 3782164546aca84011940811c411e09601fbe399)
Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python')
-rw-r--r-- | meta/recipes-devtools/python/python-scons-native_2.5.0.bb (renamed from meta/recipes-devtools/python/python-scons-native_2.4.1.bb) | 0 | ||||
-rw-r--r-- | meta/recipes-devtools/python/python-scons_2.4.1.bb | 22 | ||||
-rw-r--r-- | meta/recipes-devtools/python/python-scons_2.5.0.bb | 24 |
3 files changed, 24 insertions, 22 deletions
diff --git a/meta/recipes-devtools/python/python-scons-native_2.4.1.bb b/meta/recipes-devtools/python/python-scons-native_2.5.0.bb index dae89ab5d2..dae89ab5d2 100644 --- a/meta/recipes-devtools/python/python-scons-native_2.4.1.bb +++ b/meta/recipes-devtools/python/python-scons-native_2.5.0.bb | |||
diff --git a/meta/recipes-devtools/python/python-scons_2.4.1.bb b/meta/recipes-devtools/python/python-scons_2.4.1.bb deleted file mode 100644 index 096cf5c960..0000000000 --- a/meta/recipes-devtools/python/python-scons_2.4.1.bb +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | SUMMARY = "Software Construction tool (make/autotools replacement)" | ||
2 | SECTION = "devel/python" | ||
3 | LICENSE = "MIT" | ||
4 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=23bc1530c55e9f0d1b709056bcea237d" | ||
5 | SRCNAME = "scons" | ||
6 | |||
7 | SRC_URI = "${SOURCEFORGE_MIRROR}/scons/scons-${PV}.tar.gz" | ||
8 | |||
9 | SRC_URI[md5sum] = "9a0ddf33d9839f04380e0fae87cc4b40" | ||
10 | SRC_URI[sha256sum] = "8fc4f42928c69bcbb33e1be94b646f2c700b659693fabc778c192d4d22f753a7" | ||
11 | |||
12 | UPSTREAM_CHECK_URI = "http://sourceforge.net/projects/scons/files/scons/" | ||
13 | UPSTREAM_CHECK_REGEX = "/scons/(?P<pver>(\d+[\.\-_]*)+)/" | ||
14 | |||
15 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
16 | |||
17 | inherit distutils | ||
18 | |||
19 | RDEPENDS_${PN} = "\ | ||
20 | python-fcntl \ | ||
21 | python-io \ | ||
22 | " | ||
diff --git a/meta/recipes-devtools/python/python-scons_2.5.0.bb b/meta/recipes-devtools/python/python-scons_2.5.0.bb new file mode 100644 index 0000000000..c0a1cd4948 --- /dev/null +++ b/meta/recipes-devtools/python/python-scons_2.5.0.bb | |||
@@ -0,0 +1,24 @@ | |||
1 | SUMMARY = "Software Construction tool (make/autotools replacement)" | ||
2 | SECTION = "devel/python" | ||
3 | LICENSE = "MIT" | ||
4 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3a885dff6d14e4cd876d9008a09a42de" | ||
5 | SRCNAME = "scons" | ||
6 | |||
7 | SRC_URI = "https://files.pythonhosted.org/packages/source/s/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" | ||
8 | |||
9 | SRC_URI[md5sum] = "bda5530a70a41a7831d83c8b191c021e" | ||
10 | SRC_URI[sha256sum] = "01f1b3d6023516a8e1b5e77799e5a82a23b32953b1102d339059ffeca8600493" | ||
11 | |||
12 | UPSTREAM_CHECK_URI = "https://pypi.python.org/pypi/SCons/" | ||
13 | UPSTREAM_CHECK_REGEX = "/scons/(?P<pver>(\d+[\.\-_]*)+)/" | ||
14 | |||
15 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
16 | |||
17 | inherit setuptools | ||
18 | |||
19 | RDEPENDS_${PN} = "\ | ||
20 | python-fcntl \ | ||
21 | python-io \ | ||
22 | python-json \ | ||
23 | python-subprocess \ | ||
24 | " | ||