diff options
author | Derek Straka <derek@asterius.io> | 2017-12-26 10:33:55 -0500 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2017-12-30 12:33:18 -0800 |
commit | 681bce86e589072dcca1b79233c657a6f856a5a1 (patch) | |
tree | 65761ddcf81599727893fbf5d5e1124696ea46b7 /meta-python/recipes-extended/python-pyparted | |
parent | 83b097cc3b9ed4a45cb8b1fb3b3ef8a09f32ea48 (diff) | |
download | meta-openembedded-681bce86e589072dcca1b79233c657a6f856a5a1.tar.gz |
python-parted: update to version 3.11.1
Update github hash for the release
Add correct RDEPENDS for the minimal python installs
Remove a patch no longer required
Signed-off-by: Derek Straka <derek@asterius.io>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-python/recipes-extended/python-pyparted')
-rw-r--r-- | meta-python/recipes-extended/python-pyparted/python-pyparted.inc | 12 | ||||
-rw-r--r-- | meta-python/recipes-extended/python-pyparted/python-pyparted/0001-fix-version-float-check.patch | 26 | ||||
-rw-r--r-- | meta-python/recipes-extended/python-pyparted/python-pyparted_3.11.1.bb (renamed from meta-python/recipes-extended/python-pyparted/python-pyparted_3.10.7.bb) | 0 | ||||
-rw-r--r-- | meta-python/recipes-extended/python-pyparted/python3-pyparted/0001-fix-version-float-check.patch | 26 | ||||
-rw-r--r-- | meta-python/recipes-extended/python-pyparted/python3-pyparted_3.11.1.bb (renamed from meta-python/recipes-extended/python-pyparted/python3-pyparted_3.10.7.bb) | 0 |
5 files changed, 7 insertions, 57 deletions
diff --git a/meta-python/recipes-extended/python-pyparted/python-pyparted.inc b/meta-python/recipes-extended/python-pyparted/python-pyparted.inc index 65f8ca14db..2192179be5 100644 --- a/meta-python/recipes-extended/python-pyparted/python-pyparted.inc +++ b/meta-python/recipes-extended/python-pyparted/python-pyparted.inc | |||
@@ -11,11 +11,13 @@ LIC_FILES_CHKSUM = "\ | |||
11 | DEPENDS += "parted" | 11 | DEPENDS += "parted" |
12 | 12 | ||
13 | # upstream only publishes releases in github archives which are discouraged | 13 | # upstream only publishes releases in github archives which are discouraged |
14 | SRCREV = "69c4a478e43d3eff6ae3a0116fa38da06776d5f5" | 14 | SRCREV = "1fdb15120f35f5da1dc7ec116522f0c796a8376a" |
15 | SRC_URI = "git://github.com/rhinstaller/pyparted.git;protocol=https \ | 15 | SRC_URI = "git://github.com/rhinstaller/pyparted.git;protocol=https" |
16 | file://0001-fix-version-float-check.patch \ | 16 | |
17 | " | ||
18 | S = "${WORKDIR}/git" | 17 | S = "${WORKDIR}/git" |
19 | 18 | ||
20 | RDEPENDS_${PN} += "parted (>= 2.3)" | 19 | RDEPENDS_${PN}_class-target += " \ |
20 | parted (>= 2.3) \ | ||
21 | ${PYTHON_PN}-subprocess \ | ||
22 | " | ||
21 | RDEPENDS_${PN}_class-native = "" | 23 | RDEPENDS_${PN}_class-native = "" |
diff --git a/meta-python/recipes-extended/python-pyparted/python-pyparted/0001-fix-version-float-check.patch b/meta-python/recipes-extended/python-pyparted/python-pyparted/0001-fix-version-float-check.patch deleted file mode 100644 index db3ab9fc3e..0000000000 --- a/meta-python/recipes-extended/python-pyparted/python-pyparted/0001-fix-version-float-check.patch +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
1 | check_mod_version breaks if module version is of x.y.z form | ||
2 | use a regex to help cast x.y.z version to a float | ||
3 | |||
4 | Upstream-Status: Pending | ||
5 | |||
6 | Index: git/setup.py | ||
7 | =================================================================== | ||
8 | --- git.orig/setup.py | ||
9 | +++ git/setup.py | ||
10 | @@ -25,6 +25,7 @@ import glob | ||
11 | import os | ||
12 | import platform | ||
13 | import sys | ||
14 | +import re | ||
15 | from distutils.ccompiler import new_compiler | ||
16 | from distutils.errors import CompileError | ||
17 | from distutils.errors import LinkError | ||
18 | @@ -51,6 +52,8 @@ def pkgconfig(*packages, **kwargs): | ||
19 | |||
20 | def check_mod_version(module, version): | ||
21 | modversion = subprocess.check_output(["pkg-config", "--modversion", module]) | ||
22 | + match = re.search('([0-9]+\.[0-9]+)', modversion) | ||
23 | + modversion = match.group(0) | ||
24 | if not float(modversion) >= float(version): | ||
25 | sys.stderr.write("*** Minimum required %s version: %s, found: %s\n" % (module, version, modversion,)) | ||
26 | sys.exit(1) | ||
diff --git a/meta-python/recipes-extended/python-pyparted/python-pyparted_3.10.7.bb b/meta-python/recipes-extended/python-pyparted/python-pyparted_3.11.1.bb index 81d61c62a3..81d61c62a3 100644 --- a/meta-python/recipes-extended/python-pyparted/python-pyparted_3.10.7.bb +++ b/meta-python/recipes-extended/python-pyparted/python-pyparted_3.11.1.bb | |||
diff --git a/meta-python/recipes-extended/python-pyparted/python3-pyparted/0001-fix-version-float-check.patch b/meta-python/recipes-extended/python-pyparted/python3-pyparted/0001-fix-version-float-check.patch deleted file mode 100644 index 14fb0bb3e5..0000000000 --- a/meta-python/recipes-extended/python-pyparted/python3-pyparted/0001-fix-version-float-check.patch +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
1 | check_mod_version breaks if module version is of x.y.z form | ||
2 | use a regex to help cast x.y.z version to a float | ||
3 | |||
4 | Upstream-Status: Pending | ||
5 | |||
6 | Index: git/setup.py | ||
7 | =================================================================== | ||
8 | --- git.orig/setup.py | ||
9 | +++ git/setup.py | ||
10 | @@ -25,6 +25,7 @@ import glob | ||
11 | import os | ||
12 | import platform | ||
13 | import sys | ||
14 | +import re | ||
15 | from distutils.ccompiler import new_compiler | ||
16 | from distutils.errors import CompileError | ||
17 | from distutils.errors import LinkError | ||
18 | @@ -51,6 +52,8 @@ def pkgconfig(*packages, **kwargs): | ||
19 | |||
20 | def check_mod_version(module, version): | ||
21 | modversion = subprocess.check_output(["pkg-config", "--modversion", module]) | ||
22 | + match = re.search(b'([0-9]+\.[0-9]+)', modversion) | ||
23 | + modversion = match.group(0) | ||
24 | if not float(modversion) >= float(version): | ||
25 | sys.stderr.write("*** Minimum required %s version: %s, found: %s\n" % (module, version, modversion,)) | ||
26 | sys.exit(1) | ||
diff --git a/meta-python/recipes-extended/python-pyparted/python3-pyparted_3.10.7.bb b/meta-python/recipes-extended/python-pyparted/python3-pyparted_3.11.1.bb index 4d6f97b59e..4d6f97b59e 100644 --- a/meta-python/recipes-extended/python-pyparted/python3-pyparted_3.10.7.bb +++ b/meta-python/recipes-extended/python-pyparted/python3-pyparted_3.11.1.bb | |||