mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
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>
This commit is contained in:
parent
83b097cc3b
commit
681bce86e5
|
|
@ -11,11 +11,13 @@ LIC_FILES_CHKSUM = "\
|
|||
DEPENDS += "parted"
|
||||
|
||||
# upstream only publishes releases in github archives which are discouraged
|
||||
SRCREV = "69c4a478e43d3eff6ae3a0116fa38da06776d5f5"
|
||||
SRC_URI = "git://github.com/rhinstaller/pyparted.git;protocol=https \
|
||||
file://0001-fix-version-float-check.patch \
|
||||
"
|
||||
SRCREV = "1fdb15120f35f5da1dc7ec116522f0c796a8376a"
|
||||
SRC_URI = "git://github.com/rhinstaller/pyparted.git;protocol=https"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
RDEPENDS_${PN} += "parted (>= 2.3)"
|
||||
RDEPENDS_${PN}_class-target += " \
|
||||
parted (>= 2.3) \
|
||||
${PYTHON_PN}-subprocess \
|
||||
"
|
||||
RDEPENDS_${PN}_class-native = ""
|
||||
|
|
|
|||
|
|
@ -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('([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)
|
||||
|
|
@ -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)
|
||||
Loading…
Reference in New Issue
Block a user