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.

37 lines
997 B

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=boto3
  3. PKG_VERSION:=1.9.135
  4. PKG_RELEASE:=2
  5. PYPI_NAME:=$(PKG_NAME)
  6. PKG_HASH:=5e5805992e873e5687b5ef3b4c56c386ccb4df1c3364f8b8601d289e2f275be1
  7. PKG_MAINTAINER:=Daniel Danzberger <daniel@dd-wrt.com>
  8. PKG_LICENSE:=Apache-2.0
  9. PKG_LICENSE_FILES:=LICENSE
  10. include ../pypi.mk
  11. include $(INCLUDE_DIR)/package.mk
  12. include ../python3-package.mk
  13. define Package/python3-boto3
  14. SUBMENU:=Python
  15. SECTION:=lang
  16. CATEGORY:=Languages
  17. TITLE:=AWS SDK for Python (Boto3)
  18. URL:=https://aws.amazon.com/sdk-for-python/
  19. DEPENDS:=+python3 \
  20. +python3-jmespath \
  21. +python3-botocore \
  22. +python3-s3transfer
  23. endef
  24. define Package/python3-boto3/description
  25. Boto3 is the Amazon Web Services (AWS) Software Development Kit (SDK) for Python,
  26. which allows Python developers to write software that makes use of services like Amazon S3 and Amazon EC2.
  27. endef
  28. $(eval $(call Py3Package,python3-boto3))
  29. $(eval $(call BuildPackage,python3-boto3))
  30. $(eval $(call BuildPackage,python3-boto3-src))