]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
python-gitdb: use pypi.bbclass timo/pypi-v2
authorTim Orling <timothy.t.orling@linux.intel.com>
Mon, 27 Nov 2017 15:54:17 +0000 (07:54 -0800)
committerTim Orling <timothy.t.orling@linux.intel.com>
Mon, 27 Nov 2017 15:54:17 +0000 (07:54 -0800)
* Simplify python3-gitdb recipe using pypi.bblass
* Avoid duplication by using PYTHON_PN in .inc
* Sort RDEPENDS alphabetically

Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
meta/recipes-devtools/python/python-gitdb.inc
meta/recipes-devtools/python/python-smmap.inc
meta/recipes-devtools/python/python3-gitdb_0.6.4.bb
meta/recipes-devtools/python/python3-smmap_0.9.0.bb

index 08193fbf2588289b1cb2c6910ce2ea1c9ca8502d..6287cc8d30364617c933dcc061f33d1807cbaf94 100644 (file)
@@ -4,13 +4,21 @@ SECTION = "devel/python"
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=59e5ecb13339a936eedf83282eaf4528"
 
-SRC_URI = "https://files.pythonhosted.org/packages/source/g/gitdb/gitdb-${PV}.tar.gz"
-
 SRC_URI[md5sum] = "44e4366b8bdfd306b075c3a52c96ae1a"
 SRC_URI[sha256sum] = "a3ebbc27be035a2e874ed904df516e35f4a29a778a764385de09de9e0f139658"
 
-UPSTREAM_CHECK_URI = "https://pypi.python.org/pypi/gitdb/"
+inherit pypi
 
-S = "${WORKDIR}/gitdb-${PV}"
+DEPENDS = "${PYTHON_PN}-async ${PYTHON_PN}-smmap"
 
+RDEPENDS_${PN} += " \
+  ${PYTHON_PN}-async \
+  ${PYTHON_PN}-compression \
+  ${PYTHON_PN}-crypt \
+  ${PYTHON_PN}-io \
+  ${PYTHON_PN}-mmap \
+  ${PYTHON_PN}-shell \
+  ${PYTHON_PN}-smmap \
+  "
+  
 BBCLASSEXTEND = "nativesdk"
index d67e6b5412461f1d1fd0286e856df21895698c6f..4117c947947ee9f8b75b6672bd66b12ec760d36a 100644 (file)
@@ -7,13 +7,14 @@ SECTION = "devel/python"
 LICENSE = "BSD"
 LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=e910b35b0ef4e1f665b9a75d6afb7709"
 
-SRC_URI = "https://files.pythonhosted.org/packages/source/s/smmap/smmap-${PV}.tar.gz"
 SRC_URI[md5sum] = "d7932d5ace206bf4ae15198cf36fb6ab"
 SRC_URI[sha256sum] = "0e2b62b497bd5f0afebc002eda4d90df9d209c30ef257e8673c90a6b5c119d62"
 
-UPSTREAM_CHECK_URI = "https://pypi.python.org/pypi/smmap/"
-UPSTREAM_CHECK_REGEX = "/smmap/(?P<pver>(\d+[\.\-_]*)+)"
+inherit pypi
 
-S = "${WORKDIR}/smmap-${PV}"
+RDEPENDS_${PN} += " \
+  ${PYTHON_PN}-codecs \
+  ${PYTHON_PN}-mmap \
+  "
 
 BBCLASSEXTEND = "nativesdk"
index a209c52f9ee4916f665c2aa91e70e1adf86dc147..412cf8c02c9cac020ff98382381f4994e4f0a864 100644 (file)
@@ -1,7 +1,3 @@
 require python-gitdb.inc
 
-DEPENDS = "python3-async python3-smmap"
-
 inherit distutils3
-
-RDEPENDS_${PN} += "python3-smmap python3-async python3-mmap python3-io python3-shell python3-crypt python3-compression"
index 1df74c172c4e72861dc77a098531dd03d8e68e1c..9c25ca180960c59676555e1b34a81fe86445b866 100644 (file)
@@ -1,5 +1,3 @@
 require python-smmap.inc
 
 inherit setuptools3
-
-RDEPENDS_${PN} += "python3-codecs python3-mmap"