python-pyasn1-modules: update to 0.4.2
authorAlexandru Ardelean <redacted>
Sat, 4 Apr 2026 20:29:08 +0000 (23:29 +0300)
committerAlexandru Ardelean <redacted>
Thu, 9 Apr 2026 05:01:05 +0000 (08:01 +0300)
Update package to 0.4.2.

Changelog:
- 0.3.0: Updated ASN.1 module imports to use RFC-based names
- 0.4.0: Added support for newer RFC modules and improved compatibility
- 0.4.1: Minor bug fixes
- 0.4.2: Latest stable release

Add PYPI_SOURCE_NAME since PyPI switched sdist filename to use
underscores (pyasn1_modules-0.4.2.tar.gz).

Add test.sh to verify basic functionality.

Signed-off-by: Alexandru Ardelean <redacted>
lang/python/python-pyasn1-modules/Makefile
lang/python/python-pyasn1-modules/test.sh [new file with mode: 0644]

index 71a9b1f61b4e9681d85a4c266bae2ca23e132446..d65c3d7223d36fd3fad19d21fd1325838091c46e 100644 (file)
@@ -8,11 +8,12 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=python-pyasn1-modules
-PKG_VERSION:=0.2.8
-PKG_RELEASE:=2
+PKG_VERSION:=0.4.2
+PKG_RELEASE:=1
 
 PYPI_NAME:=pyasn1-modules
-PKG_HASH:=905f84c712230b2c592c19470d3ca8d552de726050d1d1716282a1f6146be65e
+PYPI_SOURCE_NAME:=pyasn1_modules
+PKG_HASH:=677091de870a80aae844b1ca6134f54652fa2c8c5a52aa396440ac3106e941e6
 
 PKG_LICENSE:=BSD-2-Clause
 PKG_LICENSE_FILES:=LICENSE.txt
diff --git a/lang/python/python-pyasn1-modules/test.sh b/lang/python/python-pyasn1-modules/test.sh
new file mode 100644 (file)
index 0000000..ee404d9
--- /dev/null
@@ -0,0 +1,20 @@
+#!/bin/sh
+[ "$1" = python3-pyasn1-modules ] || exit 0
+
+python3 - << 'EOF'
+import pyasn1_modules
+from pyasn1_modules import pem, rfc2314, rfc2459, rfc2986, rfc5280
+from pyasn1.codec.der.decoder import decode as der_decode
+from pyasn1.type import univ
+
+# Basic OID parsing (common in ASN.1 modules)
+oid = univ.ObjectIdentifier((1, 2, 840, 113549, 1, 1, 1))
+assert str(oid) == '1.2.840.113549.1.1.1'
+
+# Verify key RFC modules are importable and have expected attributes
+assert hasattr(rfc2459, 'Certificate')
+assert hasattr(rfc5280, 'Certificate')
+assert hasattr(rfc2986, 'CertificationRequest')
+
+print("pyasn1-modules OK")
+EOF
git clone https://git.99rst.org/PROJECT