Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/httpcore/
Date: Fri, 14 Aug 2020 18:20:44
Message-Id: 1597428456.00ba53b30968ea8ce8faabee0499d9bcd06f2db4.andrewammerlaan@gentoo
1 commit: 00ba53b30968ea8ce8faabee0499d9bcd06f2db4
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
3 AuthorDate: Fri Aug 14 18:07:36 2020 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
5 CommitDate: Fri Aug 14 18:07:36 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=00ba53b3
7
8 dev-python/httpcore: version bump, drop py3.6
9
10 Package-Manager: Portage-3.0.2, Repoman-2.3.23
11 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
12
13 dev-python/httpcore/Manifest | 1 +
14 dev-python/httpcore/httpcore-0.10.1.ebuild | 47 ++++++++++++++++++++++++++++++
15 2 files changed, 48 insertions(+)
16
17 diff --git a/dev-python/httpcore/Manifest b/dev-python/httpcore/Manifest
18 index 579b3b5..5317da8 100644
19 --- a/dev-python/httpcore/Manifest
20 +++ b/dev-python/httpcore/Manifest
21 @@ -1,2 +1,3 @@
22 +DIST httpcore-0.10.1.tar.gz 42164 BLAKE2B 939dac21235f56e0d39ee4cbe7dca9f686fb086598c35d5335532baaa4fb36e904f9cb9676ba8c412deb5f560a1b379d599993148fda11e74a18a37743613ee5 SHA512 1eddc62f0b2a0c48166de0d2f1717de7db2dd1e1ae959d07ed74e19e098fb5470c4a94348d33614226671870edf134288808aea332abb71f776bb733ff26053f
23 DIST httpcore-0.7.0.tar.gz 27932 BLAKE2B f3258a9f83a37bcf62422c6f6c5a911712afa1038378ef64aeda45c9b3e700d0e809e3526f2bc33633ce4dc827465d99298597a8b26b6cb13696f9663fcd5a87 SHA512 f5419ebbe6ff42e782bea127ca778de1d42637a15e0152d69e6b58ca7e3687d560a4b132781390a853595ec7d18a0fa567d5b752debbb7be7f5cc822a5eac3fd
24 DIST httpcore-0.9.1.tar.gz 35371 BLAKE2B 8f7416c1e726892b152e7e9623790ac1e70b9142f45028b23df25f1d54b6f113f1a79839ec2a7d90b196197d53c880847526c2e47e07d52a0e104a9e2849bccf SHA512 5105ff0c19b8a4a34080e79aa1d191199131450e658fbe0949b091e5acfb9cd8b11033757a3bd7dd1490e5fb61352eb44d086babd70d22be33479befd16745fd
25
26 diff --git a/dev-python/httpcore/httpcore-0.10.1.ebuild b/dev-python/httpcore/httpcore-0.10.1.ebuild
27 new file mode 100644
28 index 0000000..0f7154b
29 --- /dev/null
30 +++ b/dev-python/httpcore/httpcore-0.10.1.ebuild
31 @@ -0,0 +1,47 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( python3_{7,8} )
38 +
39 +DOCBUILDER="mkdocs"
40 +DOCDEPEND="dev-python/mkdocs-material"
41 +AUTODOC=1
42 +
43 +inherit distutils-r1 docs
44 +
45 +DESCRIPTION="A minimal HTTP client"
46 +HOMEPAGE="
47 + https://github.com/encode/httpcore
48 + https://pypi.org/project/httpcore
49 +"
50 +SRC_URI="https://github.com/encode/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
51 +
52 +LICENSE="BSD"
53 +SLOT="0"
54 +KEYWORDS="~amd64 ~x86"
55 +
56 +# Temporary failure in name resolution
57 +# requires masked mitmproxy
58 +RESTRICT="test"
59 +
60 +RDEPEND="
61 + dev-python/h11[${PYTHON_USEDEP}]
62 + dev-python/hyper-h2[${PYTHON_USEDEP}]
63 + dev-python/sniffio[${PYTHON_USEDEP}]
64 + dev-python/trio[${PYTHON_USEDEP}]
65 +"
66 +
67 +DEPEND="
68 + ${RDEPEND}
69 + test? (
70 + dev-python/autoflake[${PYTHON_USEDEP}]
71 + dev-python/isort[${PYTHON_USEDEP}]
72 + dev-python/mypy[${PYTHON_USEDEP}]
73 + dev-python/pytest-asyncio[${PYTHON_USEDEP}]
74 + dev-python/pytest-trio[${PYTHON_USEDEP}]
75 + )
76 +"
77 +
78 +distutils_enable_tests pytest