summaryrefslogtreecommitdiff
path: root/dev-python/cachecontrol
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2025-05-31 11:29:55 +0200
committerMichał Górny <mgorny@gentoo.org>2025-05-31 11:29:55 +0200
commitc0c2b8e8883602ab806af0f045b483bff4591bca (patch)
tree19f65d089d46876d11524eb269173bc8e4772d91 /dev-python/cachecontrol
parentf8088653780aa5da724adc26c408d9f697b3af94 (diff)
downloadgentoo-c0c2b8e8883602ab806af0f045b483bff4591bca.tar.gz
gentoo-c0c2b8e8883602ab806af0f045b483bff4591bca.tar.bz2
gentoo-c0c2b8e8883602ab806af0f045b483bff4591bca.zip
dev-python/cachecontrol: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/cachecontrol')
-rw-r--r--dev-python/cachecontrol/Manifest1
-rw-r--r--dev-python/cachecontrol/cachecontrol-0.14.2.ebuild46
2 files changed, 0 insertions, 47 deletions
diff --git a/dev-python/cachecontrol/Manifest b/dev-python/cachecontrol/Manifest
index 717b56cc1a89..82fcb627ab07 100644
--- a/dev-python/cachecontrol/Manifest
+++ b/dev-python/cachecontrol/Manifest
@@ -1,2 +1 @@
-DIST cachecontrol-0.14.2.tar.gz 28832 BLAKE2B fc572206871a39a2d4c50d0970b9aa2c58f9c99b28ab9bf98e76fad8c3f6e89962e84d368287d7d4beab1fcf16666e42a46a11e194c26f3c487359b767d8d77f SHA512 694dc7dfc976a4087471119a8d5f4b76aa08d62f814293d183331164a4225e8d6f9cbf58551ad806ea9e4bb4adac0d98bb54d7aa09ef4a64feff93a8899c4a58
DIST cachecontrol-0.14.3.tar.gz 28985 BLAKE2B 130b372dc5b17eadc1f16ca6ee361bbc5fc83306a333059f538972b2e9cf29b2e0f608faa904c3d2793c7289e5ad176193534a3d1997aca97c490b9784a10bc0 SHA512 12205946ac78263148da4751a55d8c19356bdf055953a014cedfb3084869bb73034860592b5785d4e3e0bd3317c7dc80061105146460a1059eeef458ed5e8dfb
diff --git a/dev-python/cachecontrol/cachecontrol-0.14.2.ebuild b/dev-python/cachecontrol/cachecontrol-0.14.2.ebuild
deleted file mode 100644
index eb930d693955..000000000000
--- a/dev-python/cachecontrol/cachecontrol-0.14.2.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 2022-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{10..13} pypy3 pypy3_11 )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="httplib2 caching for requests"
-HOMEPAGE="
- https://pypi.org/project/CacheControl/
- https://github.com/psf/cachecontrol/
-"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
-
-RDEPEND="
- <dev-python/msgpack-2[${PYTHON_USEDEP}]
- >=dev-python/msgpack-0.5.2[${PYTHON_USEDEP}]
- >=dev-python/requests-2.16.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
- test? (
- dev-python/cherrypy[${PYTHON_USEDEP}]
- >=dev-python/filelock-3.8.0[${PYTHON_USEDEP}]
- )
-"
-
-distutils_enable_tests pytest
-
-python_test() {
- local EPYTEST_DESELECT=()
-
- if [[ ${EPYTHON} == pypy3* ]]; then
- EPYTEST_DESELECT+=(
- tests/test_adapter.py::TestSessionActions::test_do_not_leak_response
- )
- fi
-
- local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
- epytest
-}