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: Mon, 27 Feb 2023 05:50:47
Message-Id: 1677476335.9f3dc4096eb88bdcf4613137704b51faefc060e8.mgorny@gentoo
1 commit: 9f3dc4096eb88bdcf4613137704b51faefc060e8
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 27 05:38:55 2023 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 27 05:38:55 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f3dc409
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.2.ebuild | 64 -------------------------------
14 2 files changed, 65 deletions(-)
15
16 diff --git a/dev-python/werkzeug/Manifest b/dev-python/werkzeug/Manifest
17 index 5144e4372843..c8d81271307f 100644
18 --- a/dev-python/werkzeug/Manifest
19 +++ b/dev-python/werkzeug/Manifest
20 @@ -1,2 +1 @@
21 -DIST werkzeug-2.2.2.gh.tar.gz 844463 BLAKE2B 84da3dd89375d6925e7e7018701339ddfd2b608acf6b3f126bd56c2020056511de6ab157de9024069d1342f9bce4b481ba91a06089fff1a3b31f4a851af7f935 SHA512 cded6c7e0b00871366b70a41de45e31323c0fc09300413d0efca98f5a2f8207026fd77c7e5670fde727da377fd02b9b636f390a2524d2b5778e9e3bdbdfe3e3a
22 DIST werkzeug-2.2.3.gh.tar.gz 847768 BLAKE2B 7d0b891a2b15e4fc469c3d331cfb2565f452ae77f772f7ab8e6254aedd172f9115cd3ebd9c82e951ea7505c0e58d6b6f07fb643a8e87af505e04686cccf56cd4 SHA512 3968e663f67e41da5148a4aa1d8e047ffd88416fa8df665e359bbe87992e4e723e1c915eed59ae86b53dd18817e41cdcef059483bce7aa8ed7b388dd4add1482
23
24 diff --git a/dev-python/werkzeug/werkzeug-2.2.2.ebuild b/dev-python/werkzeug/werkzeug-2.2.2.ebuild
25 deleted file mode 100644
26 index 7e2db22b86dc..000000000000
27 --- a/dev-python/werkzeug/werkzeug-2.2.2.ebuild
28 +++ /dev/null
29 @@ -1,64 +0,0 @@
30 -# Copyright 1999-2023 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_{9..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 ~mips ppc ppc64 ~riscv ~s390 sparc x86"
54 -IUSE="test-rust"
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 - test-rust? (
68 - dev-python/cryptography[${PYTHON_USEDEP}]
69 - )
70 - !hppa? ( !ia64? ( !loong? (
71 - $(python_gen_cond_dep '
72 - dev-python/greenlet[${PYTHON_USEDEP}]
73 - ' python3_{8..10})
74 - ) ) )
75 - )
76 -"
77 -
78 -distutils_enable_tests pytest
79 -
80 -python_test() {
81 - local EPYTEST_DESELECT=()
82 - if ! has_version "dev-python/cryptography[${PYTHON_USEDEP}]"; then
83 - EPYTEST_DESELECT+=(
84 - "tests/test_serving.py::test_server[https]"
85 - tests/test_serving.py::test_ssl_dev_cert
86 - tests/test_serving.py::test_ssl_object
87 - )
88 - fi
89 -
90 - # the default portage tempdir is too long for AF_UNIX sockets
91 - local -x TMPDIR=/tmp
92 - epytest -p no:django -p no:httpbin tests
93 -}