guru/dev-python/colored/colored-1.4.3.ebuild
Matthias Coppens ce05b59f05
dev-python/colored: Version bump 1.4.3
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Matthias Coppens <coppens.matthias.abc@gmail.com>
2022-01-30 02:05:07 +01:00

25 lines
605 B
Bash

# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} pypy3 )
inherit distutils-r1
EGIT_REPO_URI="https://gitlab.com/dslackw/${PN}"
DESCRIPTION="Very simple Python library for color and formatting in terminal"
HOMEPAGE="https://gitlab.com/dslackw/colored"
SRC_URI="https://gitlab.com/dslackw/${PN}/-/archive/${PV}/${P}.tar.gz"
LICENSE="MIT"
KEYWORDS="~amd64 ~x86"
SLOT="0"
DOCS=( CHANGES.md README.rst docs )
python_test() {
"${EPYTHON}" tests/test_hex_1.py || die
"${EPYTHON}" tests/test_hex_2.py || die
}