Gentoo Archives: gentoo-commits

From: Matthias Coppens <coppens.matthias.abc@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/colored/
Date: Sun, 30 Jan 2022 01:05:25
Message-Id: 1643504707.ce05b59f05d33aff945a8a0da91dd685ee87e307.coppens.matthias@gentoo
1 commit: ce05b59f05d33aff945a8a0da91dd685ee87e307
2 Author: Matthias Coppens <coppens.matthias.abc <AT> gmail <DOT> com>
3 AuthorDate: Sun Jan 30 01:05:07 2022 +0000
4 Commit: Matthias Coppens <coppens.matthias.abc <AT> gmail <DOT> com>
5 CommitDate: Sun Jan 30 01:05:07 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ce05b59f
7
8 dev-python/colored: Version bump 1.4.3
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Matthias Coppens <coppens.matthias.abc <AT> gmail.com>
12
13 dev-python/colored/Manifest | 1 +
14 dev-python/colored/colored-1.4.3.ebuild | 24 ++++++++++++++++++++++++
15 2 files changed, 25 insertions(+)
16
17 diff --git a/dev-python/colored/Manifest b/dev-python/colored/Manifest
18 index e7db83bf9..461230d2a 100644
19 --- a/dev-python/colored/Manifest
20 +++ b/dev-python/colored/Manifest
21 @@ -1 +1,2 @@
22 DIST colored-1.4.2.tar.gz 23973 BLAKE2B 3f6d91c08634d6e6616f968b7e06d0d7822a15d02e7129fab6fb4d3a4cb9ca166fd0de5cf3240fdf76918d09aab28224459d332821994730b4070dd7d4336b7e SHA512 31b604baf41d054a3b269e843393c63ede3be279331108ce1127ee30e63f19365c45f63744a5c3bdb5c355716138b7d1768e761ead456c480d5ae1183952a406
23 +DIST colored-1.4.3.tar.gz 24324 BLAKE2B 8924029b06571053a450d1beebe12fb7318d813bcd273b816c88d2f9186e66f12ebdaee631680dbe17348141faf8d80e551c6446a5bd3cb9c09eb09131058571 SHA512 e6f8047a210f38e5fc84e4e24870810ab34eed2bc9003e5f777c3f6de007c3cf61a89bf75e275f3ebfa8fb63420925b41502498534516c464c92ba3949d2f4eb
24
25 diff --git a/dev-python/colored/colored-1.4.3.ebuild b/dev-python/colored/colored-1.4.3.ebuild
26 new file mode 100644
27 index 000000000..4c1e89350
28 --- /dev/null
29 +++ b/dev-python/colored/colored-1.4.3.ebuild
30 @@ -0,0 +1,24 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +PYTHON_COMPAT=( python3_{8..10} pypy3 )
37 +inherit distutils-r1
38 +
39 +EGIT_REPO_URI="https://gitlab.com/dslackw/${PN}"
40 +
41 +DESCRIPTION="Very simple Python library for color and formatting in terminal"
42 +HOMEPAGE="https://gitlab.com/dslackw/colored"
43 +SRC_URI="https://gitlab.com/dslackw/${PN}/-/archive/${PV}/${P}.tar.gz"
44 +
45 +LICENSE="MIT"
46 +KEYWORDS="~amd64 ~x86"
47 +SLOT="0"
48 +
49 +DOCS=( CHANGES.md README.rst docs )
50 +
51 +python_test() {
52 + "${EPYTHON}" tests/test_hex_1.py || die
53 + "${EPYTHON}" tests/test_hex_2.py || die
54 +}