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 CEBD0158F6F for ; Mon, 16 Aug 2021 20:48:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 80FA2E0D6B; Mon, 16 Aug 2021 06:14:03 +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 65252E0D6B for ; Mon, 16 Aug 2021 06:14:03 +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 73B9A34610E for ; Mon, 16 Aug 2021 06:14:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AF9628C2 for ; Mon, 16 Aug 2021 06:13:59 +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: <1629094200.bea60227a0250213687aadc199967421a9345751.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.10.0.ebuild X-VCS-Directories: dev-python/python-backoff/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: bea60227a0250213687aadc199967421a9345751 X-VCS-Branch: master Date: Mon, 16 Aug 2021 06:13:59 +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: e98a6cf5-8f68-46c3-a034-349ad8abf0e2 X-Archives-Hash: 96c10b5130b9b58cdc677aafe02871ea commit: bea60227a0250213687aadc199967421a9345751 Author: Michał Górny gentoo org> AuthorDate: Mon Aug 16 06:10:00 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Aug 16 06:10:00 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bea60227 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.10.0.ebuild | 25 ---------------------- 2 files changed, 26 deletions(-) diff --git a/dev-python/python-backoff/Manifest b/dev-python/python-backoff/Manifest index 7fe0f1be42d..77ea8cdd134 100644 --- a/dev-python/python-backoff/Manifest +++ b/dev-python/python-backoff/Manifest @@ -1,2 +1 @@ -DIST python-backoff-1.10.0.gh.tar.gz 15546 BLAKE2B 4e2ff1f63a4659c9dbf3135f32da44d4c127909178ffe0fe6935cef43558d61087498d0cd31260396da0ccdff360ee1025db2c0347fb865468abffed2f4adf49 SHA512 9a874a12462c56e8559d2d3d85508f546c397c9d419d1d9ab81d9a046d27b338068f6baeb768fa78b43eccd299de71ec7d1471c4fb153f8c02e6f7292f56b285 DIST python-backoff-1.11.0.gh.tar.gz 17566 BLAKE2B 4afed5284eb3cbedf54e06fcd89861701613357c672ebabe2611a4bc28c3a6e4539e206cee24bb6a646f7c16c033f16ef56be3b21867aad760b71410749383b7 SHA512 0f5e176bf9d093a72068cf6e55ada8da3e8ec67b85b4fba2d697117dcb3c563a429ff53c5fe17b4a20a8b5ee0420930b789478bd89de5949b628158263413a60 diff --git a/dev-python/python-backoff/python-backoff-1.10.0.ebuild b/dev-python/python-backoff/python-backoff-1.10.0.ebuild deleted file mode 100644 index 9b51a57eed0..00000000000 --- a/dev-python/python-backoff/python-backoff-1.10.0.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8,9} ) -DISTUTILS_USE_SETUPTOOLS=pyproject.toml -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="https://github.com/litl/backoff/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz" -S="${WORKDIR}/${MY_P}" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~x86" - -DOCS=( README.rst ) - -BDEPEND="test? ( dev-python/pytest-asyncio[${PYTHON_USEDEP}] )" - -distutils_enable_tests pytest