[oe] [meta-python][PATCH 03/21] add pypi3 bbclass to make python3 recipe creation easier as well

Sven Ebenfeld sven.ebenfeld at gmail.com
Fri Jan 22 23:30:05 UTC 2016


Signed-off-by: Sven Ebenfeld <sven.ebenfeld at gmail.com>
---
 meta-python/classes/pypi-common.bbclass | 21 +++++++++++++++++++++
 meta-python/classes/pypi.bbclass        | 22 +---------------------
 meta-python/classes/pypi3.bbclass       |  1 +
 3 files changed, 23 insertions(+), 21 deletions(-)
 create mode 100644 meta-python/classes/pypi-common.bbclass
 create mode 100644 meta-python/classes/pypi3.bbclass

diff --git a/meta-python/classes/pypi-common.bbclass b/meta-python/classes/pypi-common.bbclass
new file mode 100644
index 0000000..365002e
--- /dev/null
+++ b/meta-python/classes/pypi-common.bbclass
@@ -0,0 +1,21 @@
+def pypi_package(d):
+    bpn = d.getVar('BPN', True)
+    if bpn.startswith('python-'):
+        return bpn[7:]
+    elif bpn.startswith('python3-'):
+        return bpn[8:]
+    return bpn
+
+PYPI_PACKAGE ?= "${@pypi_package(d)}"
+
+def pypi_src_uri(d):
+    package = d.getVar('PYPI_PACKAGE', True)
+    pv = d.getVar('PV', True)
+    return 'https://pypi.python.org/packages/source/%s/%s/%s-%s.tar.gz' % (package[0], package, package, pv)
+
+PYPI_SRC_URI ?= "${@pypi_src_uri(d)}"
+
+HOMEPAGE ?= "https://pypi.python.org/pypi/${PYPI_PACKAGE}/"
+SECTION = "devel/python"
+SRC_URI += "${PYPI_SRC_URI}"
+S = "${WORKDIR}/${PYPI_PACKAGE}-${PV}"
diff --git a/meta-python/classes/pypi.bbclass b/meta-python/classes/pypi.bbclass
index 41a70e2..8d8350a 100644
--- a/meta-python/classes/pypi.bbclass
+++ b/meta-python/classes/pypi.bbclass
@@ -1,21 +1 @@
-def pypi_package(d):
-    bpn = d.getVar('BPN', True)
-    if bpn.startswith('python-'):
-        return bpn[7:]
-    return bpn
-
-PYPI_PACKAGE ?= "${@pypi_package(d)}"
-
-def pypi_src_uri(d):
-    package = d.getVar('PYPI_PACKAGE', True)
-    pv = d.getVar('PV', True)
-    return 'https://pypi.python.org/packages/source/%s/%s/%s-%s.tar.gz' % (package[0], package, package, pv)
-
-PYPI_SRC_URI ?= "${@pypi_src_uri(d)}"
-
-HOMEPAGE ?= "https://pypi.python.org/pypi/${PYPI_PACKAGE}/"
-SECTION = "devel/python"
-SRC_URI += "${PYPI_SRC_URI}"
-S = "${WORKDIR}/${PYPI_PACKAGE}-${PV}"
-
-inherit setuptools
+inherit pypi-common setuptools
diff --git a/meta-python/classes/pypi3.bbclass b/meta-python/classes/pypi3.bbclass
new file mode 100644
index 0000000..e0f7bb3
--- /dev/null
+++ b/meta-python/classes/pypi3.bbclass
@@ -0,0 +1 @@
+inherit pypi-common setuptools3
-- 
1.9.1




More information about the Openembedded-devel mailing list