python-pyasn1.inc 730 B

12345678910111213141516171819202122232425262728293031
  1. SUMMARY = "Python library implementing ASN.1 types."
  2. HOMEPAGE = "http://pyasn1.sourceforge.net/"
  3. LICENSE = "BSD-2-Clause"
  4. LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=a14482d15c2249de3b6f0e8a47e021fd"
  5. SRC_URI[md5sum] = "dffae4ff9f997a83324b3f33fe62be54"
  6. SRC_URI[sha256sum] = "aef77c9fb94a3ac588e87841208bdec464471d9871bd5050a287cc9a475cd0ba"
  7. RDEPENDS_${PN}_class-target += " \
  8. ${PYTHON_PN}-codecs \
  9. ${PYTHON_PN}-logging \
  10. ${PYTHON_PN}-math \
  11. ${PYTHON_PN}-shell \
  12. "
  13. BBCLASSEXTEND = "native nativesdk"
  14. inherit ptest
  15. SRC_URI += " \
  16. file://run-ptest \
  17. "
  18. RDEPENDS_${PN}-ptest += " \
  19. ${PYTHON_PN}-pytest \
  20. "
  21. do_install_ptest() {
  22. install -d ${D}${PTEST_PATH}/tests
  23. cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
  24. }