From owner-svn-ports-head@freebsd.org Sat May 6 15:23:43 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6ED39D61879; Sat, 6 May 2017 15:23:43 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 22AEB1E17; Sat, 6 May 2017 15:23:43 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v46FNgQc014123; Sat, 6 May 2017 15:23:42 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v46FNfnp014119; Sat, 6 May 2017 15:23:41 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201705061523.v46FNfnp014119@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Sat, 6 May 2017 15:23:41 +0000 (UTC) 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 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 May 2017 15:23:43 -0000 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 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 +# $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 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