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: Sun, 05 Jun 2022 10:35:53
Message-Id: 1654425345.b70e7d8c1b6d49e0573495d0faf4f6f0929f5d43.mgorny@gentoo
1 commit: b70e7d8c1b6d49e0573495d0faf4f6f0929f5d43
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 5 10:05:23 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 5 10:35:45 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b70e7d8c
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.1.1.ebuild | 58 -------------------------------
14 2 files changed, 59 deletions(-)
15
16 diff --git a/dev-python/werkzeug/Manifest b/dev-python/werkzeug/Manifest
17 index fbe4563e9de3..dc1f766b3057 100644
18 --- a/dev-python/werkzeug/Manifest
19 +++ b/dev-python/werkzeug/Manifest
20 @@ -1,2 +1 @@
21 -DIST werkzeug-2.1.1.gh.tar.gz 833268 BLAKE2B 28d922f99259b606c431b224222fe6474c68f8a11f9910fe9e4eedbdf30d18a101c25490dee205035ea7b3675e644f619a81cbf493c7d5540c6141ff3840d84a SHA512 992b5b0a95db5266d025e06683b04f932def72c3967b2c9903f718c5f2672cf0abadb247cf77029d99b567c9588f5ae03b6b07d566bfd764c738ede53501ba1b
22 DIST werkzeug-2.1.2.gh.tar.gz 833667 BLAKE2B e045f566862bfe0f86185cd10aa26bf94a4fc2f7b23173c6a28c9b55d0f239fbba5c66071fab5df6102717b51a1c1fada872e9d9383b9d3b34ab92ffcfd96e59 SHA512 28c4a794a3dbc8423e59244fbcf192b60b53f378444aaaf60330bdd62cec38a4625033b5d72b55613c8b26053a60153ddcb816331ff28ad3ee03bede74d8b1b3
23
24 diff --git a/dev-python/werkzeug/werkzeug-2.1.1.ebuild b/dev-python/werkzeug/werkzeug-2.1.1.ebuild
25 deleted file mode 100644
26 index 905fbc093217..000000000000
27 --- a/dev-python/werkzeug/werkzeug-2.1.1.ebuild
28 +++ /dev/null
29 @@ -1,58 +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..10} pypy3 )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Collection of various utilities for WSGI applications"
41 -HOMEPAGE="
42 - https://werkzeug.palletsprojects.com/
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="amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc x86"
54 -
55 -BDEPEND="
56 - test? (
57 - dev-python/ephemeral-port-reserve[${PYTHON_USEDEP}]
58 - dev-python/pytest-timeout[${PYTHON_USEDEP}]
59 - dev-python/pytest-xprocess[${PYTHON_USEDEP}]
60 - dev-python/watchdog[${PYTHON_USEDEP}]
61 - !alpha? ( !hppa? ( !ia64? (
62 - dev-python/cryptography[${PYTHON_USEDEP}]
63 - ) ) )
64 - !hppa? ( !ia64? (
65 - $(python_gen_cond_dep '
66 - dev-python/greenlet[${PYTHON_USEDEP}]
67 - ' 'python*')
68 - ) )
69 - )
70 -"
71 -
72 -distutils_enable_tests pytest
73 -
74 -python_test() {
75 - local EPYTEST_DESELECT=()
76 - if ! has_version "dev-python/cryptography[${PYTHON_USEDEP}]"; then
77 - EPYTEST_DESELECT+=(
78 - "tests/test_serving.py::test_server[https]"
79 - tests/test_serving.py::test_ssl_dev_cert
80 - tests/test_serving.py::test_ssl_object
81 - )
82 - fi
83 -
84 - # the default portage tempdir is too long for AF_UNIX sockets
85 - local -x TMPDIR=/tmp
86 - epytest -p no:django -p no:httpbin tests
87 -}