2019-04-04 11:57:46 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=s3transfer
|
|
|
|
PKG_VERSION:=0.2.0
|
2020-04-21 17:27:50 +00:00
|
|
|
PKG_RELEASE:=2
|
2019-04-04 11:57:46 +00:00
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
PYPI_NAME:=$(PKG_NAME)
|
2019-04-04 11:57:46 +00:00
|
|
|
PKG_HASH:=f23d5cb7d862b104401d9021fc82e5fa0e0cf57b7660a1331425aab0c691d021
|
|
|
|
|
|
|
|
PKG_MAINTAINER:=Daniel Danzberger <daniel@dd-wrt.com>
|
|
|
|
PKG_LICENSE:=MIT
|
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
include ../pypi.mk
|
2019-04-04 11:57:46 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
include ../python3-package.mk
|
|
|
|
|
2020-04-21 17:27:50 +00:00
|
|
|
define Package/python3-s3transfer
|
2019-04-04 11:57:46 +00:00
|
|
|
SECTION:=lang
|
|
|
|
CATEGORY:=Languages
|
|
|
|
SUBMENU:=Python
|
|
|
|
TITLE:=s3transfer
|
|
|
|
URL:=https://github.com/boto/s3transfer
|
2019-05-20 16:53:39 +00:00
|
|
|
DEPENDS:= \
|
2020-04-21 17:27:50 +00:00
|
|
|
+python3 \
|
|
|
|
+python3-botocore
|
2019-04-04 11:57:46 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/python3-s3transfer/description
|
2020-04-01 14:21:16 +00:00
|
|
|
S3transfer is a Python library for managing Amazon S3 transfers.
|
2019-04-04 11:57:46 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call Py3Package,python3-s3transfer))
|
|
|
|
$(eval $(call BuildPackage,python3-s3transfer))
|
|
|
|
$(eval $(call BuildPackage,python3-s3transfer-src))
|