mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

With the upstream check migrated to the simple repo API, a number of the recipes required updates to: 1. Remove outdated UPSTREAM_CHECK_REGEX checks 2. Add recipe specific UPSTREAM_CHECK_PYPI_PACKAGE definitions for packages that use '_', CamelCase, or other deviations from PEP625 in the source archive Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
25 lines
961 B
BlitzBasic
25 lines
961 B
BlitzBasic
SUMMARY = "Interface definitions for Zope products"
|
|
LICENSE = "ZPL-2.1"
|
|
LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=e54fd776274c1b7423ec128974bd9d46"
|
|
|
|
PYPI_PACKAGE = "zope.interface"
|
|
UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}"
|
|
|
|
inherit pypi python_setuptools_build_meta
|
|
SRC_URI += "file://0001-Allow-using-setuptools-74.patch"
|
|
SRC_URI[sha256sum] = "4284d664ef0ff7b709836d4de7b13d80873dc5faeffc073abdb280058bfac5e3"
|
|
PACKAGES =. "${PN}-test "
|
|
|
|
RPROVIDES:${PN} += "zope-interfaces"
|
|
|
|
RDEPENDS:${PN}:class-target += "python3-datetime"
|
|
RDEPENDS:${PN}-test += "python3-unittest python3-doctest"
|
|
|
|
FILES:${PN}-dbg += "${PYTHON_SITEPACKAGES_DIR}/*.egg/*/*/.debug"
|
|
FILES:${PN}-dev += "${PYTHON_SITEPACKAGES_DIR}/zope/interface/*.c"
|
|
FILES:${PN}-doc += "${PYTHON_SITEPACKAGES_DIR}/zope/interface/*.txt"
|
|
FILES:${PN}-test += " \
|
|
${PYTHON_SITEPACKAGES_DIR}/zope/interface/tests \
|
|
${PYTHON_SITEPACKAGES_DIR}/zope/interface/common/tests \
|
|
"
|