Gentoo Archives: gentoo-commits

From: Kacper Kowalik <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-visualization/yt/
Date: Fri, 30 Aug 2013 07:28:54
Message-Id: 1377847648.fcc9714ed4f2952d78e8e98aefd727bc044e4ca9.xarthisius@gentoo
1 commit: fcc9714ed4f2952d78e8e98aefd727bc044e4ca9
2 Author: Kacper Kowalik (Xarthisius) <xarthisius <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 30 07:27:28 2013 +0000
4 Commit: Kacper Kowalik <xarthisius <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 30 07:27:28 2013 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=fcc9714e
7
8 [sci-visualization/yt] update
9
10 ---
11 sci-visualization/yt/yt-9999.ebuild | 45 +++++++++++++++++++------------------
12 1 file changed, 23 insertions(+), 22 deletions(-)
13
14 diff --git a/sci-visualization/yt/yt-9999.ebuild b/sci-visualization/yt/yt-9999.ebuild
15 index a63f2de..39886ce 100644
16 --- a/sci-visualization/yt/yt-9999.ebuild
17 +++ b/sci-visualization/yt/yt-9999.ebuild
18 @@ -2,41 +2,42 @@
19 # Distributed under the terms of the GNU General Public License v2
20 # $Header: $
21
22 -EAPI=4
23 +EAPI=5
24
25 -PYTHON_DEPEND="2"
26 -SUPPORT_PYTHON_ABIS="1"
27 -RESTRICT_PYTHON_ABIS="3.*"
28 +PYTHON_COMPAT=( python2_7 )
29 +EHG_REPO_URI="https://bitbucket.org/yt_analysis/yt"
30 +EHG_REVISION="yt"
31
32 -inherit distutils mercurial
33 +inherit distutils-r1 mercurial
34
35 DESCRIPTION="Astrophysical Simulation Analysis and Vizualization package"
36 HOMEPAGE="http://yt-project.org/"
37 SRC_URI=""
38 -EHG_REPO_URI="https://bitbucket.org/yt_analysis/yt"
39 -EHG_REVISION="yt"
40
41 LICENSE="GPL-3"
42 SLOT="0"
43 KEYWORDS=""
44 -IUSE=""
45 +IUSE="test"
46
47 CDEPEND="media-libs/freetype
48 media-libs/libpng
49 sci-libs/hdf5"
50 -DEPEND="${CDEPEND}
51 - dev-python/cython
52 - >=dev-python/setuptools-0.6.32"
53 RDEPEND="${CDEPEND}
54 - dev-python/ipython[notebook]
55 - dev-python/pyx
56 - dev-python/numpy
57 - dev-python/h5py
58 - dev-python/matplotlib"
59 + dev-python/ipython[notebook,${PYTHON_USEDEP}]
60 + dev-python/pyx[${PYTHON_USEDEP}]
61 + dev-python/numpy[${PYTHON_USEDEP}]
62 + dev-python/h5py[${PYTHON_USEDEP}]
63 + dev-python/matplotlib[${PYTHON_USEDEP}]
64 + dev-python/sympy[${PYTHON_USEDEP}]"
65 +DEPEND="${CDEPEND}
66 + dev-python/Forthon[${PYTHON_USEDEP}]
67 + >=dev-python/cython-0.19[${PYTHON_USEDEP}]
68 + >=dev-python/setuptools-0.7[${PYTHON_USEDEP}]
69 + test? ( ${RDEPEND}
70 + dev-python/nose[${PYTHON_USEDEP}]
71 + )"
72
73 -pkg_setup() {
74 - export PNG_DIR="${EPREFIX}"/usr
75 - export FTYPE_DIR="${EPREFIX}"/usr
76 - export HDF5_DIR="${EPREFIX}"/usr
77 - python_pkg_setup
78 -}
79 +# TODO
80 +#python_test() {
81 +# nosetests || die
82 +#}