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 A460B138331 for ; Sat, 24 Feb 2018 06:22:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ABAC3E07FA; Sat, 24 Feb 2018 06:22:52 +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 8B7FAE0819 for ; Sat, 24 Feb 2018 06:22:52 +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 51328335C31 for ; Sat, 24 Feb 2018 06:22:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 83FF0238 for ; Sat, 24 Feb 2018 06:22:49 +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: <1519452154.142373a4df26667cc9357bf6aa7e2e825c188002.prometheanfire@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/os-traits/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/os-traits/Manifest dev-python/os-traits/os-traits-0.5.0.ebuild X-VCS-Directories: dev-python/os-traits/ X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matt Thode X-VCS-Revision: 142373a4df26667cc9357bf6aa7e2e825c188002 X-VCS-Branch: master Date: Sat, 24 Feb 2018 06:22:49 +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: ef4580f2-2442-46ee-88ad-0cae57591262 X-Archives-Hash: 8a8b397f93e5b3610b16c7fe13f624eb commit: 142373a4df26667cc9357bf6aa7e2e825c188002 Author: Matthew Thode gentoo org> AuthorDate: Sat Feb 24 06:02:34 2018 +0000 Commit: Matt Thode gentoo org> CommitDate: Sat Feb 24 06:02:34 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=142373a4 dev-python/os-traits: 0.5.0 bup Package-Manager: Portage-2.3.19, Repoman-2.3.6 dev-python/os-traits/Manifest | 1 + dev-python/os-traits/os-traits-0.5.0.ebuild | 29 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/dev-python/os-traits/Manifest b/dev-python/os-traits/Manifest index b142c421713..ad368a16646 100644 --- a/dev-python/os-traits/Manifest +++ b/dev-python/os-traits/Manifest @@ -1 +1,2 @@ DIST os-traits-0.3.3.tar.gz 17374 BLAKE2B cc5707317448f66aac84e69340dc1923436846553b059753217ae51971289dc2413ce858f46fc809e80b1754c917fd431b4134b3886eaa6ffac81a4962c30730 SHA512 bd8a7a29170aee1be59ed21684ed2a5dbb1440841a54b522bd3ec31ef61c9fd4f6eecca812c8a8b927c285142801c3da190d7bb47c7b315312e10c1c81d50e27 +DIST os-traits-0.5.0.tar.gz 15775 BLAKE2B 288db72d500a3187a8520b9674982f3233f8644a537ec04971453ece394344b7310cbf133785dfee7122e1aeadebee7fd91d18f57a6ccecf0f176fd569b2bfae SHA512 2dd9019b13fc3394bf97fa9ff6c82d02d26dc6ca8ba8b32e619e9f88a9fdee0d3082e3818ca6a51eea9eb45997dfb48eee6976190b27dff6ab5b892747ce2a54 diff --git a/dev-python/os-traits/os-traits-0.5.0.ebuild b/dev-python/os-traits/os-traits-0.5.0.ebuild new file mode 100644 index 00000000000..9d648359e82 --- /dev/null +++ b/dev-python/os-traits/os-traits-0.5.0.ebuild @@ -0,0 +1,29 @@ +# 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 ) + +inherit distutils-r1 + +DESCRIPTION="os-traits is a library containing standardized trait strings." +HOMEPAGE="https://github.com/openstack/os-traits" +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/six-1.10.0[${PYTHON_USEDEP}]" + +python_prepare_all() { + sed -i '/^hacking/d' test-requirements.txt || die + distutils-r1_python_prepare_all +}