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.

45 lines
1.2 KiB

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=botocore
  3. PKG_VERSION:=1.12.66
  4. PKG_RELEASE:=1
  5. PYPI_NAME:=$(PKG_NAME)
  6. PKG_HASH:=25c39ecc71356287cf79d66981ec77deca374e28043b19b2f818d48aa34272a1
  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/python-botocore/Default
  13. SUBMENU:=Python
  14. SECTION:=lang
  15. CATEGORY:=Languages
  16. TITLE:=botocore
  17. URL:=https://github.com/boto/botocore
  18. endef
  19. define Package/python3-botocore
  20. $(call Package/python-botocore/Default)
  21. DEPENDS:=+PACKAGE_python3-botocore:python3 \
  22. +PACKAGE_python3-botocore:python3-urllib3 \
  23. +PACKAGE_python3-botocore:python3-docutils \
  24. +PACKAGE_python3-botocore:python3-dateutil \
  25. +PACKAGE_python3-botocore:python3-jmespath \
  26. +PACKAGE_python3-botocore:python3-requests
  27. VARIANT:=python3
  28. endef
  29. define Package/python3-botocore/description
  30. A low-level interface to a growing number of Amazon Web Services.
  31. The botocore package is the foundation for the AWS CLI as well as boto3.
  32. .
  33. (Variant for Python3)
  34. endef
  35. $(eval $(call Py3Package,python3-botocore))
  36. $(eval $(call BuildPackage,python3-botocore))
  37. $(eval $(call BuildPackage,python3-botocore-src))