Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pandas: pandas-0.8.1.ebuild ChangeLog
Date: Mon, 30 Jul 2012 20:42:42
Message-Id: 20120730204222.832BF2004B@flycatcher.gentoo.org
1 bicatali 12/07/30 20:42:22
2
3 Modified: ChangeLog
4 Added: pandas-0.8.1.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.4 dev-python/pandas/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pandas/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pandas/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pandas/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/pandas/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 21 Jun 2012 18:33:23 -0000 1.3
24 +++ ChangeLog 30 Jul 2012 20:42:22 -0000 1.4
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/pandas
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pandas/ChangeLog,v 1.3 2012/06/21 18:33:23 bicatali Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pandas/ChangeLog,v 1.4 2012/07/30 20:42:22 bicatali Exp $
30 +
31 +*pandas-0.8.1 (30 Jul 2012)
32 +
33 + 30 Jul 2012; Sébastien Fabbro <bicatali@g.o> +pandas-0.8.1.ebuild:
34 + Version bump
35
36 21 Jun 2012; Sébastien Fabbro <bicatali@g.o> pandas-0.7.3.ebuild:
37 Restrict pypy
38 @@ -15,4 +20,3 @@
39 +metadata.xml:
40 Initial import from the science overlay + version bump. Added doc, testing
41 and extra dependencies.
42 -
43
44
45
46 1.1 dev-python/pandas/pandas-0.8.1.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pandas/pandas-0.8.1.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pandas/pandas-0.8.1.ebuild?rev=1.1&content-type=text/plain
50
51 Index: pandas-0.8.1.ebuild
52 ===================================================================
53 # Copyright 1999-2012 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/dev-python/pandas/pandas-0.8.1.ebuild,v 1.1 2012/07/30 20:42:22 bicatali Exp $
56
57 EAPI=4
58
59 # python cruft
60 SUPPORT_PYTHON_ABIS="1"
61 DISTUTILS_SRC_TEST="nosetests"
62 RESTRICT_PYTHON_ABIS="2.4 2.7-pypy-*"
63
64 inherit distutils
65
66 DESCRIPTION="Powerful data structures for data analysis and statistics"
67 HOMEPAGE="http://pandas.sourceforge.net/"
68 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
69
70 LICENSE="BSD"
71 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
72 SLOT="0"
73 IUSE="doc examples excel R"
74
75 CDEPEND="dev-python/numpy
76 >=dev-python/python-dateutil-2.1"
77 DEPEND="${CDEPEND}
78 doc? (
79 dev-python/ipython
80 dev-python/rpy
81 dev-python/sphinx
82 sci-libs/scikits_statsmodels
83 )"
84 RDEPEND="${CDEPEND}
85 dev-python/matplotlib
86 dev-python/pytables
87 dev-python/pytz
88 sci-libs/scipy
89 excel? (
90 dev-python/openpyxl
91 dev-python/xlrd
92 dev-python/xlwt
93 )
94 R? ( dev-python/rpy )"
95
96 src_compile() {
97 distutils_src_compile
98 if use doc; then
99 cd doc
100 "$(PYTHON -f)" make.py html || die
101 fi
102 }
103
104 src_test() {
105 testing() {
106 cd "${S}/build-${PYTHON_ABI}"/lib*
107 PYTHONPATH=. nosetests-"${PYTHON_ABI}" pandas
108 }
109 python_execute_function testing
110 }
111
112 src_install() {
113 distutils_src_install
114 use doc && dohtml -r doc/build/html
115 if use examples; then
116 insinto /usr/share/doc/${PF}
117 doins -r examples
118 fi
119 }