2015-11-12 13:45:55 +08:00
|
|
|
#
|
2018-01-10 23:03:58 +08:00
|
|
|
# Copyright (C) 2015-2018 OpenWrt.org
|
2015-11-12 13:45:55 +08:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2017-07-07 01:49:59 +08:00
|
|
|
PKG_NAME:=python-pyasn1
|
2019-11-18 04:04:35 +08:00
|
|
|
PKG_VERSION:=0.4.8
|
2020-04-22 01:27:50 +08:00
|
|
|
PKG_RELEASE:=2
|
2015-11-12 13:45:55 +08:00
|
|
|
|
2019-10-21 03:03:12 +08:00
|
|
|
PYPI_NAME:=pyasn1
|
2019-11-18 04:04:35 +08:00
|
|
|
PKG_HASH:=aef77c9fb94a3ac588e87841208bdec464471d9871bd5050a287cc9a475cd0ba
|
2015-11-13 16:26:56 +08:00
|
|
|
|
2015-11-12 13:45:55 +08:00
|
|
|
PKG_LICENSE:=BSD-2-Clause
|
|
|
|
PKG_LICENSE_FILES:=LICENSE.txt
|
2017-07-07 01:49:59 +08:00
|
|
|
PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>, Alexandru Ardelean <ardeleanalex@gmail.com>
|
|
|
|
|
2019-10-21 03:03:12 +08:00
|
|
|
include ../pypi.mk
|
2015-11-12 13:45:55 +08:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2018-01-10 15:56:52 +08:00
|
|
|
include ../python3-package.mk
|
2017-07-07 01:49:59 +08:00
|
|
|
|
2020-04-22 01:27:50 +08:00
|
|
|
define Package/python3-pyasn1
|
2017-07-07 01:49:59 +08:00
|
|
|
SECTION:=lang
|
|
|
|
CATEGORY:=Languages
|
|
|
|
SUBMENU:=Python
|
2019-02-20 15:19:26 +08:00
|
|
|
TITLE:=ASN.1 library for Python
|
2018-06-25 02:32:26 +08:00
|
|
|
URL:=https://github.com/etingof/pyasn1
|
2020-04-22 01:27:50 +08:00
|
|
|
DEPENDS:=+python3-light
|
2015-11-12 13:45:55 +08:00
|
|
|
endef
|
|
|
|
|
2020-04-01 22:21:16 +08:00
|
|
|
define Package/python3-pyasn1/description
|
2015-11-12 13:45:55 +08:00
|
|
|
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
|
|
|
|
|
2017-07-07 01:49:59 +08:00
|
|
|
$(eval $(call Py3Package,python3-pyasn1))
|
|
|
|
$(eval $(call BuildPackage,python3-pyasn1))
|
2018-01-14 22:38:54 +08:00
|
|
|
$(eval $(call BuildPackage,python3-pyasn1-src))
|