mirror of
https://github.com/openwrt/packages.git
synced 2026-06-17 21:20:21 +04:00
ba593bc0f3
Refresh sha256 from PyPI sdist. Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
41 lines
967 B
Makefile
41 lines
967 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=python-awscli
|
|
PKG_VERSION:=1.45.19
|
|
PKG_RELEASE:=1
|
|
|
|
PYPI_NAME:=awscli
|
|
PKG_HASH:=97f989238fe10042975229c9534a825a8a623842e3934a09cf24b48713db83b9
|
|
|
|
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
|
|
PKG_LICENSE:=Apache-2.0
|
|
PKG_LICENSE_FILES:=LICENSE.txt
|
|
|
|
include ../pypi.mk
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include ../python3-package.mk
|
|
|
|
define Package/python3-awscli
|
|
SUBMENU:=Python
|
|
SECTION:=lang
|
|
CATEGORY:=Languages
|
|
TITLE:=Universal Command Line Environment for AWS
|
|
URL:=https://github.com/aws/aws-cli
|
|
DEPENDS:=+python3 \
|
|
+python3-botocore \
|
|
+python3-colorama \
|
|
+python3-docutils \
|
|
+python3-rsa \
|
|
+python3-s3transfer \
|
|
+python3-yaml
|
|
endef
|
|
|
|
define Package/python3-awscli/description
|
|
This package provides a unified command line interface to Amazon Web
|
|
Services.
|
|
endef
|
|
|
|
$(eval $(call Py3Package,python3-awscli))
|
|
$(eval $(call BuildPackage,python3-awscli))
|
|
$(eval $(call BuildPackage,python3-awscli-src))
|