mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-20 08:27:15 +00:00
d7b8873cd7
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. You can find the latest, most up to date, documentation at Read the Docs, including a list of services that are supported. WWW: https://github.com/boto/boto3
37 lines
945 B
Makefile
37 lines
945 B
Makefile
# Created by: Kubilay Kocak <koobs@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= boto3
|
|
PORTVERSION= 1.4.0
|
|
CATEGORIES= www python devel
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= koobs@FreeBSD.org
|
|
COMMENT= AWS SDK for Python
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}botocore>=1.4.1:devel/py-botocore \
|
|
${PYTHON_PKGNAMEPREFIX}jmespath>=0.7.1:devel/py-jmespath \
|
|
${PYTHON_PKGNAMEPREFIX}s3transfer>=0.1.0:net/py-s3transfer
|
|
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>0:devel/py-nose \
|
|
${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock
|
|
|
|
# Actually -2.7,3.3-3.5
|
|
USES= python
|
|
USE_GITHUB= yes
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
GH_ACCOUNT= boto
|
|
|
|
NO_ARCH= yes
|
|
|
|
# setup.py test runs integration tests which fail
|
|
# https://github.com/boto/s3transfer/issues/41
|
|
# Note: this is an AWS python package wide issue
|
|
do-test:
|
|
@cd ${WRKSRC} && ${PYTHON_CMD} -m nose -v tests/unit tests/functional
|
|
|
|
.include <bsd.port.mk>
|