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.

65 lines
1.8 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 ../python-package.mk
  12. include ../python3-package.mk
  13. define Package/python-botocore/Default
  14. SUBMENU:=Python
  15. SECTION:=lang
  16. CATEGORY:=Languages
  17. TITLE:=botocore
  18. URL:=https://github.com/boto/botocore
  19. endef
  20. define Package/python-botocore
  21. $(call Package/python-botocore/Default)
  22. DEPENDS:=+PACKAGE_python-botocore:python \
  23. +PACKAGE_python-botocore:python-urllib3 \
  24. +PACKAGE_python-botocore:python-docutils \
  25. +PACKAGE_python-botocore:python-dateutil \
  26. +PACKAGE_python-botocore:python-jmespath \
  27. +PACKAGE_python-botocore:python-requests
  28. VARIANT:=python
  29. endef
  30. define Package/python3-botocore
  31. $(call Package/python-botocore/Default)
  32. DEPENDS:=+PACKAGE_python3-botocore:python3 \
  33. +PACKAGE_python3-botocore:python3-urllib3 \
  34. +PACKAGE_python3-botocore:python3-docutils \
  35. +PACKAGE_python3-botocore:python3-dateutil \
  36. +PACKAGE_python3-botocore:python3-jmespath \
  37. +PACKAGE_python3-botocore:python3-requests
  38. VARIANT:=python3
  39. endef
  40. define Package/python-botocore/description
  41. A low-level interface to a growing number of Amazon Web Services.
  42. The botocore package is the foundation for the AWS CLI as well as boto3.
  43. endef
  44. define Package/python3-botocore/description
  45. $(call Package/python-botocore/description)
  46. .
  47. (Variant for Python3)
  48. endef
  49. $(eval $(call PyPackage,python-botocore))
  50. $(eval $(call BuildPackage,python-botocore))
  51. $(eval $(call BuildPackage,python-botocore-src))
  52. $(eval $(call Py3Package,python3-botocore))
  53. $(eval $(call BuildPackage,python3-botocore))
  54. $(eval $(call BuildPackage,python3-botocore-src))