commit: 766bc3f732088f300b402af850967d3ce1499b9c
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 9 06:44:31 2026 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Jan 9 07:29:53 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=766bc3f7
dev-python/werkzeug: Remove old
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/werkzeug/Manifest | 1 -
dev-python/werkzeug/werkzeug-3.1.3.ebuild | 54 -------------------------------
2 files changed, 55 deletions(-)
diff --git a/dev-python/werkzeug/Manifest b/dev-python/werkzeug/Manifest
index fcf5260d0360..9c37b28c878e 100644
--- a/dev-python/werkzeug/Manifest
+++ b/dev-python/werkzeug/Manifest
@@ -1,3 +1,2 @@
-DIST werkzeug-3.1.3.tar.gz 806925 BLAKE2B
1bb69dfb9ec0b8e40e4df9098d5e7e69aa74c419c0a9ab3c798a3d2a92599744aecb22a8e4b3d14840355bf21457171456630d30a4d3bf7f9344a3ea5d87ee4f
SHA512
922c7c377cb10baa76ba9457a2334716969fe058cbc75725989a3d8c61c061a8cf5c6e8bdce70ec098db7822dd12db3391fb8c1471f51d99f48c54df00b182e1
DIST werkzeug-3.1.4.tar.gz 864687 BLAKE2B
a9fd3ddf37bbd2e8725871a30c003634f200d9d698006055f655e72127a20a3d6300d3c15a3daadd4d0dd2a1286ad1844837c4119c54a0292b2f2c3e1788226e
SHA512
5d2ad334edf0908024e29dadf88f772ae8f26c0eb24fb10caf6bd09021008aae67ece05703fe2490a34dd72213ad7db4e25921dbaf35d5f256e7a4cd4c9d1619
DIST werkzeug-3.1.4.tar.gz.provenance 8926 BLAKE2B
a9926cbe703498870b7e111cfe083ca2ccbd41d14316e0e9762e828838207f7b555cbc0cd470b811a6d84ac90e74de0a0eef7e2ee29899ff471df518cf77bac7
SHA512
7d0243da7c20bea504306e2411cc4df231f1621ece3a2c7006636b498e8e555fd57241e2cdf3b24508b552472d6150aab3efcc70f4e03d9de1b6a5a860311fff
diff --git a/dev-python/werkzeug/werkzeug-3.1.3.ebuild
b/dev-python/werkzeug/werkzeug-3.1.3.ebuild
deleted file mode 100644
index 51f0687fb2ee..000000000000
--- a/dev-python/werkzeug/werkzeug-3.1.3.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=flit
-PYTHON_COMPAT=( python3_{11..14} pypy3_11 )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Collection of various utilities for WSGI applications"
-HOMEPAGE="
- https://palletsprojects.com/p/werkzeug/
- https://pypi.org/project/Werkzeug/
- https://github.com/pallets/werkzeug/
-"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv
~s390 ~sparc x86"
-IUSE="test-rust"
-
-RDEPEND="
- >=dev-python/markupsafe-2.1.1[${PYTHON_USEDEP}]
-"
-BDEPEND="
- test? (
- dev-python/ephemeral-port-reserve[${PYTHON_USEDEP}]
- dev-python/pytest-timeout[${PYTHON_USEDEP}]
- >=dev-python/pytest-xprocess-1[${PYTHON_USEDEP}]
- >=dev-python/watchdog-2.3[${PYTHON_USEDEP}]
- test-rust? (
- dev-python/cryptography[${PYTHON_USEDEP}]
- )
- )
-"
-
-distutils_enable_tests pytest
-
-python_test() {
- local EPYTEST_DESELECT=()
- if ! has_version "dev-python/cryptography[${PYTHON_USEDEP}]"; then
- EPYTEST_DESELECT+=(
- "tests/test_serving.py::test_server[https]"
- tests/test_serving.py::test_ssl_dev_cert
- tests/test_serving.py::test_ssl_object
- )
- fi
-
- # the default portage tempdir is too long for AF_UNIX sockets
- local -x TMPDIR=/tmp
- local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
- epytest -p xprocess -p timeout tests
-}