Gentoo Archives: gentoo-commits

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