mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-21 07:52:21 -04:00
Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Matthias Coppens <coppens.matthias.abc@gmail.com>
25 lines
605 B
Bash
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
|
|
}
|