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/
Date: Sun, 29 Mar 2020 12:22:11
Message-Id: 1585483911.0379339da095aba44333f3a8f997c24e67dbdc21.mgorny@gentoo
1 commit: 0379339da095aba44333f3a8f997c24e67dbdc21
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 29 12:11:51 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 29 12:11:51 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0379339d
7
8 dev-python/yarl: Remove redundant versions
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/yarl/Manifest | 1 -
13 dev-python/yarl/yarl-1.1.1.ebuild | 32 --------------------------------
14 2 files changed, 33 deletions(-)
15
16 diff --git a/dev-python/yarl/Manifest b/dev-python/yarl/Manifest
17 index 86374d9652a..ae6f6727438 100644
18 --- a/dev-python/yarl/Manifest
19 +++ b/dev-python/yarl/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST yarl-1.1.1.tar.gz 156284 BLAKE2B d070b0ea5cb06ef78f850a130d3292e66f592fd46ccf671cfe51f93c0e419a599f42f6a7255e3eb0f15ba96b1ac0cdcd0bce4deff81da6e5dcc25f7a8136bd78 SHA512 fe53e24401e91994d04fd7274200f92168bb08d78c460b49e800646a3e4611f6baefca4ede5b2b6727f2e6e4cd51296ca834305c0e2fb377ac3a928463f995cd
22 DIST yarl-1.3.0.tar.gz 159748 BLAKE2B cd7844545f3ee749d1dce865e21065c2b8e0c1ebf4715a3f8ec01064e534fa5b8b872539aece8a7e3a7ae147942ff5e0dc1878d84449d8248fd8e33c4234e3f1 SHA512 58e539900e7754b0a3d41960ebe20d21fd7245ce71fccb31d6a1204298dd71cacd742b2cb2b4c49c3a9b28ce5c664c412334f29e23a3c608aad8018142ba3e14
23 DIST yarl-1.4.2.tar.gz 163521 BLAKE2B ababd1d35bca51a84c8d189266ef5d35f7a4dc65c84c4097a260e86fb838b1a35d2a639c1cf2a407aac8e68c5f67222aae6fa1f6cbfa5cb71dd851b385bae45a SHA512 036562b645d7b9b3ed4a749decb189587b41ab13b5dda5ff461b00eebadf1ecdbd8d5ae06932cc7d8b7ff551cd630f8671eb0f6c854b20996cda4a6897994fa0
24
25 diff --git a/dev-python/yarl/yarl-1.1.1.ebuild b/dev-python/yarl/yarl-1.1.1.ebuild
26 deleted file mode 100644
27 index 8e54ae1a03f..00000000000
28 --- a/dev-python/yarl/yarl-1.1.1.ebuild
29 +++ /dev/null
30 @@ -1,32 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -PYTHON_COMPAT=( python3_6 )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Yet another URL library"
40 -HOMEPAGE="https://github.com/aio-libs/yarl/"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="Apache-2.0"
44 -SLOT="0"
45 -KEYWORDS="amd64 x86"
46 -IUSE="test"
47 -RESTRICT="!test? ( test )"
48 -
49 -RDEPEND="
50 - >=dev-python/multidict-4.0[${PYTHON_USEDEP}]
51 - >=dev-python/idna-2.0[${PYTHON_USEDEP}]
52 -"
53 -DEPEND="${RDEPEND}
54 - dev-python/setuptools[${PYTHON_USEDEP}]
55 - test? (
56 - dev-python/pytest[${PYTHON_USEDEP}]
57 - dev-python/pytest-runner[${PYTHON_USEDEP}]
58 - )"
59 -
60 -python_test() {
61 - esetup.py test
62 -}