forked from Lainports/freebsd-ports
- while here: - remove use of SUBDIR - sort USES_PYTHON - explicitly define supported python versions - remove blank lines from pkg-descr PR: 197960 [1] Submitted by: ports@christianserving.org Approved by: maintainer timeout (3 weeks)
29 lines
862 B
Makefile
29 lines
862 B
Makefile
# Created by: Alexey V. Degtyarev <alexey@renatasystems.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= awscli
|
|
PORTVERSION= 1.7.11
|
|
CATEGORIES= devel
|
|
MASTER_SITES= CHEESESHOP
|
|
|
|
MAINTAINER= alexey@renatasystems.org
|
|
COMMENT= Universal Command Line Interface for Amazon Web Services
|
|
|
|
LICENSE= APACHE20
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}bcdoc>=0.12.0:${PORTSDIR}/devel/py-bcdoc \
|
|
${PYTHON_PKGNAMEPREFIX}botocore>=0.84.0:${PORTSDIR}/devel/py-botocore \
|
|
${PYTHON_PKGNAMEPREFIX}colorama>=0.2.5:${PORTSDIR}/devel/py-colorama \
|
|
${PYTHON_PKGNAMEPREFIX}docutils>=0.10:${PORTSDIR}/textproc/py-docutils \
|
|
${PYTHON_PKGNAMEPREFIX}rsa>=3.1.2:${PORTSDIR}/security/py-rsa
|
|
|
|
USES= python:2.6+
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PYTHON_REL} < 270
|
|
RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}argparse>0:${PORTSDIR}/devel/py-argparse
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|