2014-08-16 00:19:29 +02:00
|
|
|
# Distributed under the terms of the GNU General Public License v3
|
2013-10-23 03:20:13 +02:00
|
|
|
|
|
|
|
EAPI=5
|
|
|
|
|
|
|
|
PYTHON_COMPAT=( python{2_7,3_2,3_3} )
|
|
|
|
|
|
|
|
inherit python-single-r1 git-2
|
|
|
|
|
|
|
|
DESCRIPTION="Helper Functions for TheChymera's python scripts"
|
|
|
|
HOMEPAGE="https://github.com/TheChymera/chr-helpers"
|
|
|
|
EGIT_REPO_URI="https://github.com/TheChymera/chr-helpers.git"
|
|
|
|
SRC_URI=""
|
|
|
|
|
|
|
|
|
|
|
|
SLOT="0"
|
|
|
|
LICENSE="LPPL-1.3 BSD"
|
2013-11-04 14:46:57 +01:00
|
|
|
KEYWORDS="~amd64"
|
2013-10-23 03:20:13 +02:00
|
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
|
|
|
|
|
|
DEPEND=""
|
|
|
|
RDEPEND="dev-python/pandas"
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
python_optimize .
|
2014-08-24 03:24:40 +02:00
|
|
|
python_domodule "${S}"/chr_helpers.py
|
2014-08-24 03:19:32 +02:00
|
|
|
python_domodule "${S}"/chr_matplotlib.py
|
2013-10-23 03:20:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|