Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/trio/
Date: Sun, 24 May 2020 19:03:44
Message-Id: 1590309294.aafa58b5cded6aedd0ce468feeefa7fed6c3492e.andrewammerlaan@gentoo
1 commit: aafa58b5cded6aedd0ce468feeefa7fed6c3492e
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
3 AuthorDate: Sun May 24 08:34:07 2020 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
5 CommitDate: Sun May 24 08:34:54 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=aafa58b5
7
8 dev-python/trio: version bump
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
12
13 dev-python/trio/Manifest | 1 +
14 dev-python/trio/trio-0.15.1.ebuild | 63 ++++++++++++++++++++++++++++++++++++++
15 2 files changed, 64 insertions(+)
16
17 diff --git a/dev-python/trio/Manifest b/dev-python/trio/Manifest
18 index 7d8d72d..9d1111f 100644
19 --- a/dev-python/trio/Manifest
20 +++ b/dev-python/trio/Manifest
21 @@ -1 +1,2 @@
22 DIST trio-0.14.0.tar.gz 451593 BLAKE2B 05b19fb17fb046c17c196d6fec003b731a0beb2c976e0d289665fbdf28c1ab8556404c21a9b3c72623b7d293a74438d4d43a368367838247d9e17e0f6d4ec47e SHA512 dcc640315c5f9a558c00be97ffc011bbb6d2a2137f4f07845698bdec5e2c0949ffb23f6ec49410e618d49156b42a5423b82f5c1f271c1cced7886d3f94c2cd9e
23 +DIST trio-0.15.1.tar.gz 457493 BLAKE2B 9123510032f8e59b67bde778c1270d0fd18771806120866741f4e03f6e3f354ad34d06d75b23f38d53fa43e0832cc51060049b81a35be14b4ce043e32672b77d SHA512 48ff7e00e67ad11d09faf643275982e893ee7d533396dd9fe2558d38390693acf9e023fddbc8b00b7d12090154c0610fa71e65d003e110cfbb47b3f0eb3e8469
24
25 diff --git a/dev-python/trio/trio-0.15.1.ebuild b/dev-python/trio/trio-0.15.1.ebuild
26 new file mode 100644
27 index 0000000..b83b175
28 --- /dev/null
29 +++ b/dev-python/trio/trio-0.15.1.ebuild
30 @@ -0,0 +1,63 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python3_{6,7} )
37 +
38 +inherit distutils-r1 linux-info
39 +
40 +DESCRIPTION="Python library for async concurrency and I/O"
41 +HOMEPAGE="
42 + https://github.com/python-trio/trio
43 + https://pypi.org/project/trio
44 +"
45 +SRC_URI="https://github.com/python-trio/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
46 +
47 +LICENSE="|| ( Apache-2.0 MIT )"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~x86"
50 +
51 +RDEPEND="
52 + dev-python/async_generator[${PYTHON_USEDEP}]
53 + >=dev-python/attrs-19.2.0[${PYTHON_USEDEP}]
54 + dev-python/idna[${PYTHON_USEDEP}]
55 + dev-python/outcome[${PYTHON_USEDEP}]
56 + dev-python/sniffio[${PYTHON_USEDEP}]
57 + dev-python/sortedcontainers[${PYTHON_USEDEP}]
58 + $(python_gen_cond_dep 'dev-python/contextvars[${PYTHON_USEDEP}]' python3_6)
59 +"
60 +DEPEND="${RDEPEND}
61 + test? (
62 + >=dev-python/astor-0.8.0[${PYTHON_USEDEP}]
63 + >=dev-python/immutables-0.6[${PYTHON_USEDEP}]
64 + dev-python/ipython[${PYTHON_USEDEP}]
65 + dev-python/jedi[${PYTHON_USEDEP}]
66 + dev-python/pylint[${PYTHON_USEDEP}]
67 + dev-python/pyopenssl[${PYTHON_USEDEP}]
68 + dev-python/trustme[${PYTHON_USEDEP}]
69 + dev-python/yapf[${PYTHON_USEDEP}]
70 + )
71 +"
72 +
73 +distutils_enable_tests pytest
74 +distutils_enable_sphinx docs/source \
75 + ">=dev-python/immutables-0.6" \
76 + dev-python/sphinxcontrib-trio \
77 + dev-python/sphinx_rtd_theme \
78 + dev-python/towncrier
79 +
80 +python_prepare_all() {
81 + # Disable tests require IPv6
82 + if ! linux_config_exists || ! linux_chkconfig_present IPV6; then
83 + sed -i -e "/for family in/s/, AF_INET6//" \
84 + -e "/test_getaddrinfo/i@×××××××××××.skip(reason='no IPv6')" \
85 + trio/tests/test_socket.py || die "sed failed for test_socket.py"
86 + fi
87 +
88 + # these tests require internet access
89 + rm trio/tests/test_ssl.py || die
90 + rm trio/tests/test_highlevel_ssl_helpers.py || die
91 +
92 + distutils-r1_python_prepare_all
93 +}