repo/gentoo:master commit in: dev-python/webob/
MichaŠGórny <[email protected]> Mon, 03 Aug 2026 02:22:38 +0000 (UTC)
| Newsgroups | gmane.linux.gentoo.cvs |
|---|---|
| Message-ID | <1785723731.a19b15c7b64a979b1ca15c72e2e41b7eb9aab99d.mgorny@gentoo> |
commit: a19b15c7b64a979b1ca15c72e2e41b7eb9aab99d
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 3 01:40:32 2026 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Aug 3 02:22:11 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a19b15c7
dev-python/webob: Bump to 1.8.11
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/webob/Manifest | 1 +
dev-python/webob/webob-1.8.11.ebuild | 41 ++++++++++++++++++++++++++++++++++++
2 files changed, 42 insertions(+)
diff --git a/dev-python/webob/Manifest b/dev-python/webob/Manifest
index 7bbac7e643d7..e1d281a33d98 100644
--- a/dev-python/webob/Manifest
+++ b/dev-python/webob/Manifest
@@ -1 +1,2 @@
DIST webob-1.8.10.tar.gz 280796 BLAKE2B fc70c3f60bc9b1d0b75ef7665c8b5ce9f6ec394fa23a840fe0658b3f782a2f899f7ae83d78c70084a377a368f2bb8576bf2d45f56df1985560488b7b0b80b363 SHA512 a37333d95763b24cd6d435e4dd59a18a8cb3c10c23075d6c79114654c84f38b9e41b36d868e4e3200fba93774529f6f4506b29a04411acaa90a2d14cc668a7ed
+DIST webob-1.8.11.tar.gz 286047 BLAKE2B a73a9e218b27d51b302edf16b5bb6df0d9aeb815e2ab5d014a0382b066dee179ead62874e88846f1089cea27dd39f8e3a511db9d4250328db56cf694328400c1 SHA512 0cf296c667c2450f0fff393b2eb5bc8e5cceb0bcdb9b751200855db08a63dded6babd6c2c2ab1f801dd01dbac8ead0e8a6c74cc77bebd17fb30567f6eac60829
diff --git a/dev-python/webob/webob-1.8.11.ebuild b/dev-python/webob/webob-1.8.11.ebuild
new file mode 100644
index 000000000000..d8f2989dace9
--- /dev/null
+++ b/dev-python/webob/webob-1.8.11.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYPI_PN="WebOb"
+PYTHON_COMPAT=( python3_{12..15} python3_{14,15}t )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="WSGI request and response object"
+HOMEPAGE="
+ https://webob.org/
+ https://github.com/Pylons/webob/
+ https://pypi.org/project/WebOb/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
+
+RDEPEND="
+ $(python_gen_cond_dep '
+ >=dev-python/legacy-cgi-2.6[${PYTHON_USEDEP}]
+ ' 3.{13..15})
+"
+
+EPYTEST_PLUGINS=()
+distutils_enable_tests pytest
+
+python_test() {
+ if [[ ${EPYTHON} == python3.1[45]* ]] ; then
+ EPYTEST_DESELECT+=(
+ # https://github.com/Pylons/webob/issues/479
+ tests/test_in_wsgiref.py::test_interrupted_request
+ )
+ fi
+
+ epytest
+}