|
#
|
|
# Copyright (C) 2017 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-asn1crypto
|
|
PKG_VERSION:=0.23.0
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=asn1crypto-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://pypi.python.org/packages/31/53/8bca924b30cb79d6d70dbab6a99e8731d1e4dd3b090b7f3d8412a8d8ffbc
|
|
PKG_HASH:=0874981329cfebb366d6584c3d16e913f2a0eb026c9463efcc4aaf42a9d94d70
|
|
|
|
PKG_LICENSE:=MIT
|
|
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(BUILD_VARIANT)-asn1crypto-$(PKG_VERSION)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include ../python-package.mk
|
|
include ../python3-package.mk
|
|
|
|
PKG_UNPACK:=$(HOST_TAR) -C $(PKG_BUILD_DIR) --strip-components=1 -xzf $(DL_DIR)/$(PKG_SOURCE)
|
|
|
|
define Package/python-asn1crypto/Default
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
SUBMENU:=Python
|
|
URL:=https://github.com/wbond/asn1crypto
|
|
endef
|
|
|
|
define Package/python-asn1crypto
|
|
$(call Package/python-asn1crypto/Default)
|
|
TITLE:=python-asn1crypto
|
|
DEPENDS:=+PACKAGE_python-asn1crypto:python-light
|
|
VARIANT:=python
|
|
endef
|
|
|
|
define Package/python3-asn1crypto
|
|
$(call Package/python-asn1crypto/Default)
|
|
TITLE:=python3-asn1crypto
|
|
DEPENDS:=+PACKAGE_python3-asn1crypto:python3-light
|
|
VARIANT:=python3
|
|
endef
|
|
|
|
define Package/python-asn1crypto/description
|
|
Fast ASN.1 parser and serializer with definitions for
|
|
private keys, public keys, certificates, CRL, OCSP,
|
|
CMS, PKCS#3, PKCS#7, PKCS#8, PKCS#12, PKCS#5, X.509 and TSP
|
|
endef
|
|
|
|
define Package/python3-asn1crypto/description
|
|
$(call Package/python-asn1crypto/description)
|
|
.
|
|
(Variant for Python3)
|
|
endef
|
|
|
|
$(eval $(call PyPackage,python-asn1crypto))
|
|
$(eval $(call BuildPackage,python-asn1crypto))
|
|
$(eval $(call Py3Package,python3-asn1crypto))
|
|
$(eval $(call BuildPackage,python3-asn1crypto))
|