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