From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7D8C6138334 for ; Thu, 30 Aug 2018 23:12:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 82348E084A; Thu, 30 Aug 2018 23:12:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4399AE084A for ; Thu, 30 Aug 2018 23:12:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ABBCA335CE7 for ; Thu, 30 Aug 2018 23:12:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C74D33C0 for ; Thu, 30 Aug 2018 23:12:52 +0000 (UTC) From: "Matt Thode" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Thode" Message-ID: <1535670739.701f8a54e7196c0a0077aeed7e6a716dbe39bd3c.prometheanfire@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-blazarclient/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-blazarclient/Manifest dev-python/python-blazarclient/metadata.xml dev-python/python-blazarclient/python-blazarclient-2.0.0.ebuild X-VCS-Directories: dev-python/python-blazarclient/ X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matt Thode X-VCS-Revision: 701f8a54e7196c0a0077aeed7e6a716dbe39bd3c X-VCS-Branch: master Date: Thu, 30 Aug 2018 23:12:52 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 1d9f98b7-0de1-4f19-948b-a29289b62742 X-Archives-Hash: 994bcd53977285f99879d8f41c69e924 commit: 701f8a54e7196c0a0077aeed7e6a716dbe39bd3c Author: Matthew Thode gentoo org> AuthorDate: Thu Aug 30 23:09:32 2018 +0000 Commit: Matt Thode gentoo org> CommitDate: Thu Aug 30 23:12:19 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=701f8a54 dev-python/python-blazarclient: initial add for heat rocky Package-Manager: Portage-2.3.48, Repoman-2.3.10 dev-python/python-blazarclient/Manifest | 1 + dev-python/python-blazarclient/metadata.xml | 14 +++++++++ .../python-blazarclient-2.0.0.ebuild | 35 ++++++++++++++++++++++ 3 files changed, 50 insertions(+) diff --git a/dev-python/python-blazarclient/Manifest b/dev-python/python-blazarclient/Manifest new file mode 100644 index 00000000000..c84d2464ed5 --- /dev/null +++ b/dev-python/python-blazarclient/Manifest @@ -0,0 +1 @@ +DIST python-blazarclient-2.0.0.tar.gz 32078 BLAKE2B a8f7359485889d41c8e6a36f90f6279a366210d29e3080353fe32e6ee6929784c954c86f0e645d4cefe104132b557648ce27a59873a8248c68d02a0c954490c3 SHA512 af57b7a9d914ed216fe53f6e102ade25654fcf9cc0d4a422c912b2129f5905f47272ea959fab38f0ac23678e719c8b5807fa5e852b22f5f7418c72a17d25412a diff --git a/dev-python/python-blazarclient/metadata.xml b/dev-python/python-blazarclient/metadata.xml new file mode 100644 index 00000000000..5791a0bcc69 --- /dev/null +++ b/dev-python/python-blazarclient/metadata.xml @@ -0,0 +1,14 @@ + + + + + python@gentoo.org + + + prometheanfire@gentoo.org + Matthew Thode + + + This is a client for the OpenStack Blazar API. + + diff --git a/dev-python/python-blazarclient/python-blazarclient-2.0.0.ebuild b/dev-python/python-blazarclient/python-blazarclient-2.0.0.ebuild new file mode 100644 index 00000000000..f03a38f9d41 --- /dev/null +++ b/dev-python/python-blazarclient/python-blazarclient-2.0.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_4 python3_5 python3_6 ) +inherit distutils-r1 + +DESCRIPTION="This is a client for the OpenStack Blazar API" +HOMEPAGE="https://github.com/openstack/python-blazarclient" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="" + +CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}] + !~dev-python/pbr-2.1.0" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + ${CDEPEND}" +RDEPEND=" + ${CDEPEND} + >=dev-python/cliff-2.8.0[${PYTHON_USEDEP}] + !~dev-python/cliff-2.9.0[${PYTHON_USEDEP}] + >=dev-python/prettytable-0.7.2[${PYTHON_USEDEP}] + =dev-python/six-1.10.0[${PYTHON_USEDEP}] + >=dev-python/Babel-2.3.4[${PYTHON_USEDEP}] + !~dev-python/Babel-2.4.0[${PYTHON_USEDEP}] + >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}] + >=dev-python/oslo-log-3.36.0[${PYTHON_USEDEP}] + >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}] + >=dev-python/keystoneauth-3.4.0[${PYTHON_USEDEP}] +"