From owner-svn-ports-all@freebsd.org Wed May 31 13:09:28 2017 Return-Path: Delivered-To: svn-ports-all@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 DE6ACB7983E; Wed, 31 May 2017 13:09:28 +0000 (UTC) (envelope-from sunpoet@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 BB78677EE9; Wed, 31 May 2017 13:09:28 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v4VD9RxY032927; Wed, 31 May 2017 13:09:27 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v4VD9RPD032924; Wed, 31 May 2017 13:09:27 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201705311309.v4VD9RPD032924@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 31 May 2017 13:09:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r442160 - in head/net: . py-python-swiftclient X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 May 2017 13:09:29 -0000 Author: sunpoet Date: Wed May 31 13:09:27 2017 New Revision: 442160 URL: https://svnweb.freebsd.org/changeset/ports/442160 Log: Add py-python-swiftclient 3.3.0 This is a python client for the Swift API. There's a Python API (the swiftclient module), and a command-line script (swift). Development takes place via the usual OpenStack processes as outlined in the OpenStack wiki. This code is based on the original client previously included with OpenStack's Swift The python-swiftclient is licensed under the Apache License like the rest of OpenStack. WWW: https://pypi.python.org/pypi/python-swiftclient WWW: https://github.com/openstack/python-swiftclient Added: head/net/py-python-swiftclient/ head/net/py-python-swiftclient/Makefile (contents, props changed) head/net/py-python-swiftclient/distinfo (contents, props changed) head/net/py-python-swiftclient/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Wed May 31 13:09:22 2017 (r442159) +++ head/net/Makefile Wed May 31 13:09:27 2017 (r442160) @@ -1038,6 +1038,7 @@ SUBDIR += py-python-novaclient SUBDIR += py-python-ntlm SUBDIR += py-python-openstackclient + SUBDIR += py-python-swiftclient SUBDIR += py-python-twitter SUBDIR += py-pyvmomi SUBDIR += py-pyzmq Added: head/net/py-python-swiftclient/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-python-swiftclient/Makefile Wed May 31 13:09:27 2017 (r442160) @@ -0,0 +1,30 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= python-swiftclient +PORTVERSION= 3.3.0 +CATEGORIES= net python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= OpenStack Object Storage API Client Library + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=0:devel/py-pbr +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=1.1:www/py-requests \ + ${PYTHON_PKGNAMEPREFIX}six>=1.5.2:devel/py-six + +NO_ARCH= yes +USE_PYTHON= autoplist distutils +USES= python + +.include + +.if ${PYTHON_REL} < 3000 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}futures>=3.0:devel/py-futures +.endif + +.include Added: head/net/py-python-swiftclient/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-python-swiftclient/distinfo Wed May 31 13:09:27 2017 (r442160) @@ -0,0 +1,3 @@ +TIMESTAMP = 1496163748 +SHA256 (python-swiftclient-3.3.0.tar.gz) = 8b4d38d73ceb2ef4984b39fb924bf9b265050ca2beb5c6bf29cb9f34ccd0bf7d +SIZE (python-swiftclient-3.3.0.tar.gz) = 166092 Added: head/net/py-python-swiftclient/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-python-swiftclient/pkg-descr Wed May 31 13:09:27 2017 (r442160) @@ -0,0 +1,12 @@ +This is a python client for the Swift API. There's a Python API (the swiftclient +module), and a command-line script (swift). + +Development takes place via the usual OpenStack processes as outlined in the +OpenStack wiki. + +This code is based on the original client previously included with OpenStack's +Swift The python-swiftclient is licensed under the Apache License like the rest +of OpenStack. + +WWW: https://pypi.python.org/pypi/python-swiftclient +WWW: https://github.com/openstack/python-swiftclient