jlec 14/09/14 16:05:45 Modified: metadata.xml ChangeLog Added: getdata-0.8.5.ebuild Removed: getdata-0.8.0.ebuild Log: sci-libs/getdata: Version Bump; backport fix for old automake, #514516; convert to new python eclasses and EAPI=5 (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Revision Changes Path 1.10 sci-libs/getdata/metadata.xml file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/getdata/metadata.xml?rev=1.10&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/getdata/metadata.xml?rev=1.10&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/getdata/metadata.xml?r1=1.9&r2=1.10 Index: metadata.xml =================================================================== RCS file: /var/cvsroot/gentoo-x86/sci-libs/getdata/metadata.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- metadata.xml 18 Oct 2012 21:43:25 -0000 1.9 +++ metadata.xml 14 Sep 2014 16:05:45 -0000 1.10 @@ -1,8 +1,8 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> - <herd>sci</herd> - <longdescription lang="en"> + <herd>sci</herd> + <longdescription lang="en"> The GetData Project is the reference implementation of the Dirfile Standards, a filesystem-based, column-oriented database format for time-ordered binary data. The Dirfile database format is designed to 1.14 sci-libs/getdata/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/getdata/ChangeLog?rev=1.14&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/getdata/ChangeLog?rev=1.14&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/getdata/ChangeLog?r1=1.13&r2=1.14 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sci-libs/getdata/ChangeLog,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- ChangeLog 18 Oct 2012 21:43:25 -0000 1.13 +++ ChangeLog 14 Sep 2014 16:05:45 -0000 1.14 @@ -1,6 +1,14 @@ # ChangeLog for sci-libs/getdata -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/getdata/ChangeLog,v 1.13 2012/10/18 21:43:25 jlec Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/getdata/ChangeLog,v 1.14 2014/09/14 16:05:45 jlec Exp $ + +*getdata-0.8.5 (14 Sep 2014) + + 14 Sep 2014; Justin Lecher <j...@gentoo.org> -getdata-0.8.0.ebuild, + +getdata-0.8.5.ebuild, +files/getdata-0.8.5-out-of-source.patch, + +files/getdata-0.8.5-serial-test.patch, metadata.xml: + Version Bump; backport fix for old automake, #514516; convert to new python + eclasses and EAPI=5 18 Oct 2012; Justin Lecher <j...@gentoo.org> getdata-0.8.0.ebuild, metadata.xml: 1.1 sci-libs/getdata/getdata-0.8.5.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/getdata/getdata-0.8.5.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/getdata/getdata-0.8.5.ebuild?rev=1.1&content-type=text/plain Index: getdata-0.8.5.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sci-libs/getdata/getdata-0.8.5.ebuild,v 1.1 2014/09/14 16:05:45 jlec Exp $ EAPI=5 PYTHON_COMPAT=( python2_7 ) AUTOTOOLS_AUTORECONF=true FORTRAN_STANDARD="95" FORTRAN_NEEDED=fortran inherit autotools-utils fortran-2 python-r1 DESCRIPTION="Reference implementation of the Dirfile, format for time-ordered binary data" HOMEPAGE="http://getdata.sourceforge.net/" SRC_URI="mirror://sourceforge/project/${PN}/${PN}/${PV}/${P}.tar.bz2" SLOT="0" LICENSE="LGPL-2.1" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" IUSE="bzip2 debug fortran lzma python perl static-libs" REQUIRED_USE="${PYTHON_REQUIRED_USE}" DEPEND="${PYTHON_DEPS} bzip2? ( app-arch/bzip2 ) lzma? ( app-arch/xz-utils ) perl? ( dev-lang/perl )" RDEPEND="${DEPEND}" PATCHES=( "${FILESDIR}"/${P}-serial-test.patch "${FILESDIR}"/${P}-out-of-source.patch ) src_configure() { local myeconfargs=() use perl && myeconfargs+=( --with-perl-dir=vendor ) myeconfargs+=( --disable-idl --without-libslim --with-libz --docdir="${EPREFIX}/usr/share/doc/${P}" $(use_enable debug) $(use_enable fortran) $(use_enable fortran fortran95) $(use_enable python) $(use_enable perl) $(use_with bzip2 libbz2) $(use_with lzma liblzma) ) autotools-utils_src_configure } src_compile() { autotools-utils_src_compile if use python; then python_copy_sources building() { cd "${BUILD_DIR}"/bindings/python || die sed "s:-lpython...:$(python_get_LIBS):g" -i Makefile || die emake \ PYTHON_VERSION="${EPYTHON#python}" \ NUMPY_CPPFLAGS="-I${EPREFIX}$(python_get_sitedir)/numpy/core/include" \ PYTHON_CPPFLAGS="-I${EPREFIX}$(python_get_includedir)" \ pyexecdir="${EPREFIX}$(python_get_sitedir)" \ pythondir="${EPREFIX}$(python_get_sitedir)" } python_foreach_impl building fi } src_install() { autotools-utils_src_install if use python; then installation() { cd "${BUILD_DIR}"/bindings/python || die emake \ DESTDIR="${D}" \ PYTHON_VERSION="${EPYTHON#python}" \ NUMPY_CPPFLAGS="-I${EPREFIX}$(python_get_sitedir)/numpy/core/include" \ PYTHON_CPPFLAGS="-I${EPREFIX}$(python_get_includedir)" \ pyexecdir="${EPREFIX}$(python_get_sitedir)" \ pythondir="${EPREFIX}$(python_get_sitedir)" \ install find \ "${ED}/$(python_get_sitedir)" \ -type f \( -name "*.a" -o -name "*.la" \) -delete || die } python_foreach_impl installation fi }