Files
packages/lang/python/python-pyasn1/Makefile
Alexandru Ardelean c1a2cb4bf9 python-pyasn1: bump to 0.6.2
Changelog since 0.5.1:
- v0.6.0: Drop Python 2.7 and Python 3.6/3.7 support; add support for
  RELATIVE-OID construct
- v0.6.1: Add Python 3.13 compatibility; remove legacy Python 2 code
- v0.6.2: Fix continuation octet limits in OID/RELATIVE-OID decoder
  (CVE-2026-23490); add Python 3.14 support; switch to pyproject.toml

Full changelog:
https://github.com/pyasn1/pyasn1/releases

Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
2026-03-21 07:46:27 +02:00

46 lines
1.2 KiB
Makefile

#
# Copyright (C) 2015, 2018-2020, 2023 Jeffery To
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
PKG_NAME:=python-pyasn1
PKG_VERSION:=0.6.2
PKG_RELEASE:=1
PYPI_NAME:=pyasn1
PKG_HASH:=9b59a2b25ba7e4f8197db7686c09fb33e658b98339fadb826e9512629017833b
PKG_LICENSE:=BSD-2-Clause
PKG_LICENSE_FILES:=LICENSE.rst
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
PKG_BUILD_DEPENDS:=python-setuptools/host
include ../pypi.mk
include $(INCLUDE_DIR)/package.mk
include ../python3-package.mk
define Package/python3-pyasn1
SECTION:=lang
CATEGORY:=Languages
SUBMENU:=Python
TITLE:=ASN.1 types and DER/BER/CER codecs (X.208)
URL:=https://github.com/pyasn1/pyasn1
DEPENDS:=+python3-light +python3-logging
endef
define Package/python3-pyasn1/description
This is an implementation of ASN.1 types and codecs in Python programming
language. It has been first written to support particular protocol (SNMP)
but then generalized to be suitable for a wide range of protocols
based on ASN.1 specification.
endef
$(eval $(call Py3Package,python3-pyasn1))
$(eval $(call BuildPackage,python3-pyasn1))
$(eval $(call BuildPackage,python3-pyasn1-src))