From 87bc0a803d9bc5da13ebfed7c6f4929a39330eef Mon Sep 17 00:00:00 2001 From: Horea Christian Date: Sun, 24 Aug 2014 02:53:46 +0200 Subject: [PATCH] new ebuild --- app-misc/patternBG/patternBG-9999.ebuild | 29 ++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 app-misc/patternBG/patternBG-9999.ebuild diff --git a/app-misc/patternBG/patternBG-9999.ebuild b/app-misc/patternBG/patternBG-9999.ebuild new file mode 100644 index 0000000..b31657f --- /dev/null +++ b/app-misc/patternBG/patternBG-9999.ebuild @@ -0,0 +1,29 @@ +# Distributed under the terms of the GNU General Public License v3 + +EAPI=5 + +PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} ) + +inherit python-r1 git-2 + +DESCRIPTION="Python script that creates tile-based visual art. " +HOMEPAGE="https://github.com/TheChymera/${PN}" +EGIT_REPO_URI="https://github.com/TheChymera/${PN}.git" +SRC_URI="" + + +SLOT="0" +LICENSE="LPPL-1.3 BSD" +KEYWORDS="~amd64" +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 +} + +