Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/pandas: pandas-0.14.0.ebuild ChangeLog
Date: Wed, 25 Jun 2014 11:27:31
Message-Id: 20140625112727.010742004E@flycatcher.gentoo.org
1 idella4 14/06/25 11:27:26
2
3 Modified: pandas-0.14.0.ebuild ChangeLog
4 Log:
5 set no-strict-aliasing under py2.7, revise sed statement, correct doc location for dohtml, fixes Bug #514870
6
7 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
8
9 Revision Changes Path
10 1.3 dev-python/pandas/pandas-0.14.0.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pandas/pandas-0.14.0.ebuild?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pandas/pandas-0.14.0.ebuild?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pandas/pandas-0.14.0.ebuild?r1=1.2&r2=1.3
15
16 Index: pandas-0.14.0.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/pandas/pandas-0.14.0.ebuild,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- pandas-0.14.0.ebuild 24 Jun 2014 06:03:56 -0000 1.2
23 +++ pandas-0.14.0.ebuild 25 Jun 2014 11:27:26 -0000 1.3
24 @@ -1,12 +1,12 @@
25 # Copyright 1999-2014 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pandas/pandas-0.14.0.ebuild,v 1.2 2014/06/24 06:03:56 patrick Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pandas/pandas-0.14.0.ebuild,v 1.3 2014/06/25 11:27:26 idella4 Exp $
29
30 EAPI=5
31
32 PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} )
33
34 -inherit distutils-r1 virtualx
35 +inherit distutils-r1 virtualx flag-o-matic
36
37 DESCRIPTION="Powerful data structures for data analysis and statistics"
38 HOMEPAGE="http://pandas.sourceforge.net/"
39 @@ -69,12 +69,9 @@
40 python_prepare_all() {
41 if use doc; then
42 # Prevent un-needed download during build
43 - sed -e 's:^intersphinx_mapping:#intersphinx_mapping:' \
44 - -e "s:^ 'statsmodels:# 'statsmodels:" \
45 - -e "s:^ 'python:# 'python:" \
46 - -e "s:^}:#}:" \
47 - -i doc/source/conf.py || die
48 + sed -e "/^ 'sphinx.ext.intersphinx',/d" -i doc/source/conf.py || die
49 fi
50 +
51 distutils-r1_python_prepare_all
52 }
53
54 @@ -88,6 +85,15 @@
55 fi
56 }
57
58 +python_compile() {
59 + if ! python_is_python3; then
60 + local CFLAGS=${CFLAGS}
61 + append-cflags -fno-strict-aliasing
62 + fi
63 +
64 + distutils-r1_python_compile
65 +}
66 +
67 src_test() {
68 local DISTUTILS_NO_PARALLEL_BUILD=1
69 distutils-r1_src_test
70 @@ -103,7 +109,7 @@
71
72 python_install_all() {
73 if use doc; then
74 - dohtml -r "${BUILD_DIR}"/lib/doc/build/html/*
75 + dohtml -r "${BUILD_DIR}"/lib/doc/build/html/
76 einfo "An initial build of docs is absent of references to statsmodels"
77 einfo "due to circular dependency. To have them included, emerge"
78 einfo "statsmodels next and re-emerge pandas with USE doc"
79
80
81
82 1.26 dev-python/pandas/ChangeLog
83
84 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pandas/ChangeLog?rev=1.26&view=markup
85 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pandas/ChangeLog?rev=1.26&content-type=text/plain
86 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pandas/ChangeLog?r1=1.25&r2=1.26
87
88 Index: ChangeLog
89 ===================================================================
90 RCS file: /var/cvsroot/gentoo-x86/dev-python/pandas/ChangeLog,v
91 retrieving revision 1.25
92 retrieving revision 1.26
93 diff -u -r1.25 -r1.26
94 --- ChangeLog 24 Jun 2014 06:03:56 -0000 1.25
95 +++ ChangeLog 25 Jun 2014 11:27:26 -0000 1.26
96 @@ -1,6 +1,10 @@
97 # ChangeLog for dev-python/pandas
98 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
99 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pandas/ChangeLog,v 1.25 2014/06/24 06:03:56 patrick Exp $
100 +# $Header: /var/cvsroot/gentoo-x86/dev-python/pandas/ChangeLog,v 1.26 2014/06/25 11:27:26 idella4 Exp $
101 +
102 + 25 Jun 2014; Ian Delaney <idella4@g.o> pandas-0.14.0.ebuild:
103 + set no-strict-aliasing under py2.7, revise sed statement, correct doc location
104 + for dohtml, fixes Bug #514870
105
106 24 Jun 2014; Patrick Lauer <patrick@g.o> pandas-0.14.0.ebuild:
107 Whitespace