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: Mon, 01 Nov 2021 22:16:49
Message-Id: 1635804994.628c7c2b7d5157b53fda7c648c0565833a3af023.mgorny@gentoo
1 commit: 628c7c2b7d5157b53fda7c648c0565833a3af023
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 1 21:43:17 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 1 22:16:34 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=628c7c2b
7
8 dev-python/yarl: Bump to 1.7.2
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.7.2.ebuild | 32 ++++++++++++++++++++++++++++++++
14 2 files changed, 33 insertions(+)
15
16 diff --git a/dev-python/yarl/Manifest b/dev-python/yarl/Manifest
17 index 1fc540c9808..ce1b705c1b4 100644
18 --- a/dev-python/yarl/Manifest
19 +++ b/dev-python/yarl/Manifest
20 @@ -1,2 +1,3 @@
21 DIST yarl-1.6.3.tar.gz 176823 BLAKE2B 58d36c6d18ef661cb08074153081f541fc98968107d71e7b501297f45f38de092804bba2ae89ddcf0da79b5d4fca62292a4c460bc9dff9d723d3958bc64ff84b SHA512 4c76b94198b8e334f4b4e71d92b0fe23f752d35e0c29bc68df99648b3f48fbb6e3dd8d7339138544e5dc8fbf64c15cb61678052670ac47edc5be958df819d42e
22 DIST yarl-1.7.0.tar.gz 168325 BLAKE2B 25d708935c8b97142ee729827bb70955458d8ea8212d2a6e59dfe899f2cff41a8cfd93581f8e0f80a3ce194707068ad968f1ae8ee0434e11ac8f7909abda246f SHA512 581b786710c334a8f3d2259678f2bb22c40a0c2b125a786c81a9dc9e4e637e3eb80f11194835f58ada17b346b840ae1a539beba37a52e59b648340cc93f65d5c
23 +DIST yarl-1.7.2.tar.gz 168562 BLAKE2B 7da82193e9fa0d317bd4ba46d63ce04a36c95fc3a389d6800d12e0ddecaacb41c07a665db9e731a9112d98a0f3133861b174dc62523da202d0d06f4cb995c354 SHA512 ac5b630dd592ffa8b095e4d7eee2facaeac8ab578e55fd8856c6a6349f514081020c707cd0b33f250c0e78133e92ed6156835660f14c5ae54d60b4fdf6ea50ea
24
25 diff --git a/dev-python/yarl/yarl-1.7.2.ebuild b/dev-python/yarl/yarl-1.7.2.ebuild
26 new file mode 100644
27 index 00000000000..c30d1180c9b
28 --- /dev/null
29 +++ b/dev-python/yarl/yarl-1.7.2.ebuild
30 @@ -0,0 +1,32 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +PYTHON_COMPAT=( python3_{8..10} pypy3 )
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="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
46 +
47 +RDEPEND="
48 + >=dev-python/multidict-4.0[${PYTHON_USEDEP}]
49 + >=dev-python/idna-2.0[${PYTHON_USEDEP}]
50 + $(python_gen_cond_dep '
51 + >=dev-python/typing-extensions-3.7.4[${PYTHON_USEDEP}]
52 + ' pypy3)
53 +"
54 +
55 +distutils_enable_tests pytest
56 +distutils_enable_sphinx docs \
57 + dev-python/alabaster
58 +
59 +python_test() {
60 + cd tests || die
61 + epytest --override-ini=addopts=
62 +}