diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2024-09-19 11:32:01 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2024-09-18 21:03:15 -0700 |
| commit | 6f6f9432566fdab6a2159fe7507fb89e7a8836ae (patch) | |
| tree | cabf6cb6ceede8ff9451dde16d03887ed22bc16b /meta-python/recipes-devtools/python/python3-pyasn1-modules_0.4.1.bb | |
| parent | ee4f237082cd3951c34d2809d4de1004ee7923c8 (diff) | |
| download | meta-openembedded-6f6f9432566fdab6a2159fe7507fb89e7a8836ae.tar.gz | |
python3-pyasn1-modules: upgrade 0.4.0 -> 0.4.1
Changelog:
Added support for Python 3.13
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-pyasn1-modules_0.4.1.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-pyasn1-modules_0.4.1.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pyasn1-modules_0.4.1.bb b/meta-python/recipes-devtools/python/python3-pyasn1-modules_0.4.1.bb new file mode 100644 index 0000000000..e8c0f960aa --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-pyasn1-modules_0.4.1.bb | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | SUMMARY = "A collection of ASN.1-based protocols modules." | ||
| 2 | DESCRIPTION = "A collection of ASN.1 modules expressed in form of pyasn1\ | ||
| 3 | classes. Includes protocols PDUs definition (SNMP, LDAP etc.) and various\ | ||
| 4 | data structures (X.509, PKCS etc.)." | ||
| 5 | HOMEPAGE = "https://github.com/etingof/pyasn1-modules" | ||
| 6 | LICENSE = "BSD-2-Clause" | ||
| 7 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=190f79253908c986e6cacf380c3a5f6d" | ||
| 8 | |||
| 9 | SRC_URI[sha256sum] = "c28e2dbf9c06ad61c71a075c7e0f9fd0f1b0bb2d2ad4377f240d33ac2ab60a7c" | ||
| 10 | |||
| 11 | PYPI_PACKAGE = "pyasn1_modules" | ||
| 12 | |||
| 13 | inherit pypi ptest python_setuptools_build_meta | ||
| 14 | |||
| 15 | RDEPENDS:${PN} = "python3-pyasn1" | ||
| 16 | |||
| 17 | BBCLASSEXTEND = "native nativesdk" | ||
| 18 | |||
| 19 | SRC_URI += " \ | ||
| 20 | file://run-ptest \ | ||
| 21 | " | ||
| 22 | |||
| 23 | RDEPENDS:${PN}-ptest += " \ | ||
| 24 | python3-pytest \ | ||
| 25 | python3-unittest-automake-output \ | ||
| 26 | " | ||
| 27 | |||
| 28 | do_install_ptest() { | ||
| 29 | install -d ${D}${PTEST_PATH}/tests | ||
| 30 | cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ | ||
| 31 | } | ||
