From 681bce86e589072dcca1b79233c657a6f856a5a1 Mon Sep 17 00:00:00 2001 From: Derek Straka Date: Tue, 26 Dec 2017 10:33:55 -0500 Subject: 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 Signed-off-by: Armin Kuster --- .../0001-fix-version-float-check.patch | 26 ---------------------- 1 file changed, 26 deletions(-) delete mode 100644 meta-python/recipes-extended/python-pyparted/python3-pyparted/0001-fix-version-float-check.patch (limited to 'meta-python/recipes-extended/python-pyparted/python3-pyparted/0001-fix-version-float-check.patch') 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 @@ -check_mod_version breaks if module version is of x.y.z form -use a regex to help cast x.y.z version to a float - -Upstream-Status: Pending - -Index: git/setup.py -=================================================================== ---- git.orig/setup.py -+++ git/setup.py -@@ -25,6 +25,7 @@ import glob - import os - import platform - import sys -+import re - from distutils.ccompiler import new_compiler - from distutils.errors import CompileError - from distutils.errors import LinkError -@@ -51,6 +52,8 @@ def pkgconfig(*packages, **kwargs): - - def check_mod_version(module, version): - modversion = subprocess.check_output(["pkg-config", "--modversion", module]) -+ match = re.search(b'([0-9]+\.[0-9]+)', modversion) -+ modversion = match.group(0) - if not float(modversion) >= float(version): - sys.stderr.write("*** Minimum required %s version: %s, found: %s\n" % (module, version, modversion,)) - sys.exit(1) -- cgit v1.2.3-54-g00ecf