From owner-svn-ports-head@freebsd.org Thu Jan 14 00:06:57 2016 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 DD86EA81E95; Thu, 14 Jan 2016 00:06:56 +0000 (UTC) (envelope-from novel@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 BA5C11538; Thu, 14 Jan 2016 00:06:56 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0E06t2E060492; Thu, 14 Jan 2016 00:06:55 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0E06t8f060488; Thu, 14 Jan 2016 00:06:55 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201601140006.u0E06t8f060488@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Thu, 14 Jan 2016 00:06:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r406083 - in head/devel: . py-keystoneauth1 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.20 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: Thu, 14 Jan 2016 00:06:57 -0000 Author: novel Date: Thu Jan 14 00:06:55 2016 New Revision: 406083 URL: https://svnweb.freebsd.org/changeset/ports/406083 Log: New port: devel/py-keystoneauth1 This package contains tools for authenticating to an OpenStack-based cloud. These tools include: - Authentication plugins (password, token, and federation based) - Discovery mechanisms to determine API version support - A session that is used to maintain client settings across requests (based on the requests Python library) WWW: http://docs.openstack.org/developer/keystoneauth/api/keystoneauth1.html Differential Revision: D4906 Submitted by: Davide D'Amico Reviewed by: koobs Added: head/devel/py-keystoneauth1/ head/devel/py-keystoneauth1/Makefile (contents, props changed) head/devel/py-keystoneauth1/distinfo (contents, props changed) head/devel/py-keystoneauth1/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Jan 13 23:59:54 2016 (r406082) +++ head/devel/Makefile Thu Jan 14 00:06:55 2016 (r406083) @@ -4114,6 +4114,7 @@ SUBDIR += py-kaptan SUBDIR += py-kayako SUBDIR += py-kazoo + SUBDIR += py-keystoneauth1 SUBDIR += py-kid SUBDIR += py-kjbuckets SUBDIR += py-kqueue Added: head/devel/py-keystoneauth1/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-keystoneauth1/Makefile Thu Jan 14 00:06:55 2016 (r406083) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= keystoneauth1 +PORTVERSION= 2.1.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= dave@gufi.org +COMMENT= Authentication Library for OpenStack Identity + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=1.6:${PORTSDIR}/devel/py-pbr +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}argparse>0:${PORTSDIR}/devel/py-argparse \ + ${PYTHON_PKGNAMEPREFIX}iso8601>0:${PORTSDIR}/devel/py-iso8601 \ + ${PYTHON_PKGNAMEPREFIX}requests>0:${PORTSDIR}/www/py-requests \ + ${PYTHON_PKGNAMEPREFIX}six>0:${PORTSDIR}/devel/py-six \ + ${PYTHON_PKGNAMEPREFIX}stevedore>0:${PORTSDIR}/devel/py-stevedore + +NO_ARCH= yes + +USES= python +USE_PYTHON= autoplist distutils + +.include Added: head/devel/py-keystoneauth1/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-keystoneauth1/distinfo Thu Jan 14 00:06:55 2016 (r406083) @@ -0,0 +1,2 @@ +SHA256 (keystoneauth1-2.1.0.tar.gz) = 3990130416f85a252896fd36f895ab4d0b692b782801d7e4e522b862dbf84e69 +SIZE (keystoneauth1-2.1.0.tar.gz) = 144424 Added: head/devel/py-keystoneauth1/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-keystoneauth1/pkg-descr Thu Jan 14 00:06:55 2016 (r406083) @@ -0,0 +1,9 @@ +This package contains tools for authenticating to an OpenStack-based cloud. +These tools include: + +- Authentication plugins (password, token, and federation based) +- Discovery mechanisms to determine API version support +- A session that is used to maintain client settings across requests + (based on the requests Python library) + +WWW: http://docs.openstack.org/developer/keystoneauth/api/keystoneauth1.html