X-Git-Url: http://git.openwrt.org/?a=blobdiff_plain;f=lang%2Fpython%2Fpython-pyasn1-modules%2FMakefile;h=68713e8777567d2f5a67524a97d61fec41843dad;hb=aa1149b105839f46e8ae9b2acea5cd6b18b08d3a;hp=bc4142b43073640794544c850e9cacd965c566fd;hpb=f243d7c2bc18d8b25938193b1eeaeb94ebf1cb8e;p=feed%2Fpackages.git diff --git a/lang/python/python-pyasn1-modules/Makefile b/lang/python/python-pyasn1-modules/Makefile index bc4142b430..68713e8777 100644 --- a/lang/python/python-pyasn1-modules/Makefile +++ b/lang/python/python-pyasn1-modules/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2015 OpenWrt.org +# Copyright (C) 2015-2017 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -7,30 +7,49 @@ include $(TOPDIR)/rules.mk -PKG_NAME:=pyasn1-modules -PKG_VERSION:=0.0.8 +PKG_NAME:=python-pyasn1-modules +PKG_VERSION:=0.1.4 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_SOURCE:=pyasn1-modules-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=https://pypi.python.org/packages/66/6b/f5582cbf3b920896ce1b97bde3894599b3dec31301ef79ae7ea0022f5577 +PKG_HASH:=b07c17bdb34d6f64aafea6269f2e8fb306a57473f0f38d9a6ca389d6ab30ac4a PKG_LICENSE:=BSD-2-Clause PKG_LICENSE_FILES:=LICENSE.txt -PKG_MAINTAINER:=Jeffery To +PKG_MAINTAINER:=Jeffery To , Alexandru Ardelean + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(BUILD_VARIANT)-pyasn1-modules-$(PKG_VERSION) include $(INCLUDE_DIR)/package.mk $(call include_mk, python-package.mk) +$(call include_mk, python3-package.mk) + +PKG_UNPACK:=$(HOST_TAR) -C $(PKG_BUILD_DIR) --strip-components=1 -xzf $(DL_DIR)/$(PKG_SOURCE) + +define Package/python-pyasn1-modules/Default + SECTION:=lang + CATEGORY:=Languages + SUBMENU:=Python + URL:=http://sourceforge.net/projects/pyasn1/ +endef 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 +$(call Package/python-pyasn1-modules/Default) + TITLE:=python-pyasn1-modules + VARIANT:=python + DEPENDS:= \ + +PACKAGE_python-pyasn1-modules:python-light \ + +PACKAGE_python-pyasn1-modules:python-pyasn1 +endef + +define Package/python3-pyasn1-modules +$(call Package/python-pyasn1-modules/Default) + TITLE:=python3-pyasn1-modules + VARIANT:=python3 + DEPENDS:= \ + +PACKAGE_python3-pyasn1-modules:python3-light \ + +PACKAGE_python3-pyasn1-modules:python3-pyasn1 endef define Package/python-pyasn1-modules/description @@ -38,9 +57,13 @@ 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)") +define Package/python3-pyasn1-modules/description +$(call Package/python-pyasn1-modules/description) +. +(Variant for Python3). endef $(eval $(call PyPackage,python-pyasn1-modules)) $(eval $(call BuildPackage,python-pyasn1-modules)) +$(eval $(call Py3Package,python3-pyasn1-modules)) +$(eval $(call BuildPackage,python3-pyasn1-modules))