From f0a79ca148c7413c51b10bae743a056ac2acc07e Mon Sep 17 00:00:00 2001 From: Jan Pavlinec Date: Fri, 1 Nov 2019 18:00:51 +0100 Subject: [PATCH] python-zipp: add new package Signed-off-by: Jan Pavlinec --- lang/python/python-zipp/Makefile | 36 ++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 lang/python/python-zipp/Makefile diff --git a/lang/python/python-zipp/Makefile b/lang/python/python-zipp/Makefile new file mode 100644 index 000000000..94db3d124 --- /dev/null +++ b/lang/python/python-zipp/Makefile @@ -0,0 +1,36 @@ +include $(TOPDIR)/rules.mk + +PKG_NAME:=python-zipp +PKG_VERSION:=0.6.0 +PKG_RELEASE:=1 + +PYPI_NAME:=zipp +PKG_HASH:=3718b1cbcd963c7d4c5511a8240812904164b7f381b647143a89d3b98f9bcd8e + +PKG_MAINTAINER:=Paul Spooren , Jan Pavlinec +PKG_LICENSE:=MIT +PKG_LICENSE_FILES:=LICENSE + +include ../pypi.mk +include $(INCLUDE_DIR)/package.mk +include ../python3-package.mk + +define Package/python3-zipp + SECTION:=lang + CATEGORY:=Languages + SUBMENU:=Python + TITLE:=Zipfile object wrapper + URL:=https://github.com/jaraco/zipp + DEPENDS:=+python3-light +python-more-itertools + VARIANT:=python3 +endef + +HOST_PYTHON3_PACKAGE_BUILD_DEPENDS:=setuptools-scm + +define Package/python3-zipp/description + Backport of pathlib-compatible object wrapper for zip files +endef + +$(eval $(call Py3Package,python3-zipp)) +$(eval $(call BuildPackage,python3-zipp)) +$(eval $(call BuildPackage,python3-zipp-src))