idella4 14/06/25 11:27:26 Modified: pandas-0.14.0.ebuild ChangeLog Log: set no-strict-aliasing under py2.7, revise sed statement, correct doc location for dohtml, fixes Bug #514870 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path 1.3 dev-python/pandas/pandas-0.14.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pandas/pandas-0.14.0.ebuild?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pandas/pandas-0.14.0.ebuild?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pandas/pandas-0.14.0.ebuild?r1=1.2&r2=1.3 Index: pandas-0.14.0.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/pandas/pandas-0.14.0.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- pandas-0.14.0.ebuild 24 Jun 2014 06:03:56 -0000 1.2 +++ pandas-0.14.0.ebuild 25 Jun 2014 11:27:26 -0000 1.3 @@ -1,12 +1,12 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pandas/pandas-0.14.0.ebuild,v 1.2 2014/06/24 06:03:56 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pandas/pandas-0.14.0.ebuild,v 1.3 2014/06/25 11:27:26 idella4 Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} ) -inherit distutils-r1 virtualx +inherit distutils-r1 virtualx flag-o-matic DESCRIPTION="Powerful data structures for data analysis and statistics" HOMEPAGE="http://pandas.sourceforge.net/" @@ -69,12 +69,9 @@ python_prepare_all() { if use doc; then # Prevent un-needed download during build - sed -e 's:^intersphinx_mapping:#intersphinx_mapping:' \ - -e "s:^ 'statsmodels:# 'statsmodels:" \ - -e "s:^ 'python:# 'python:" \ - -e "s:^}:#}:" \ - -i doc/source/conf.py || die + sed -e "/^ 'sphinx.ext.intersphinx',/d" -i doc/source/conf.py || die fi + distutils-r1_python_prepare_all } @@ -88,6 +85,15 @@ fi } +python_compile() { + if ! python_is_python3; then + local CFLAGS=${CFLAGS} + append-cflags -fno-strict-aliasing + fi + + distutils-r1_python_compile +} + src_test() { local DISTUTILS_NO_PARALLEL_BUILD=1 distutils-r1_src_test @@ -103,7 +109,7 @@ python_install_all() { if use doc; then - dohtml -r "${BUILD_DIR}"/lib/doc/build/html/* + dohtml -r "${BUILD_DIR}"/lib/doc/build/html/ einfo "An initial build of docs is absent of references to statsmodels" einfo "due to circular dependency. To have them included, emerge" einfo "statsmodels next and re-emerge pandas with USE doc" 1.26 dev-python/pandas/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pandas/ChangeLog?rev=1.26&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pandas/ChangeLog?rev=1.26&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/pandas/ChangeLog?r1=1.25&r2=1.26 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/pandas/ChangeLog,v retrieving revision 1.25 retrieving revision 1.26 diff -u -r1.25 -r1.26 --- ChangeLog 24 Jun 2014 06:03:56 -0000 1.25 +++ ChangeLog 25 Jun 2014 11:27:26 -0000 1.26 @@ -1,6 +1,10 @@ # ChangeLog for dev-python/pandas # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pandas/ChangeLog,v 1.25 2014/06/24 06:03:56 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pandas/ChangeLog,v 1.26 2014/06/25 11:27:26 idella4 Exp $ + + 25 Jun 2014; Ian Delaney <[email protected]> pandas-0.14.0.ebuild: + set no-strict-aliasing under py2.7, revise sed statement, correct doc location + for dohtml, fixes Bug #514870 24 Jun 2014; Patrick Lauer <[email protected]> pandas-0.14.0.ebuild: Whitespace
