aballier 14/10/30 15:09:45 Modified: ChangeLog parmap-1.0_rc5.ebuild Log: Fix tests by running against the instance we built, not the installed one. Bug #527478 Signed-off-by: [email protected] (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path 1.2 dev-ml/parmap/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/parmap/ChangeLog?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/parmap/ChangeLog?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/parmap/ChangeLog?r1=1.1&r2=1.2 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-ml/parmap/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- ChangeLog 27 Oct 2014 09:25:33 -0000 1.1 +++ ChangeLog 30 Oct 2014 15:09:45 -0000 1.2 @@ -1,6 +1,10 @@ # ChangeLog for dev-ml/parmap # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/parmap/ChangeLog,v 1.1 2014/10/27 09:25:33 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/parmap/ChangeLog,v 1.2 2014/10/30 15:09:45 aballier Exp $ + + 30 Oct 2014; Alexis Ballier <[email protected]> parmap-1.0_rc5.ebuild: + Fix tests by running against the instance we built, not the installed one. + Bug #527478 *parmap-1.0_rc5 (27 Oct 2014) 1.2 dev-ml/parmap/parmap-1.0_rc5.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/parmap/parmap-1.0_rc5.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/parmap/parmap-1.0_rc5.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/parmap/parmap-1.0_rc5.ebuild?r1=1.1&r2=1.2 Index: parmap-1.0_rc5.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-ml/parmap/parmap-1.0_rc5.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- parmap-1.0_rc5.ebuild 27 Oct 2014 09:25:33 -0000 1.1 +++ parmap-1.0_rc5.ebuild 30 Oct 2014 15:09:45 -0000 1.2 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/parmap/parmap-1.0_rc5.ebuild,v 1.1 2014/10/27 09:25:33 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/parmap/parmap-1.0_rc5.ebuild,v 1.2 2014/10/30 15:09:45 aballier Exp $ EAPI=5 @@ -22,6 +22,12 @@ S="${WORKDIR}/${PN}-${MY_PV}" src_test() { + mkdir "${WORKDIR}/tmpinstall" || die + emake \ + OCAMLLIBDIR="ocaml" \ + DESTDIR="${WORKDIR}/tmpinstall" \ + install + export OCAMLPATH="${WORKDIR}/tmpinstall/ocaml" emake tests cd _build/tests || die for i in $(find . -type f -executable) ; do
