Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/werkzeug/
Date: Tue, 30 Aug 2022 17:06:59
Message-Id: 1661879051.c7c54fac17b76f4715367285275320d835af9b90.arthurzam@gentoo
1 commit: c7c54fac17b76f4715367285275320d835af9b90
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 30 17:04:11 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 30 17:04:11 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7c54fac
7
8 dev-python/werkzeug: drop 2.2.1
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/werkzeug/Manifest | 1 -
13 dev-python/werkzeug/werkzeug-2.2.1.ebuild | 66 -------------------------------
14 2 files changed, 67 deletions(-)
15
16 diff --git a/dev-python/werkzeug/Manifest b/dev-python/werkzeug/Manifest
17 index 42d1c4e51d09..734af7fa47ac 100644
18 --- a/dev-python/werkzeug/Manifest
19 +++ b/dev-python/werkzeug/Manifest
20 @@ -1,3 +1,2 @@
21 DIST werkzeug-2.2.0.gh.tar.gz 839619 BLAKE2B b6eae91d9a44d030517be5da13c448cf4a2778db7cde61ce36add8dea6f2ac251b31e71d128c4156f44083a4c1b77e546a7e6c55787d8beb93c49538d45b51fd SHA512 2de05269ccd3d83728d435d2f155887a5fd3f3bda9b71c32ffd64b089116c80e89319870fa082f1c6feeeb797b665521b9692ce6c87dcb48b7fa49b2fc63516b
22 -DIST werkzeug-2.2.1.gh.tar.gz 840062 BLAKE2B da7c59eb182e2318c291a6d346a2a444cc054726dd3cf47617b82440383a4c1068b4a31adb6f44d1b965e2efbacf7469c1845d3666fe24288e976bc25794ebcf SHA512 466d164f8a5861cd36eaaf3674a8bb6640593981007d1d6bced1abbdaf8c6a39666601960ebfb2dc35b7c9c17a961ea07bf919cd646c282d27fd5e0f36cc3035
23 DIST werkzeug-2.2.2.gh.tar.gz 844463 BLAKE2B 84da3dd89375d6925e7e7018701339ddfd2b608acf6b3f126bd56c2020056511de6ab157de9024069d1342f9bce4b481ba91a06089fff1a3b31f4a851af7f935 SHA512 cded6c7e0b00871366b70a41de45e31323c0fc09300413d0efca98f5a2f8207026fd77c7e5670fde727da377fd02b9b636f390a2524d2b5778e9e3bdbdfe3e3a
24
25 diff --git a/dev-python/werkzeug/werkzeug-2.2.1.ebuild b/dev-python/werkzeug/werkzeug-2.2.1.ebuild
26 deleted file mode 100644
27 index 1d31830ca31d..000000000000
28 --- a/dev-python/werkzeug/werkzeug-2.2.1.ebuild
29 +++ /dev/null
30 @@ -1,66 +0,0 @@
31 -# Copyright 1999-2022 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=8
35 -
36 -DISTUTILS_USE_PEP517=setuptools
37 -PYTHON_COMPAT=( python3_{8..11} pypy3 )
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="Collection of various utilities for WSGI applications"
42 -HOMEPAGE="
43 - https://palletsprojects.com/p/werkzeug/
44 - https://pypi.org/project/Werkzeug/
45 - https://github.com/pallets/werkzeug/
46 -"
47 -SRC_URI="
48 - https://github.com/pallets/werkzeug/archive/${PV}.tar.gz
49 - -> ${P}.gh.tar.gz
50 -"
51 -
52 -LICENSE="BSD"
53 -SLOT="0"
54 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
55 -
56 -RDEPEND="
57 - >=dev-python/markupsafe-2.1.1[${PYTHON_USEDEP}]
58 -"
59 -# NOTE: remove the loong mask after greenlet gains support for loong
60 -# see https://github.com/python-greenlet/greenlet/pull/257
61 -BDEPEND="
62 - test? (
63 - dev-python/ephemeral-port-reserve[${PYTHON_USEDEP}]
64 - dev-python/pytest-timeout[${PYTHON_USEDEP}]
65 - dev-python/pytest-xprocess[${PYTHON_USEDEP}]
66 - dev-python/watchdog[${PYTHON_USEDEP}]
67 - !alpha? ( !arm? ( !hppa? ( !ia64? ( !s390? (
68 - $(python_gen_cond_dep '
69 - dev-python/cryptography[${PYTHON_USEDEP}]
70 - ' python3_{8..11} pypy3 # TODO: add py3.11 when ported
71 - )
72 - ) ) ) ) )
73 - !hppa? ( !ia64? ( !loong? (
74 - $(python_gen_cond_dep '
75 - dev-python/greenlet[${PYTHON_USEDEP}]
76 - ' python3_{8..10})
77 - ) ) )
78 - )
79 -"
80 -
81 -distutils_enable_tests pytest
82 -
83 -python_test() {
84 - local EPYTEST_DESELECT=()
85 - if ! has_version "dev-python/cryptography[${PYTHON_USEDEP}]"; then
86 - EPYTEST_DESELECT+=(
87 - "tests/test_serving.py::test_server[https]"
88 - tests/test_serving.py::test_ssl_dev_cert
89 - tests/test_serving.py::test_ssl_object
90 - )
91 - fi
92 -
93 - # the default portage tempdir is too long for AF_UNIX sockets
94 - local -x TMPDIR=/tmp
95 - epytest -p no:django -p no:httpbin tests
96 -}