Date: Sat, 6 May 2017 15:23:41 +0000 (UTC) From: Martin Wilke <miwi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r440275 - in head/www: . py-aws-requests-auth Message-ID: <201705061523.v46FNfnp014119@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: miwi Date: Sat May 6 15:23:41 2017 New Revision: 440275 URL: https://svnweb.freebsd.org/changeset/ports/440275 Log: This package allows you to authenticate to AWS with Amazon's signature version 4 signing process with the python requests library. WWW: https://github.com/DavidMuller/aws-requests-auth Submitted by: James Elstone <james@elstone.net> Added: head/www/py-aws-requests-auth/ head/www/py-aws-requests-auth/Makefile (contents, props changed) head/www/py-aws-requests-auth/distinfo (contents, props changed) head/www/py-aws-requests-auth/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sat May 6 15:22:41 2017 (r440274) +++ head/www/Makefile Sat May 6 15:23:41 2017 (r440275) @@ -1503,6 +1503,7 @@ SUBDIR += py-amf SUBDIR += py-apachelog SUBDIR += py-autobahn + SUBDIR += py-aws-requests-auth SUBDIR += py-beaker SUBDIR += py-beautifulsoup SUBDIR += py-beautifulsoup32 Added: head/www/py-aws-requests-auth/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-aws-requests-auth/Makefile Sat May 6 15:23:41 2017 (r440275) @@ -0,0 +1,27 @@ +# Created by: James Elstone <james@elstone.net> +# $FreeBSD$ + +PORTNAME= aws-requests-auth +PORTVERSION= 0.3.0 +CATEGORIES= www python textproc +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= james@elstone.net +COMMENT= Authenticate to AWS with Amazon's signature v4 signing process + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=2.8.1:devel/py-pytest +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=0.14.0:www/py-requests + +USES= python:2.7 +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +do-test: + @(cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test) + +.include <bsd.port.mk> Added: head/www/py-aws-requests-auth/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-aws-requests-auth/distinfo Sat May 6 15:23:41 2017 (r440275) @@ -0,0 +1,3 @@ +TIMESTAMP = 1484647108 +SHA256 (aws-requests-auth-0.3.0.tar.gz) = fe170fe909f5326ac97b2e4f92326cceb48ce86a5788db251e05b61a000abe87 +SIZE (aws-requests-auth-0.3.0.tar.gz) = 6516 Added: head/www/py-aws-requests-auth/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py-aws-requests-auth/pkg-descr Sat May 6 15:23:41 2017 (r440275) @@ -0,0 +1,4 @@ +This package allows you to authenticate to AWS with Amazon's signature +version 4 signing process with the python requests library. + +WWW: https://github.com/DavidMuller/aws-requests-auth
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201705061523.v46FNfnp014119>