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/trio/
Date: Thu, 07 Apr 2022 08:45:16
Message-Id: 1649321106.3b1ec583819afa69148c375c2d52010d5753ea83.mgorny@gentoo
1 commit: 3b1ec583819afa69148c375c2d52010d5753ea83
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 7 08:41:18 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 7 08:45:06 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b1ec583
7
8 dev-python/trio: Enable pypy3
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/trio/trio-0.20.0.ebuild | 8 ++++++--
13 1 file changed, 6 insertions(+), 2 deletions(-)
14
15 diff --git a/dev-python/trio/trio-0.20.0.ebuild b/dev-python/trio/trio-0.20.0.ebuild
16 index 22ac3caa37a2..7886ff51e8af 100644
17 --- a/dev-python/trio/trio-0.20.0.ebuild
18 +++ b/dev-python/trio/trio-0.20.0.ebuild
19 @@ -3,8 +3,9 @@
20
21 EAPI=8
22
23 -PYTHON_COMPAT=( python3_{8..10} )
24 +PYTHON_COMPAT=( pypy3 python3_{8..10} )
25 DISTUTILS_USE_PEP517=setuptools
26 +
27 inherit distutils-r1
28
29 DESCRIPTION="Python library for async concurrency and I/O"
30 @@ -12,7 +13,10 @@ HOMEPAGE="
31 https://github.com/python-trio/trio
32 https://pypi.org/project/trio
33 "
34 -SRC_URI="https://github.com/python-trio/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
35 +SRC_URI="
36 + https://github.com/python-trio/${PN}/archive/v${PV}.tar.gz
37 + -> ${P}.tar.gz
38 +"
39
40 LICENSE="|| ( Apache-2.0 MIT )"
41 SLOT="0"