mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

Changelog: https://requests.readthedocs.io/en/latest/community/updates/#release-history (From OE-Core rev: 0f0a06ccef45792f65b823ecc0ef10525d94084f) Signed-off-by: Jiaying Song <jiaying.song.cn@windriver.com> Signed-off-by: Steve Sakoman <steve@sakoman.com>
36 lines
998 B
BlitzBasic
36 lines
998 B
BlitzBasic
SUMMARY = "Python HTTP for Humans."
|
|
HOMEPAGE = "https://requests.readthedocs.io"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658"
|
|
|
|
SRC_URI:append:class-nativesdk = " \
|
|
file://environment.d-python3-requests.sh \
|
|
"
|
|
|
|
SRC_URI[sha256sum] = "27d0316682c8a29834d3264820024b62a36942083d52caf2f14c0591336d3422"
|
|
|
|
inherit pypi python_setuptools_build_meta
|
|
|
|
do_install:append:class-nativesdk() {
|
|
mkdir -p ${D}${SDKPATHNATIVE}/environment-setup.d
|
|
install -m 644 ${WORKDIR}/environment.d-python3-requests.sh ${D}${SDKPATHNATIVE}/environment-setup.d/python3-requests.sh
|
|
}
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-certifi \
|
|
python3-email \
|
|
python3-json \
|
|
python3-netserver \
|
|
python3-pysocks \
|
|
python3-urllib3 \
|
|
python3-chardet \
|
|
python3-idna \
|
|
python3-compression \
|
|
"
|
|
|
|
FILES:${PN}:append:class-nativesdk = " ${SDKPATHNATIVE}/environment-setup.d/python3-requests.sh"
|
|
|
|
CVE_PRODUCT = "requests"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|