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.

35 lines
850 B

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=python-zipp
  3. PKG_VERSION:=3.1.0
  4. PKG_RELEASE:=2
  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. 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
  20. endef
  21. HOST_PYTHON3_PACKAGE_BUILD_DEPENDS:="setuptools_scm[toml] >= 3.4.1"
  22. define Package/python3-zipp/description
  23. Backport of pathlib-compatible object wrapper for zip files
  24. endef
  25. $(eval $(call Py3Package,python3-zipp))
  26. $(eval $(call BuildPackage,python3-zipp))
  27. $(eval $(call BuildPackage,python3-zipp-src))