jlec 14/10/29 15:41:09 Modified: metadata.xml ChangeLog Added: libdynd-0.6.5.ebuild Log: dev-libs/libdynd: Version BUmp (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Revision Changes Path 1.2 dev-libs/libdynd/metadata.xml file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdynd/metadata.xml?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdynd/metadata.xml?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdynd/metadata.xml?r1=1.1&r2=1.2 Index: metadata.xml =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-libs/libdynd/metadata.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- metadata.xml 10 Feb 2014 23:30:10 -0000 1.1 +++ metadata.xml 29 Oct 2014 15:41:09 -0000 1.2 @@ -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"> LibDyND, a component of the Blaze project, is a C++ library for dynamic, multidimensional arrays. It is inspired by NumPy, the Python array programming library at the core of the scientific @@ -12,4 +12,7 @@ preview development state, and can be thought of as a sandbox where features are being tried and tweaked to gain experience with them. </longdescription> + <use> + <flag name="cuda">Enable NVIDIA CUDA toolkit support</flag> + </use> </pkgmetadata> 1.3 dev-libs/libdynd/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdynd/ChangeLog?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdynd/ChangeLog?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdynd/ChangeLog?r1=1.2&r2=1.3 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-libs/libdynd/ChangeLog,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- ChangeLog 10 Jun 2014 20:35:54 -0000 1.2 +++ ChangeLog 29 Oct 2014 15:41:09 -0000 1.3 @@ -1,6 +1,12 @@ # ChangeLog for dev-libs/libdynd # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdynd/ChangeLog,v 1.2 2014/06/10 20:35:54 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libdynd/ChangeLog,v 1.3 2014/10/29 15:41:09 jlec Exp $ + +*libdynd-0.6.5 (29 Oct 2014) + + 29 Oct 2014; Justin Lecher <[email protected]> +libdynd-0.6.5.ebuild, + metadata.xml: + Version BUmp *libdynd-0.6.2 (10 Jun 2014) 1.1 dev-libs/libdynd/libdynd-0.6.5.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdynd/libdynd-0.6.5.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libdynd/libdynd-0.6.5.ebuild?rev=1.1&content-type=text/plain Index: libdynd-0.6.5.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libdynd/libdynd-0.6.5.ebuild,v 1.1 2014/10/29 15:41:09 jlec Exp $ EAPI=5 inherit cmake-utils multilib cuda # change each release, to avoid git in tree dependency DYND_GIT_SHA1=2e140844d4a21c436ca0fc46996bf8606ffc21d5 DESCRIPTION="C++ dynamic multi-dimensionnal array library with Python exposure" HOMEPAGE="https://github.com/ContinuumIO/libdynd" SRC_URI="https://github.com/ContinuumIO/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD" SLOT="0/${PV}" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" IUSE="cuda doc fftw test" RDEPEND=" dev-libs/c-blosc:0= cuda? ( x11-drivers/nvidia-drivers dev-util/nvidia-cuda-toolkit ) fftw? ( sci-libs/fftw:3.0 ) " DEPEND="${RDEPEND}" DOCS=( README.md ) PATCHES=( "${FILESDIR}"/${PN}-0.6.0-dont-install-test.patch ) src_prepare() { cmake-utils_src_prepare # each relase comes with a different set... # remove forced strong flags sed -i \ -e "s|@DYND_GIT_SHA1@|${DYND_GIT_SHA1}|" \ -e "s|@DYND_VERSION@|${PV}|" \ -e 's|-fomit-frame-pointer||' \ -e 's|-Werror||g' \ CMakeLists.txt || die } src_configure() { sed -i \ -e '/add_subdirectory(examples)/d' \ CMakeLists.txt || die local mycmakeargs=( -DDYND_SHARED_LIB=ON -DDYND_INSTALL_LIB=ON $(cmake-utils_use cuda DYND_CUDA) $(cmake-utils_use test DYND_BUILD_TESTS) ) cmake-utils_src_configure } src_test() { cd "${BUILD_DIR}" || die ./tests/test_libdynd || die } src_install() { cmake-utils_src_install use doc && dodoc documents/* }
