blob: 26af9458a5034a9ff5fc519711dafeffcfd6fe91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
include $(TOPDIR)/rules.mk
PKG_NAME:=python-awscli
PKG_VERSION:=1.44.79
PKG_RELEASE:=1
PYPI_NAME:=awscli
PKG_HASH:=85ef9f6a75c71d950c39c341b9493ed0872885bbb19cce5a26859c1b8fcd1397
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))
|