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/yarl/, dev-python/yarl/files/
Date: Sun, 27 Sep 2020 06:17:15
Message-Id: 1601187419.c9d38616e2c4bee7f9e5460ae04e2ecc2bba4999.mgorny@gentoo
1 commit: c9d38616e2c4bee7f9e5460ae04e2ecc2bba4999
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 27 04:25:11 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 27 06:16:59 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9d38616
7
8 dev-python/yarl: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/yarl/Manifest | 1 -
13 .../files/yarl-1.4.2-disable-broken-tests.patch | 25 -------------------
14 dev-python/yarl/yarl-1.4.2.ebuild | 29 ----------------------
15 3 files changed, 55 deletions(-)
16
17 diff --git a/dev-python/yarl/Manifest b/dev-python/yarl/Manifest
18 index d6e5bf4557a..bf25570e6c4 100644
19 --- a/dev-python/yarl/Manifest
20 +++ b/dev-python/yarl/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST yarl-1.4.2.tar.gz 163521 BLAKE2B ababd1d35bca51a84c8d189266ef5d35f7a4dc65c84c4097a260e86fb838b1a35d2a639c1cf2a407aac8e68c5f67222aae6fa1f6cbfa5cb71dd851b385bae45a SHA512 036562b645d7b9b3ed4a749decb189587b41ab13b5dda5ff461b00eebadf1ecdbd8d5ae06932cc7d8b7ff551cd630f8671eb0f6c854b20996cda4a6897994fa0
23 DIST yarl-1.5.1.tar.gz 173005 BLAKE2B 08bfbe914a2f9a148e558d6db955b61c0d95d3f19d6da6290cf6bcd82f3b46ca58836aebd57e148d6f0fd2dfc4b1244f633e7f472b759c3a4fe0d620f80e3f3d SHA512 c82b0722f347279a03d3f6e82b7c0c357678e850b80ed87befab570846a71c55897cfa25d36757a93ac42c023334ecdf890beaeca7fde4536f68b6f70fdf2127
24 DIST yarl-1.6.0.tar.gz 175492 BLAKE2B e6e3ebb30a591fa1e94d07c353700b1ebf7c21a729d8c9a4cd582f591235d54dee40a109e28fb806893e281b9ab36ca2b1ca1cdf7f093587bde8a5a9c4e7bf89 SHA512 d08d2c4a906706bba3c1fad2b02e01299d076d9f6c1a1eb172d116d0ccbb1e6143b7dd959d242f2a1b5d450416bb15ab6e53ee9e05876b161d61ec23e054f29b
25
26 diff --git a/dev-python/yarl/files/yarl-1.4.2-disable-broken-tests.patch b/dev-python/yarl/files/yarl-1.4.2-disable-broken-tests.patch
27 deleted file mode 100644
28 index b6f774a77ea..00000000000
29 --- a/dev-python/yarl/files/yarl-1.4.2-disable-broken-tests.patch
30 +++ /dev/null
31 @@ -1,25 +0,0 @@
32 -From ca06b26582c08c6e75fa5588f712c4c2f7247223 Mon Sep 17 00:00:00 2001
33 -From: Sebastian Pipping <sebastian@×××××××.org>
34 -Date: Wed, 4 Mar 2020 22:36:58 +0100
35 -Subject: [PATCH] Disable failing test TestScheme.test_no_scheme1
36 -
37 ----
38 - tests/test_url_parsing.py | 2 +-
39 - 1 file changed, 1 insertion(+), 1 deletion(-)
40 -
41 -diff --git a/tests/test_url_parsing.py b/tests/test_url_parsing.py
42 -index beea365..58fa198 100644
43 ---- a/tests/test_url_parsing.py
44 -+++ b/tests/test_url_parsing.py
45 -@@ -38,7 +38,7 @@ class TestScheme:
46 - assert u.query_string == ""
47 - assert u.fragment == ""
48 -
49 -- def test_no_scheme1(self):
50 -+ def _test_no_scheme1(self):
51 - u = URL("google.com:80")
52 - assert u.scheme == ""
53 - assert u.host is None
54 ---
55 -2.24.1
56 -
57
58 diff --git a/dev-python/yarl/yarl-1.4.2.ebuild b/dev-python/yarl/yarl-1.4.2.ebuild
59 deleted file mode 100644
60 index 8b0deec64b0..00000000000
61 --- a/dev-python/yarl/yarl-1.4.2.ebuild
62 +++ /dev/null
63 @@ -1,29 +0,0 @@
64 -# Copyright 1999-2020 Gentoo Authors
65 -# Distributed under the terms of the GNU General Public License v2
66 -
67 -EAPI=7
68 -PYTHON_COMPAT=( python3_{6,7,8,9} )
69 -
70 -inherit distutils-r1
71 -
72 -DESCRIPTION="Yet another URL library"
73 -HOMEPAGE="https://github.com/aio-libs/yarl/"
74 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
75 -
76 -LICENSE="Apache-2.0"
77 -SLOT="0"
78 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~s390 sparc x86"
79 -
80 -RDEPEND="
81 - >=dev-python/multidict-4.0[${PYTHON_USEDEP}]
82 - >=dev-python/idna-2.0[${PYTHON_USEDEP}]
83 -"
84 -
85 -distutils_enable_tests pytest
86 -
87 -PATCHES=(
88 - "${FILESDIR}"/${PN}-1.4.2-test-without-coverage.patch
89 -
90 - # Upstream: https://github.com/aio-libs/yarl/issues/410
91 - "${FILESDIR}"/${PN}-1.4.2-disable-broken-tests.patch
92 -)