diff options
| -rw-r--r-- | meta/classes-recipe/pypi.bbclass | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/classes-recipe/pypi.bbclass b/meta/classes-recipe/pypi.bbclass index f510bfed06..b8c18ccf39 100644 --- a/meta/classes-recipe/pypi.bbclass +++ b/meta/classes-recipe/pypi.bbclass | |||
| @@ -30,7 +30,9 @@ SECTION = "devel/python" | |||
| 30 | SRC_URI:prepend = "${PYPI_SRC_URI} " | 30 | SRC_URI:prepend = "${PYPI_SRC_URI} " |
| 31 | S = "${WORKDIR}/${PYPI_PACKAGE}-${PV}" | 31 | S = "${WORKDIR}/${PYPI_PACKAGE}-${PV}" |
| 32 | 32 | ||
| 33 | UPSTREAM_CHECK_URI ?= "https://pypi.org/project/${PYPI_PACKAGE}/" | 33 | # Replace any '_' characters in the pypi URI with '-'s to follow the PyPi website naming conventions |
| 34 | UPSTREAM_CHECK_REGEX ?= "/${PYPI_PACKAGE}/(?P<pver>(\d+[\.\-_]*)+)/" | 34 | UPSTREAM_CHECK_PYPI_PACKAGE ?= "${@d.getVar('PYPI_PACKAGE').replace('_', '-')}" |
| 35 | UPSTREAM_CHECK_URI ?= "https://pypi.org/project/${UPSTREAM_CHECK_PYPI_PACKAGE}/" | ||
| 36 | UPSTREAM_CHECK_REGEX ?= "/${UPSTREAM_CHECK_PYPI_PACKAGE}/(?P<pver>(\d+[\.\-_]*)+)/" | ||
| 35 | 37 | ||
| 36 | CVE_PRODUCT ?= "python:${PYPI_PACKAGE}" | 38 | CVE_PRODUCT ?= "python:${PYPI_PACKAGE}" |
