mirror of
https://git.yoctoproject.org/poky
synced 2026-02-04 15:58:50 +01: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 (From OE-Core rev: efbb98977664cd5392ec00d97d0eaf5374a32573) Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
23 lines
597 B
BlitzBasic
23 lines
597 B
BlitzBasic
SUMMARY = "A Python SOCKS client module"
|
|
HOMEPAGE = "http://python-requests.org"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=1d457bcffb9661b45f799d4efee72f16"
|
|
|
|
SRC_URI[md5sum] = "89b1a6865c61bae67a32417517612ee6"
|
|
SRC_URI[sha256sum] = "3f8804571ebe159c380ac6de37643bb4685970655d3bba243530d6558b799aa0"
|
|
|
|
PYPI_PACKAGE = "PySocks"
|
|
UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
RDEPENDS:${PN}:class-target += "\
|
|
python3-email \
|
|
python3-io \
|
|
python3-logging \
|
|
python3-netclient \
|
|
python3-shell \
|
|
"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|