Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/humanfriendly/
Date: Thu, 21 Jan 2021 01:05:11
Message-Id: 1611191103.7467c4b861b1d139821cac07568ce11c32765f7d.sam@gentoo
1 commit: 7467c4b861b1d139821cac07568ce11c32765f7d
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 21 01:01:43 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 21 01:05:03 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7467c4b8
7
8 dev-python/humanfriendly: bump to 9.1
9
10 Package-Manager: Portage-3.0.13, Repoman-3.0.2
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 dev-python/humanfriendly/Manifest | 1 +
14 dev-python/humanfriendly/humanfriendly-9.1.ebuild | 36 +++++++++++++++++++++++
15 2 files changed, 37 insertions(+)
16
17 diff --git a/dev-python/humanfriendly/Manifest b/dev-python/humanfriendly/Manifest
18 index f3681458fa1..e5765ca7382 100644
19 --- a/dev-python/humanfriendly/Manifest
20 +++ b/dev-python/humanfriendly/Manifest
21 @@ -1 +1,2 @@
22 DIST humanfriendly-8.2.tar.gz 358747 BLAKE2B bc5824e94ea94df6ee93ea44d273ccb856f50b69e52ae6293afaedf06c9f00c67e064f0c85edd88be9954bb258334b1b9af4ab88efc5b352f3efe8d322fc55c1 SHA512 123d8592e6613a70421740648bb8998733b118927a0bd6182af848612e46eec8e35cae95168219c9b7672bed8e18e1c4a493a80248eabe47f8a4cb1813c8b591
23 +DIST humanfriendly-9.1.tar.gz 359616 BLAKE2B c67ca9498ff4a0dac237c8f1c81ae88882a7ab162e2cfd663cd50a066dbcfe045424bdf4dcc1df473f5fc41f0c1b8c0f2aca9883aa21915281618ba332c579a3 SHA512 859a9ff01abe0671a23a63e73c9c09c0f92151e96ec38dd5695c75f99fa436e186835cb8a16f59b82d5216b9c427ea0abd419b470b067f8032fe984776f02a8f
24
25 diff --git a/dev-python/humanfriendly/humanfriendly-9.1.ebuild b/dev-python/humanfriendly/humanfriendly-9.1.ebuild
26 new file mode 100644
27 index 00000000000..9ba2dcee001
28 --- /dev/null
29 +++ b/dev-python/humanfriendly/humanfriendly-9.1.ebuild
30 @@ -0,0 +1,36 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( pypy3 python3_{7..9} )
37 +PYTHON_REQ_USE="threads(+)"
38 +DISTUTILS_USE_SETUPTOOLS=rdepend
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="Human friendly output for text interfaces using Python"
43 +HOMEPAGE="https://pypi.org/project/humanfriendly/
44 + https://github.com/xolox/python-humanfriendly/
45 + https://humanfriendly.readthedocs.io/"
46 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
47 +
48 +SLOT="0"
49 +LICENSE="MIT"
50 +KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
51 +
52 +BDEPEND="
53 + test? (
54 + dev-python/capturer[${PYTHON_USEDEP}]
55 + dev-python/coloredlogs[${PYTHON_USEDEP}]
56 + dev-python/docutils[${PYTHON_USEDEP}]
57 + dev-python/mock[${PYTHON_USEDEP}]
58 + )
59 +"
60 +
61 +distutils_enable_tests pytest
62 +distutils_enable_sphinx docs
63 +
64 +python_test() {
65 + pytest -vv ${PN}/tests.py || die "Tests fail with ${EPYTHON}"
66 +}