From owner-svn-ports-head@freebsd.org Wed Oct 12 10:25:15 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 E607BC0D770; Wed, 12 Oct 2016 10:25:15 +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 BDB6A17A; Wed, 12 Oct 2016 10:25:15 +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 u9CAPEdC034040; Wed, 12 Oct 2016 10:25:14 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u9CAPExf034036; Wed, 12 Oct 2016 10:25:14 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201610121025.u9CAPExf034036@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Wed, 12 Oct 2016 10:25:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r423855 - in head/net: . py-neutronclient 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: Wed, 12 Oct 2016 10:25:16 -0000 Author: novel Date: Wed Oct 12 10:25:14 2016 New Revision: 423855 URL: https://svnweb.freebsd.org/changeset/ports/423855 Log: Add py-neutronclient 6.0.0, client for the OpenStack Neutron API. PR: 213337 Submitted by: Alexander Nusov Added: head/net/py-neutronclient/ head/net/py-neutronclient/Makefile (contents, props changed) head/net/py-neutronclient/distinfo (contents, props changed) head/net/py-neutronclient/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Wed Oct 12 10:24:37 2016 (r423854) +++ head/net/Makefile Wed Oct 12 10:25:14 2016 (r423855) @@ -990,6 +990,7 @@ SUBDIR += py-netifaces SUBDIR += py-netlib SUBDIR += py-netstring + SUBDIR += py-neutronclient SUBDIR += py-nnpy SUBDIR += py-novaclient SUBDIR += py-ntplib Added: head/net/py-neutronclient/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-neutronclient/Makefile Wed Oct 12 10:25:14 2016 (r423855) @@ -0,0 +1,37 @@ +# Created by: Alexander Nusov +# $FreeBSD$ + +PORTNAME= neutronclient +PORTVERSION= 6.0.0 +CATEGORIES= net python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= python-${PORTNAME}-${PORTVERSION} + +MAINTAINER= alexander.nusov@nfvexpress.com +COMMENT= Client for the OpenStack Neutron API + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pbr>=1.6:devel/py-pbr +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}keystoneauth1>=2.10.0:devel/py-keystoneauth1 \ + ${PYTHON_PKGNAMEPREFIX}debtcollector>=1.2.0:devel/py-debtcollector \ + ${PYTHON_PKGNAMEPREFIX}osc-lib>=1.0.2:devel/py-osc-lib \ + ${PYTHON_PKGNAMEPREFIX}cliff>=0:devel/py-cliff \ + ${PYTHON_PKGNAMEPREFIX}iso8601>=0.1.11:devel/py-iso8601 \ + ${PYTHON_PKGNAMEPREFIX}oslo.i18n>=2.1.0:devel/py-oslo.i18n \ + ${PYTHON_PKGNAMEPREFIX}oslo.serialization>=1.10.0:devel/py-oslo.serialization \ + ${PYTHON_PKGNAMEPREFIX}oslo.utils>=3.16.0:devel/py-oslo.utils \ + ${PYTHON_PKGNAMEPREFIX}os-client-config>=0:devel/py-os-client-config \ + ${PYTHON_PKGNAMEPREFIX}requests>=2.10.0:www/py-requests \ + ${PYTHON_PKGNAMEPREFIX}simplejson>=2.2.0:devel/py-simplejson \ + ${PYTHON_PKGNAMEPREFIX}six>=1.9.0:devel/py-six \ + ${PYTHON_PKGNAMEPREFIX}Babel>=2.3.4:devel/py-babel + +USES= python shebangfix +SHEBANG_FILES= neutronclient/tests/functional/hooks/post_test_hook.sh +USE_PYTHON= distutils autoplist noegginfo +NO_ARCH= yes + +post-patch: + @${REINPLACE_CMD} -e 's,install_requires.*,,' ${WRKSRC}/setup.py + +.include Added: head/net/py-neutronclient/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-neutronclient/distinfo Wed Oct 12 10:25:14 2016 (r423855) @@ -0,0 +1,3 @@ +TIMESTAMP = 1475931882 +SHA256 (python-neutronclient-6.0.0.tar.gz) = a30556f8b9541e94f44a9911d9af89037710761755758a2c1598fa92809293a2 +SIZE (python-neutronclient-6.0.0.tar.gz) = 205872 Added: head/net/py-neutronclient/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/py-neutronclient/pkg-descr Wed Oct 12 10:25:14 2016 (r423855) @@ -0,0 +1,5 @@ +This is a client for the OpenStack Neutron API. There's a Python +API (the neutronclient module), and a command-line script (neutron). +Each implements 100% of the OpenStack Neutron API. + +WWW: https://pypi.python.org/pypi/python-neutronclient