Gentoo Archives: gentoo-commits

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