From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 7E370139894 for ; Mon, 24 Aug 2015 10:12:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 734D9141FE; Mon, 24 Aug 2015 10:12:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 061A9141E9 for ; Mon, 24 Aug 2015 10:12:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5715A3408A6 for ; Mon, 24 Aug 2015 10:12:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8D2B617F for ; Mon, 24 Aug 2015 10:12:21 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1440411131.2f70b977a8f53f7ccb0f06ec9e5de7806a8f76ca.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/retrying/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/retrying/Manifest dev-python/retrying/retrying-1.3.3.ebuild X-VCS-Directories: dev-python/retrying/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 2f70b977a8f53f7ccb0f06ec9e5de7806a8f76ca X-VCS-Branch: master Date: Mon, 24 Aug 2015 10:12:21 +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: aa64f865-4e29-49b4-ae54-7771b0bf3b32 X-Archives-Hash: f192599f3053819fbf1ccdead9068e26 commit: 2f70b977a8f53f7ccb0f06ec9e5de7806a8f76ca Author: Justin Lecher gentoo org> AuthorDate: Mon Aug 24 06:53:15 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Mon Aug 24 10:12:11 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f70b977 dev-python/retrying: Version Bump Add pypy supportreset Package-Manager: portage-2.2.20.1 Signed-off-by: Justin Lecher gentoo.org> dev-python/retrying/Manifest | 1 + dev-python/retrying/retrying-1.3.3.ebuild | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/dev-python/retrying/Manifest b/dev-python/retrying/Manifest index 7ba88b2..5757f7f 100644 --- a/dev-python/retrying/Manifest +++ b/dev-python/retrying/Manifest @@ -1 +1,2 @@ DIST retrying-1.3.2.tar.gz 10811 SHA256 320c4be55bfd9366d67c17beb09c9ac9624c7fab1d59e41641f37ae3b2b1f5ca SHA512 1209ff3f45ba6d3ae1f8ea2700cc1eab406601954e7317cfe6fa5a448183efe9065a6bd11fd4560d0cc66ffc10c8e7b29652e515dd95a1f14304dc4f4378ace8 WHIRLPOOL 5c03ec7993f8f946d5b953f8f315fcd819d3be379efcacd1a91424f682260abb77565ef9bd3327a03de82333f0a5a6f0d9fef25091f8b4b03a92d7328f1a4e61 +DIST retrying-1.3.3.tar.gz 10890 SHA256 08c039560a6da2fe4f2c426d0766e284d3b736e355f8dd24b37367b0bb41973b SHA512 99b81560caf63416f0301721ed9b9f9e3527a2fee4c53aeb0630b6e860ed81baf4b12b9819ca5b81346d45c4f40dfcb479a0b25305da1f560657fd3fdf2ffa75 WHIRLPOOL 38837a97a64ae89a5b0540c48310609ffbad071de2f812183ae411999afa74bc0e6e98f69bfc8fe0f1d243356e7ec467a5641be507cd3ef975724e3139e19995 diff --git a/dev-python/retrying/retrying-1.3.3.ebuild b/dev-python/retrying/retrying-1.3.3.ebuild new file mode 100644 index 0000000..7830c2a --- /dev/null +++ b/dev-python/retrying/retrying-1.3.3.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 python3_{3,4} pypy pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Retrying is a general-purpose retrying library." +HOMEPAGE="https://github.com/rholder/retrying" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] +" +RDEPEND=" + >=dev-python/six-1.7.0[${PYTHON_USEDEP}] +"