diff options
-rw-r--r-- | meta/classes/pypi.bbclass | 26 | ||||
-rw-r--r-- | meta/conf/documentation.conf | 3 |
2 files changed, 29 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+[\.\-_]*)+)" | ||
diff --git a/meta/conf/documentation.conf b/meta/conf/documentation.conf index a55e2836b5..081e726d4b 100644 --- a/meta/conf/documentation.conf +++ b/meta/conf/documentation.conf | |||
@@ -338,6 +338,9 @@ PRIORITY[doc] = "Indicates the importance of a package. The default value is 'o | |||
338 | PROVIDES[doc] = "A list of aliases that a recipe also provides. These aliases are useful for satisfying dependencies of other recipes during the build as specified by DEPENDS." | 338 | PROVIDES[doc] = "A list of aliases that a recipe also provides. These aliases are useful for satisfying dependencies of other recipes during the build as specified by DEPENDS." |
339 | PRSERV_HOST[doc] = "The network based PR service host and port." | 339 | PRSERV_HOST[doc] = "The network based PR service host and port." |
340 | PV[doc] = "The version of the recipe. The version is normally extracted from the recipe filename." | 340 | PV[doc] = "The version of the recipe. The version is normally extracted from the recipe filename." |
341 | PYPI_PACKAGE[doc] = "The python package name to use for fetching from pypi. Default is parsed from the recipe name, but can be overridden if upstream name is different than recipe name." | ||
342 | PYPI_PACKAGE_EXT[doc] = "The archive file extension to use for fetching from pypi. Default is tar.gz, but can be overridden if upstream uses a different compression scheme." | ||
343 | PYPI_SRC_URI[doc] = "The URI to use to fetch from pypi, default uses pythonhosted.org and is constructed from PYPI_PACKAGE, PYPI_PACKAGE_EXT and PV." | ||
341 | 344 | ||
342 | #Q | 345 | #Q |
343 | 346 | ||