blob: 530ff1c7c3600407b5f918d3ec5962f7c7f42c07 [file] [log] [blame]
Patrick Williamsddad1a12017-02-23 20:36:32 -06001SUMMARY = "Python library implementing ASN.1 types."
2HOMEPAGE = "http://pyasn1.sourceforge.net/"
3LICENSE = "BSD-2-Clause"
Patrick Williams520786c2023-06-25 16:20:36 -05004LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=190f79253908c986e6cacf380c3a5f6d"
Patrick Williamsddad1a12017-02-23 20:36:32 -06005
Patrick Williamsda295312023-12-05 16:48:56 -06006SRC_URI[sha256sum] = "6d391a96e59b23130a5cfa74d6fd7f388dbbe26cc8f1edf39fdddf08d9d6676c"
Patrick Williamsddad1a12017-02-23 20:36:32 -06007
Patrick Williams213cb262021-08-07 19:21:33 -05008RDEPENDS:${PN}:class-target += " \
Patrick Williams73bd93f2024-02-20 08:07:48 -06009 python3-codecs \
10 python3-logging \
11 python3-math \
12 python3-shell \
Patrick Williamsddad1a12017-02-23 20:36:32 -060013"
14
15BBCLASSEXTEND = "native nativesdk"
Andrew Geissler82c905d2020-04-13 13:39:40 -050016
17inherit ptest
18
19SRC_URI += " \
Patrick Williams520786c2023-06-25 16:20:36 -050020 file://run-ptest \
21 "
Andrew Geissler82c905d2020-04-13 13:39:40 -050022
Patrick Williams213cb262021-08-07 19:21:33 -050023RDEPENDS:${PN}-ptest += " \
Patrick Williams73bd93f2024-02-20 08:07:48 -060024 python3-pytest \
25 python3-unittest-automake-output \
Andrew Geissler82c905d2020-04-13 13:39:40 -050026"
27
28do_install_ptest() {
29 install -d ${D}${PTEST_PATH}/tests
30 cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
31}