mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 16:28:43 +01:00
Changelog: ========== - Added support for Python 3.13. - Cleaned Python 2-related code. - Removed bdist_wheel universal flag from setup.cfg. (From OE-Core rev: 7c3fef01e8e0d117dba82e57612f104e89c60ed9) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
32 lines
739 B
BlitzBasic
32 lines
739 B
BlitzBasic
SUMMARY = "Python library implementing ASN.1 types."
|
|
HOMEPAGE = "http://pyasn1.sourceforge.net/"
|
|
LICENSE = "BSD-2-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=190f79253908c986e6cacf380c3a5f6d"
|
|
|
|
SRC_URI[sha256sum] = "6f580d2bdd84365380830acf45550f2511469f673cb4a5ae3857a3170128b034"
|
|
|
|
inherit pypi python_setuptools_build_meta ptest
|
|
|
|
RDEPENDS:${PN}:class-target += " \
|
|
python3-codecs \
|
|
python3-logging \
|
|
python3-math \
|
|
python3-shell \
|
|
"
|
|
|
|
SRC_URI += " \
|
|
file://run-ptest \
|
|
"
|
|
|
|
RDEPENDS:${PN}-ptest += " \
|
|
python3-pytest \
|
|
python3-unittest-automake-output \
|
|
"
|
|
|
|
do_install_ptest() {
|
|
install -d ${D}${PTEST_PATH}/tests
|
|
cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
|
|
}
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|