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 372F61382C5 for ; Wed, 20 May 2020 04:44:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4176BE087A; Wed, 20 May 2020 04:44:16 +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 22EE2E087A for ; Wed, 20 May 2020 04:44:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 572F534F1F6 for ; Wed, 20 May 2020 04:44:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D00E1230 for ; Wed, 20 May 2020 04:44:11 +0000 (UTC) From: "Matthew 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, "Matthew Thode" Message-ID: <1589949848.c69d673b67cc0a95d66be099124e00c862eaaf47.prometheanfire@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tenacity/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/tenacity/Manifest dev-python/tenacity/tenacity-6.1.0.ebuild X-VCS-Directories: dev-python/tenacity/ X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matthew Thode X-VCS-Revision: c69d673b67cc0a95d66be099124e00c862eaaf47 X-VCS-Branch: master Date: Wed, 20 May 2020 04:44:11 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 52368c23-34c3-4142-b0ad-e42000158a0a X-Archives-Hash: 30fe6bf90398b4a0e8462d32c67c9321 commit: c69d673b67cc0a95d66be099124e00c862eaaf47 Author: Matthew Thode gentoo org> AuthorDate: Wed May 20 04:42:52 2020 +0000 Commit: Matthew Thode gentoo org> CommitDate: Wed May 20 04:44:08 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c69d673b dev-python/tenacity: 6.1.0 ussuri bump Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Matthew Thode gentoo.org> dev-python/tenacity/Manifest | 1 + dev-python/tenacity/tenacity-6.1.0.ebuild | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/dev-python/tenacity/Manifest b/dev-python/tenacity/Manifest index f5ead182f12..f4db4fea869 100644 --- a/dev-python/tenacity/Manifest +++ b/dev-python/tenacity/Manifest @@ -1 +1,2 @@ DIST tenacity-4.8.0.tar.gz 28057 BLAKE2B 31451b061c594a47fdf4e6ae97e09c601d95ef76afc805d6f746624e3cf18a0f7c288567a5fd5ff8c264d00ce55a635afa2920799c256168dd89ac800f0d3ca3 SHA512 4662a92325de6b2dd7f6dd8823cecfdf0cc2f1390d054c8ba14f84fedb917cf5896d5c26aaaba9816303dea06ad7f922877c8a09e248319317155e2d6f509873 +DIST tenacity-6.1.0.tar.gz 33438 BLAKE2B e3f7c0ef19f98c0ac5b2a9a1be53241292d895547e5c10810ff94c27f34e8bbca7ef3aea79ce6e4042c84109e209b4be2913e6231233a3b050c18ed52f8af087 SHA512 a8f52f77e066a35c4a35cdd80fe01922613d9f4ca07975aece4a35bc743475f7540bf419e5095eacf94cb248ce33bdd89b46c5e3c5bd5a93bd99a601cf580732 diff --git a/dev-python/tenacity/tenacity-6.1.0.ebuild b/dev-python/tenacity/tenacity-6.1.0.ebuild new file mode 100644 index 00000000000..5050891c0b9 --- /dev/null +++ b/dev-python/tenacity/tenacity-6.1.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7} ) + +inherit distutils-r1 + +DESCRIPTION="General-purpose retrying library" +HOMEPAGE="https://github.com/jd/tenacity" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="" + +DEPEND=" + dev-python/pbr[${PYTHON_USEDEP}] + virtual/python-futures[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] +" +RDEPEND=" + >=dev-python/six-1.9.0[${PYTHON_USEDEP}] + virtual/python-futures[${PYTHON_USEDEP}] + >=dev-python/monotonic-0.6[${PYTHON_USEDEP}] +"