From 3e113ebecbe3f20d2221497f6bdde99295974843 Mon Sep 17 00:00:00 2001 From: Jeffery To Date: Sat, 28 Nov 2015 03:07:25 +0800 Subject: [PATCH] python-pyasn1-modules: new package From the README: This is a small but growing collection of ASN.1 data structures expressed in Python terms using pyasn1 data model. Signed-off-by: Jeffery To --- lang/python-pyasn1-modules/Makefile | 46 +++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 lang/python-pyasn1-modules/Makefile diff --git a/lang/python-pyasn1-modules/Makefile b/lang/python-pyasn1-modules/Makefile new file mode 100644 index 0000000000..bc4142b430 --- /dev/null +++ b/lang/python-pyasn1-modules/Makefile @@ -0,0 +1,46 @@ +# +# Copyright (C) 2015 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:=pyasn1-modules +PKG_VERSION:=0.0.8 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=https://pypi.python.org/packages/source/p/pyasn1-modules +PKG_MD5SUM:=178129bc7fbf07215c25230c5f053f81 + +PKG_BUILD_DEPENDS:=python python-setuptools + +PKG_LICENSE:=BSD-2-Clause +PKG_LICENSE_FILES:=LICENSE.txt +PKG_MAINTAINER:=Jeffery To + +include $(INCLUDE_DIR)/package.mk +$(call include_mk, python-package.mk) + +define Package/python-pyasn1-modules + SECTION:=lang + CATEGORY:=Languages + SUBMENU:=Python + TITLE:=python-pyasn1-modules + URL:=http://sourceforge.net/projects/pyasn1/ + DEPENDS:=+python-light +python-pyasn1 +endef + +define Package/python-pyasn1-modules/description +This is a small but growing collection of ASN.1 data structures +expressed in Python terms using pyasn1 data model. +endef + +define Build/Compile + $(call Build/Compile/PyMod,,install --prefix="/usr" --root="$(PKG_INSTALL_DIR)") +endef + +$(eval $(call PyPackage,python-pyasn1-modules)) +$(eval $(call BuildPackage,python-pyasn1-modules))