dev-python/flask-caching: Bump to 2.4.0

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2026-04-18 06:27:41 +02:00
parent 61a3de6a3f
commit 4de11401ee
2 changed files with 41 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST flask_caching-2.3.1.tar.gz 67560 BLAKE2B e4bd5121b4a43a81a359fb839c886e499028f4144c8a529a56ec8700db3b4819ddf59680131bc277d001ece976a9623f462be22f5aacd9668019e85e4d13d380 SHA512 ec591131746ee15f6e451b38af93194eeede1ff191b78042eafdf4fc9ab91eec6347372312cd9be8a92880679446af0c98be546b23845a12ef602e9593d48955
DIST flask_caching-2.4.0.tar.gz 153673 BLAKE2B 9bc1cf2e861148a06666ecb3a3e8d4e019d0bd31e64b86bd4917620c12753736233233bb40306076e8cc7b504df91b56f99b0a11aa4fd435d929c921fda12a21 SHA512 87b87591b55cfd805c6a4656d29667061bf86aaef575d6b412fc471b90ebb8caa47eda20902200e081df15f13fddb70316df12c58ed8db35abf9795bd7f8ec14

View File

@@ -0,0 +1,40 @@
# Copyright 2024-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=flit
PYPI_PN=Flask-Caching
PYTHON_COMPAT=( python3_{11..14} )
inherit distutils-r1 pypi
DESCRIPTION="Adds caching support to Flask applications"
HOMEPAGE="
https://github.com/pallets-eco/flask-caching/
https://pypi.org/project/Flask-Caching/
"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~loong ~x86"
RDEPEND="
>=dev-python/cachelib-0.9.0[${PYTHON_USEDEP}]
>=dev-python/flask-2.0[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
dev-python/asgiref[${PYTHON_USEDEP}]
dev-python/pylibmc[sasl(-),${PYTHON_USEDEP}]
dev-python/redis[${PYTHON_USEDEP}]
)
"
EPYTEST_PLUGINS=( pytest-{asyncio,xprocess} )
distutils_enable_tests pytest
EPYTEST_DESELECT=(
# broken with new redis
tests/test_backend_cache.py::TestRedisCache::test_generic_inc_dec
)