diff options
| author | Tim Orling <timothy.t.orling@linux.intel.com> | 2017-11-17 22:23:42 -0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-12-13 14:00:51 +0000 |
| commit | 7d950b99bdb0f3c91eb060d31711243a7d3366fc (patch) | |
| tree | c7f2a1cf5d9e03dc9b1ca085882ed35bee376a70 /meta/classes | |
| parent | 6c664a9713dd3f5a1934fad943851802a4186e06 (diff) | |
| download | poky-7d950b99bdb0f3c91eb060d31711243a7d3366fc.tar.gz | |
pypi.bbclass: bring in from meta-python
The pypi.bbclass has usefullness in many meta layers, not
just meta-python. Add it to oe-core for the benefit of
everyone.
Documentation strings for PYPI_PACKAGE, PYPI_PACKAGE_EXT and
PYPI_SRC_URI added to meta/conf/documentation.conf
(From OE-Core rev: c350812523017f113f63e0b863fd526b4d6331b9)
Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
| -rw-r--r-- | meta/classes/pypi.bbclass | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/meta/classes/pypi.bbclass b/meta/classes/pypi.bbclass new file mode 100644 index 0000000000..e5d7ab3ce1 --- /dev/null +++ b/meta/classes/pypi.bbclass | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | def pypi_package(d): | ||
| 2 | bpn = d.getVar('BPN') | ||
| 3 | if bpn.startswith('python-'): | ||
| 4 | return bpn[7:] | ||
| 5 | elif bpn.startswith('python3-'): | ||
| 6 | return bpn[8:] | ||
| 7 | return bpn | ||
| 8 | |||
| 9 | PYPI_PACKAGE ?= "${@pypi_package(d)}" | ||
| 10 | PYPI_PACKAGE_EXT ?= "tar.gz" | ||
| 11 | |||
| 12 | def pypi_src_uri(d): | ||
| 13 | package = d.getVar('PYPI_PACKAGE') | ||
| 14 | package_ext = d.getVar('PYPI_PACKAGE_EXT') | ||
| 15 | pv = d.getVar('PV') | ||
| 16 | return 'https://files.pythonhosted.org/packages/source/%s/%s/%s-%s.%s' % (package[0], package, package, pv, package_ext) | ||
| 17 | |||
| 18 | PYPI_SRC_URI ?= "${@pypi_src_uri(d)}" | ||
| 19 | |||
| 20 | HOMEPAGE ?= "https://pypi.python.org/pypi/${PYPI_PACKAGE}/" | ||
| 21 | SECTION = "devel/python" | ||
| 22 | SRC_URI += "${PYPI_SRC_URI}" | ||
| 23 | S = "${WORKDIR}/${PYPI_PACKAGE}-${PV}" | ||
| 24 | |||
| 25 | UPSTREAM_CHECK_URI ?= "https://pypi.python.org/pypi/${PYPI_PACKAGE}/" | ||
| 26 | UPSTREAM_CHECK_REGEX ?= "/${PYPI_PACKAGE}/(?P<pver>(\d+[\.\-_]*)+)" | ||
