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.

34 lines
807 B

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=s3transfer
  3. PKG_VERSION:=0.2.0
  4. PKG_RELEASE:=2
  5. PYPI_NAME:=$(PKG_NAME)
  6. PKG_HASH:=f23d5cb7d862b104401d9021fc82e5fa0e0cf57b7660a1331425aab0c691d021
  7. PKG_MAINTAINER:=Daniel Danzberger <daniel@dd-wrt.com>
  8. PKG_LICENSE:=MIT
  9. include ../pypi.mk
  10. include $(INCLUDE_DIR)/package.mk
  11. include ../python3-package.mk
  12. define Package/python3-s3transfer
  13. SECTION:=lang
  14. CATEGORY:=Languages
  15. SUBMENU:=Python
  16. TITLE:=s3transfer
  17. URL:=https://github.com/boto/s3transfer
  18. DEPENDS:= \
  19. +python3 \
  20. +python3-botocore
  21. endef
  22. define Package/python3-s3transfer/description
  23. S3transfer is a Python library for managing Amazon S3 transfers.
  24. endef
  25. $(eval $(call Py3Package,python3-s3transfer))
  26. $(eval $(call BuildPackage,python3-s3transfer))
  27. $(eval $(call BuildPackage,python3-s3transfer-src))