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
872 B

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=python-zipp
  3. PKG_VERSION:=3.1.0
  4. PKG_RELEASE:=3
  5. PYPI_NAME:=zipp
  6. PKG_HASH:=c599e4d75c98f6798c509911d08a22e6c021d074469042177c8c86fb92eefd96
  7. PKG_MAINTAINER:=Jan Pavlinec <jan.pavlinec@nic.cz>
  8. PKG_LICENSE:=MIT
  9. PKG_LICENSE_FILES:=LICENSE
  10. PKG_BUILD_PARALLEL:=0
  11. HOST_PYTHON3_PACKAGE_BUILD_DEPENDS:="setuptools_scm[toml] >= 3.4.1"
  12. include ../pypi.mk
  13. include $(INCLUDE_DIR)/package.mk
  14. include ../python3-package.mk
  15. define Package/python3-zipp
  16. SECTION:=lang
  17. CATEGORY:=Languages
  18. SUBMENU:=Python
  19. TITLE:=Zipfile object wrapper
  20. URL:=https://github.com/jaraco/zipp
  21. DEPENDS:=+python3-light
  22. endef
  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))