You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
909 B

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=python-zipp
  3. PKG_VERSION:=0.6.0
  4. PKG_RELEASE:=2
  5. PYPI_NAME:=zipp
  6. PKG_HASH:=3718b1cbcd963c7d4c5511a8240812904164b7f381b647143a89d3b98f9bcd8e
  7. PKG_MAINTAINER:=Paul Spooren <mail@aparcar.org>, Jan Pavlinec <jan.pavlinec@nic.cz>
  8. PKG_LICENSE:=MIT
  9. PKG_LICENSE_FILES:=LICENSE
  10. include ../pypi.mk
  11. include $(INCLUDE_DIR)/package.mk
  12. include ../python3-package.mk
  13. define Package/python3-zipp
  14. SECTION:=lang
  15. CATEGORY:=Languages
  16. SUBMENU:=Python
  17. TITLE:=Zipfile object wrapper
  18. URL:=https://github.com/jaraco/zipp
  19. DEPENDS:=+python3-light +python3-more-itertools
  20. VARIANT:=python3
  21. endef
  22. HOST_PYTHON3_PACKAGE_BUILD_DEPENDS:=setuptools-scm
  23. define Package/python3-zipp/description
  24. Backport of pathlib-compatible object wrapper for zip files
  25. endef
  26. $(eval $(call Py3Package,python3-zipp))
  27. $(eval $(call BuildPackage,python3-zipp))
  28. $(eval $(call BuildPackage,python3-zipp-src))