aboutsummaryrefslogtreecommitdiffstats
path: root/meta-python/classes
diff options
context:
space:
mode:
authorAndreas Oberritter <obi@opendreambox.org>2015-03-26 19:43:27 +0100
committerMartin Jansa <Martin.Jansa@gmail.com>2015-04-13 12:55:48 +0200
commit0f568c5441b89c379c4afb845af43c0bbd8e6f63 (patch)
tree1772f434db943a1da78c73485d7329bba6e58b65 /meta-python/classes
parent4d6e129b27e37a684d06913e5e21580661c91ea6 (diff)
downloadmeta-openembedded-0f568c5441b89c379c4afb845af43c0bbd8e6f63.tar.gz
pypi.bbclass: new class to ease writing pypi recipes
Signed-off-by: Andreas Oberritter <obi@opendreambox.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-python/classes')
-rw-r--r--meta-python/classes/pypi.bbclass21
1 files changed, 21 insertions, 0 deletions
diff --git a/meta-python/classes/pypi.bbclass b/meta-python/classes/pypi.bbclass
new file mode 100644
index 0000000000..41a70e25c3
--- /dev/null
+++ b/meta-python/classes/pypi.bbclass
@@ -0,0 +1,21 @@
+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