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/paste/
Date: Mon, 02 Nov 2020 14:48:27
Message-Id: 1604328141.0285607726d9d7ac7441cf04a0726376606de08b.mgorny@gentoo
1 commit: 0285607726d9d7ac7441cf04a0726376606de08b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 2 14:42:21 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 2 14:42:21 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02856077
7
8 dev-python/paste: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/paste/Manifest | 1 -
13 dev-python/paste/paste-3.4.4.ebuild | 42 -------------------------------------
14 2 files changed, 43 deletions(-)
15
16 diff --git a/dev-python/paste/Manifest b/dev-python/paste/Manifest
17 index f7e1539b0b1..551b78b77e5 100644
18 --- a/dev-python/paste/Manifest
19 +++ b/dev-python/paste/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST Paste-3.4.4.tar.gz 630575 BLAKE2B 1d81efae1e1a783daf2d3fa86eb2e80cb95173a4bb182326c27471e2612b7de047bb3d98c0943aba9600f9888d760f39edd7c93ff4c16fbd4c90f68ebaa0caf6 SHA512 f977fa02b6800be27f703115b87987dcf8a1e4edd681f253b20fb363bfe625109b424ec6a0faba066e1d074f55a2ba336e17654f899b3100c9e3c3252d38b5a6
22 DIST Paste-3.4.6.tar.gz 630593 BLAKE2B c1bfa58be8bc182878f0e67c89b09896152e1be993f301bc3ff1fd2673439146f3e95b0e2247d6c3cf43c346f67c7fdaf8a7721dfd0967f71d6346fbf62bab4a SHA512 64cf2abdd40850704060b3a07d1999dcfd05e19bf27270f7918c5c8683a4b1638d04da13d09f9f671b8acf069e26872d5932d5f0ed7022fd5cdc6bbda7602433
23 DIST Paste-3.5.0.tar.gz 638021 BLAKE2B 6c8d856733245a7eef5782f8d6c1fe35093f5247cc76e86ab308f2d98a99ebaaef5309a9c402f1334707e042b52e52d7801723e9404ad0ae454b756b9df31dfb SHA512 a9f596d6fcd95f915990c16830caeb9c9a03412447597258c67a003fd485e2efd27798f2eb2de9978ac529292af4b55136de554bfb501e90f6185f55a6b0531b
24
25 diff --git a/dev-python/paste/paste-3.4.4.ebuild b/dev-python/paste/paste-3.4.4.ebuild
26 deleted file mode 100644
27 index 5015b7c191b..00000000000
28 --- a/dev-python/paste/paste-3.4.4.ebuild
29 +++ /dev/null
30 @@ -1,42 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -DISTUTILS_USE_SETUPTOOLS=rdepend
37 -PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 )
38 -
39 -inherit distutils-r1
40 -
41 -MY_P="Paste-${PV}"
42 -DESCRIPTION="Tools for using a Web Server Gateway Interface stack"
43 -HOMEPAGE="https://pypi.org/project/Paste/"
44 -SRC_URI="mirror://pypi/${MY_P::1}/${PN^}/${MY_P}.tar.gz"
45 -S=${WORKDIR}/${MY_P}
46 -
47 -LICENSE="MIT"
48 -SLOT="0"
49 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris"
50 -
51 -RDEPEND="dev-python/namespace-paste[${PYTHON_USEDEP}]
52 - >=dev-python/six-1.4.0[${PYTHON_USEDEP}]"
53 -
54 -distutils_enable_tests pytest
55 -distutils_enable_sphinx docs
56 -
57 -python_prepare_all() {
58 - # TODO: 'Address already in use'
59 - sed -e 's:test_address_family_v4:_&:' \
60 - -i tests/test_httpserver.py || die
61 -
62 - # Remove a test that runs against the paste website.
63 - rm -f tests/test_proxy.py || die
64 -
65 - distutils-r1_python_prepare_all
66 -}
67 -
68 -python_install_all() {
69 - distutils-r1_python_install_all
70 -
71 - find "${D}" -name '*.pth' -delete || die
72 -}