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 734CF13835C for ; Tue, 2 Mar 2021 09:00:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7FE60E0C4A; Tue, 2 Mar 2021 09:00:30 +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 64AA2E0C4A for ; Tue, 2 Mar 2021 09:00:30 +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 75BB734104B for ; Tue, 2 Mar 2021 09:00:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 86C32587 for ; Tue, 2 Mar 2021 09:00:27 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1614675492.0a03d5cd91cb11711e4247c3a0d69e7dd0426d2d.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-backoff/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-backoff/Manifest dev-python/python-backoff/python-backoff-1.6.0.ebuild X-VCS-Directories: dev-python/python-backoff/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 0a03d5cd91cb11711e4247c3a0d69e7dd0426d2d X-VCS-Branch: master Date: Tue, 2 Mar 2021 09:00:27 +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: e4ab3f91-4033-4d79-9fa4-e1f091396ff9 X-Archives-Hash: df22c35a312e22b3d1e2579916b6ef72 commit: 0a03d5cd91cb11711e4247c3a0d69e7dd0426d2d Author: Michał Górny gentoo org> AuthorDate: Tue Mar 2 08:58:12 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Mar 2 08:58:12 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a03d5cd dev-python/python-backoff: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/python-backoff/Manifest | 1 - .../python-backoff/python-backoff-1.6.0.ebuild | 26 ---------------------- 2 files changed, 27 deletions(-) diff --git a/dev-python/python-backoff/Manifest b/dev-python/python-backoff/Manifest index fa8b50b220b..328926a5063 100644 --- a/dev-python/python-backoff/Manifest +++ b/dev-python/python-backoff/Manifest @@ -1,2 +1 @@ -DIST backoff-1.6.0.tar.gz 10474 BLAKE2B 64e4b4a9cb8a1ac5a888aae78f50111400bb57f46bb0c123ecfeb4d660393a9786945d83b838599479e70244f2aa9b667428be2f0d57958b084ed8a045d0ea7d SHA512 a9bb5477d8a84397df61bd3904ad0914c5b214e46da9b55a2286ca8a81508184483e99a6703551dfcd1147e3e656396171ab7133f9e0cf2bff1bc17e6da49444 DIST python-backoff-1.10.0.gh.tar.gz 15546 BLAKE2B 4e2ff1f63a4659c9dbf3135f32da44d4c127909178ffe0fe6935cef43558d61087498d0cd31260396da0ccdff360ee1025db2c0347fb865468abffed2f4adf49 SHA512 9a874a12462c56e8559d2d3d85508f546c397c9d419d1d9ab81d9a046d27b338068f6baeb768fa78b43eccd299de71ec7d1471c4fb153f8c02e6f7292f56b285 diff --git a/dev-python/python-backoff/python-backoff-1.6.0.ebuild b/dev-python/python-backoff/python-backoff-1.6.0.ebuild deleted file mode 100644 index 49223f5e319..00000000000 --- a/dev-python/python-backoff/python-backoff-1.6.0.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python3_{7,8} ) -DISTUTILS_USE_SETUPTOOLS=no - -inherit distutils-r1 - -MY_PN=${PN#python-} -MY_P=${MY_PN}-${PV} -DESCRIPTION="Function decoration for backoff and retry" -HOMEPAGE="https://github.com/litl/backoff https://pypi.org/project/backoff/" -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~x86" -RESTRICT="test" -S=${WORKDIR}/${MY_P} - -DOCS=( README.rst ) - -python_test() { - emake test -}