1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-17 12:53:54 +02:00
openwrt-packages/lang/python/python-boto3/Makefile
Jeffery To 2210c4a60d python-packages: Clean up Makefiles
This removes:

* Python 3 variants (VARIANT:=python3)

* "for Python3" from package titles

* Package selection condition from package dependencies, e.g.
  +PACKAGE_python3-six:python3-light replaced with +python3-light

* "Default" package information sections, e.g.
  Package/python-six/Default removed and package details merged into
  Package/python3-six

* "(Variant for Python3)" from package descriptions

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
2020-04-22 16:36:55 +08:00

38 lines
997 B
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=boto3
PKG_VERSION:=1.9.135
PKG_RELEASE:=2
PYPI_NAME:=$(PKG_NAME)
PKG_HASH:=5e5805992e873e5687b5ef3b4c56c386ccb4df1c3364f8b8601d289e2f275be1
PKG_MAINTAINER:=Daniel Danzberger <daniel@dd-wrt.com>
PKG_LICENSE:=Apache-2.0
PKG_LICENSE_FILES:=LICENSE
include ../pypi.mk
include $(INCLUDE_DIR)/package.mk
include ../python3-package.mk
define Package/python3-boto3
SUBMENU:=Python
SECTION:=lang
CATEGORY:=Languages
TITLE:=AWS SDK for Python (Boto3)
URL:=https://aws.amazon.com/sdk-for-python/
DEPENDS:=+python3 \
+python3-jmespath \
+python3-botocore \
+python3-s3transfer
endef
define Package/python3-boto3/description
Boto3 is the Amazon Web Services (AWS) Software Development Kit (SDK) for Python,
which allows Python developers to write software that makes use of services like Amazon S3 and Amazon EC2.
endef
$(eval $(call Py3Package,python3-boto3))
$(eval $(call BuildPackage,python3-boto3))
$(eval $(call BuildPackage,python3-boto3-src))