blob: 7b269f2940ffce14b62f925cfa8e68522c64db94 [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 Williams44b3caf2024-04-12 16:51:14 -05006SRC_URI[sha256sum] = "3a35ab2c4b5ef98e17dfdec8ab074046fbda76e281c5a706ccd82328cfc8f64c"
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}