mirror of
https://github.com/openwrt/packages.git
synced 2026-04-15 19:02:09 +00:00
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 <alex@shruggie.ro>
45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
#
|
|
# Copyright (C) 2015-2018 OpenWrt.org
|
|
#
|
|
# 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-modules
|
|
PKG_VERSION:=0.4.2
|
|
PKG_RELEASE:=1
|
|
|
|
PYPI_NAME:=pyasn1-modules
|
|
PYPI_SOURCE_NAME:=pyasn1_modules
|
|
PKG_HASH:=677091de870a80aae844b1ca6134f54652fa2c8c5a52aa396440ac3106e941e6
|
|
|
|
PKG_LICENSE:=BSD-2-Clause
|
|
PKG_LICENSE_FILES:=LICENSE.txt
|
|
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
|
|
|
|
include ../pypi.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include ../python3-package.mk
|
|
|
|
define Package/python3-pyasn1-modules
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
SUBMENU:=Python
|
|
TITLE:=Collection of ASN.1 modules
|
|
URL:=https://github.com/etingof/pyasn1-modules
|
|
DEPENDS:= \
|
|
+python3-light \
|
|
+python3-pyasn1
|
|
endef
|
|
|
|
define Package/python3-pyasn1-modules/description
|
|
This is a small but growing collection of ASN.1 data structures
|
|
expressed in Python terms using pyasn1 data model.
|
|
endef
|
|
|
|
$(eval $(call Py3Package,python3-pyasn1-modules))
|
|
$(eval $(call BuildPackage,python3-pyasn1-modules))
|
|
$(eval $(call BuildPackage,python3-pyasn1-modules-src))
|