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/click-help-colors/
Date: Mon, 12 Jul 2021 09:11:58
Message-Id: 1626081098.0ad95b5156ce0c6f4825d1b363fd0ff3d258072d.mgorny@gentoo
1 commit: 0ad95b5156ce0c6f4825d1b363fd0ff3d258072d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 12 06:37:09 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 12 09:11:38 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ad95b51
7
8 dev-python/click-help-colors: Bump to 0.9.1
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/click-help-colors/Manifest | 1 +
13 .../click-help-colors-0.9.1.ebuild | 27 ++++++++++++++++++++++
14 2 files changed, 28 insertions(+)
15
16 diff --git a/dev-python/click-help-colors/Manifest b/dev-python/click-help-colors/Manifest
17 index 93313e11804..2291f521566 100644
18 --- a/dev-python/click-help-colors/Manifest
19 +++ b/dev-python/click-help-colors/Manifest
20 @@ -1 +1,2 @@
21 +DIST click-help-colors-0.9.1.tar.gz 101042 BLAKE2B 0f40d6d15f8e0a4647212f57e071c49b66bcd2b3d7ef582bd7d8a14135e50028f3ceb07987b5b74a868d998c12886a711f40e1d85b541566c63dca39e43a907d SHA512 ac4ce56ab249f7b98f670a6624700109f20a7c666e006b891d5c9fd4977512a0c94d82f6b43915952179abc946899f85fa1d358cd3d59508ef341ba22d8fc745
22 DIST click-help-colors-0.9.tar.gz 100701 BLAKE2B 838507658aec9cea962d1f373bd771871837d1fe274c70fe4555efbd4e1825203d8728457c5836a482add26e86d4eed83b962811602864d43bf8174f49bd89cd SHA512 02cca02a5cec6b3b23fdeee4aef921cac1cf83d85bea8eb04dd100955dc27b2e4d098bad2f49694c0aa6548135fb979a1fd054525dcec27077f461a034d62a87
23
24 diff --git a/dev-python/click-help-colors/click-help-colors-0.9.1.ebuild b/dev-python/click-help-colors/click-help-colors-0.9.1.ebuild
25 new file mode 100644
26 index 00000000000..251b5c3328a
27 --- /dev/null
28 +++ b/dev-python/click-help-colors/click-help-colors-0.9.1.ebuild
29 @@ -0,0 +1,27 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..10} )
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="Colorization of help messages in Click"
39 +HOMEPAGE="https://github.com/click-contrib/click-help-colors"
40 +SRC_URI="
41 + https://github.com/click-contrib/${PN}/archive/${PV}.tar.gz
42 + -> ${P}.tar.gz"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~amd64"
47 +IUSE="examples"
48 +
49 +RDEPEND="dev-python/click[${PYTHON_USEDEP}]"
50 +
51 +distutils_enable_tests pytest
52 +
53 +python_install_all() {
54 + use examples && dodoc -r examples
55 + distutils-r1_python_install_all
56 +}