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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D2F7815808B for ; Fri, 1 Apr 2022 07:45:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1CF90E08FC; Fri, 1 Apr 2022 07:45:54 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D92C0E08F7 for ; Fri, 1 Apr 2022 07:45:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5ABAA341425 for ; Fri, 1 Apr 2022 07:45:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BBCE4357 for ; Fri, 1 Apr 2022 07:45:50 +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: <1648799109.da3017f8dc9f797d05b411ace810c382c77d8b51.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/diskcache/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/diskcache/diskcache-5.4.0.ebuild X-VCS-Directories: dev-python/diskcache/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: da3017f8dc9f797d05b411ace810c382c77d8b51 X-VCS-Branch: master Date: Fri, 1 Apr 2022 07:45:50 +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: c84df888-7423-40de-a27b-80110df57097 X-Archives-Hash: 1406185059f0b89dc1c4059889d3393d commit: da3017f8dc9f797d05b411ace810c382c77d8b51 Author: Michał Górny gentoo org> AuthorDate: Fri Apr 1 07:45:09 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Apr 1 07:45:09 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da3017f8 dev-python/diskcache: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/diskcache/diskcache-5.4.0.ebuild | 36 ----------------------------- 1 file changed, 36 deletions(-) diff --git a/dev-python/diskcache/diskcache-5.4.0.ebuild b/dev-python/diskcache/diskcache-5.4.0.ebuild deleted file mode 100644 index 42daaf56c9bb..000000000000 --- a/dev-python/diskcache/diskcache-5.4.0.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -PYTHON_REQ_USE="sqlite" - -inherit distutils-r1 - -HOMEPAGE="http://www.grantjenks.com/docs/diskcache/ - https://github.com/grantjenks/python-diskcache/" -DESCRIPTION="Disk and file backed cache" -SRC_URI=" - https://github.com/grantjenks/python-diskcache/archive/v${PV}.tar.gz - -> ${P}.gh.tar.gz" -S=${WORKDIR}/python-diskcache-${PV} - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" - -BDEPEND=" - test? ( - >=dev-python/django-3.2[${PYTHON_USEDEP}] - )" - -distutils_enable_sphinx docs -distutils_enable_tests pytest - -src_prepare() { - # remove dep on pytest-xdist and pytest-cov - sed -i -e '/-n auto/d' -e '/--cov/d' tox.ini || die - - distutils-r1_src_prepare -}