mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
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>
This commit is contained in:
parent
4d6e129b27
commit
0f568c5441
21
meta-python/classes/pypi.bbclass
Normal file
21
meta-python/classes/pypi.bbclass
Normal file
|
|
@ -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
|
||||
Loading…
Reference in New Issue
Block a user