Files
packages/lang/python/python-boto3/Makefile
T
Alexandru Ardelean ee6aae4e55 treewide: change maintainer from Daniel Danzberger to me
Change PKG_MAINTAINER from Daniel Danzberger <daniel@dd-wrt.com>
to Alexandru Ardelean <ardeleanalex@gmail.com> for:
- python-boto3
- python-botocore
- python-awscli
- python-colorama
- python-docutils
- python-jmespath
- python-psycopg2
- python-rsa
- python-s3transfer

These packages seem pretty neglected and the community has been
updating them periodically. Will pick these up to keep them
maintained.

Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
2026-04-16 21:48:36 +03:00

42 lines
1.0 KiB
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=python-boto3
PKG_VERSION:=1.42.88
PKG_RELEASE:=1
PYPI_NAME:=boto3
PKG_HASH:=2d22c70de5726918676a06f1a03acfb4d5d9ea92fc759354800b67b22aaeef19
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.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
URL:=https://github.com/boto/boto3
DEPENDS:= \
+python3-light \
+python3-decimal \
+python3-logging \
+python3-botocore \
+python3-jmespath \
+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))