2022-07-13 09:05:57 +02:00
|
|
|
# Copyright 1999-2022 Gentoo Authors
|
2020-03-30 13:05:30 +02:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2014-08-24 02:53:46 +02:00
|
|
|
|
2022-07-13 09:05:57 +02:00
|
|
|
EAPI=8
|
2014-08-24 02:53:46 +02:00
|
|
|
|
2022-07-13 09:05:57 +02:00
|
|
|
PYTHON_COMPAT=( python3_{8..10} )
|
2014-08-24 02:53:46 +02:00
|
|
|
|
2020-03-30 13:05:30 +02:00
|
|
|
inherit python-r1
|
2014-08-24 02:53:46 +02:00
|
|
|
|
2020-03-30 13:05:30 +02:00
|
|
|
DESCRIPTION="Python script that creates tile-based visual art."
|
|
|
|
HOMEPAGE="https://github.com/TheChymera/patternBG"
|
|
|
|
SRC_URI="https://github.com/TheChymera/patternBG/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
2014-08-24 02:53:46 +02:00
|
|
|
|
|
|
|
SLOT="0"
|
2020-03-30 13:05:30 +02:00
|
|
|
LICENSE="GPL-3"
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
2014-08-24 02:53:46 +02:00
|
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
|
|
|
|
|
|
DEPEND=""
|
|
|
|
RDEPEND="dev-python/pandas"
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
python_foreach_impl python_optimize .
|
|
|
|
python_foreach_impl python_domodule "${S}"/"${PN}".py
|
|
|
|
python_foreach_impl python_newscript "${S}"/"${PN}"_cli.py "${PN}"_cli
|
|
|
|
}
|