aballier 15/03/17 15:24:52 Modified: ChangeLog x265-9999.ebuild x265-1.5.ebuild Log: Tests are really about checking asm. Dont run them on arches with no asm optimisations. Bug #519046 Signed-off-by: aball...@gentoo.org (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path 1.17 media-libs/x265/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/ChangeLog?rev=1.17&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/ChangeLog?rev=1.17&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/ChangeLog?r1=1.16&r2=1.17 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/media-libs/x265/ChangeLog,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- ChangeLog 17 Mar 2015 08:35:54 -0000 1.16 +++ ChangeLog 17 Mar 2015 15:24:52 -0000 1.17 @@ -1,6 +1,11 @@ # ChangeLog for media-libs/x265 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/ChangeLog,v 1.16 2015/03/17 08:35:54 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/ChangeLog,v 1.17 2015/03/17 15:24:52 aballier Exp $ + + 17 Mar 2015; Alexis Ballier <aball...@gentoo.org> x265-1.5.ebuild, + x265-9999.ebuild: + Tests are really about checking asm. Dont run them on arches with no asm + optimisations. Bug #519046 *x265-1.5 (17 Mar 2015) 1.13 media-libs/x265/x265-9999.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/x265-9999.ebuild?rev=1.13&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/x265-9999.ebuild?rev=1.13&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/x265-9999.ebuild?r1=1.12&r2=1.13 Index: x265-9999.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/media-libs/x265/x265-9999.ebuild,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- x265-9999.ebuild 17 Mar 2015 08:35:54 -0000 1.12 +++ x265-9999.ebuild 17 Mar 2015 15:24:52 -0000 1.13 @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/x265-9999.ebuild,v 1.12 2015/03/17 08:35:54 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/x265-9999.ebuild,v 1.13 2015/03/17 15:24:52 aballier Exp $ EAPI=5 @@ -56,10 +56,12 @@ } multilib_src_test() { - cd "${BUILD_DIR}/test" || die - for i in TestBench ; do - ./${i} || die - done + if has ${MULTILIB_ABI_FLAG} abi_x86_32 abi_x86_64 ; then + cd "${BUILD_DIR}/test" || die + for i in TestBench ; do + ./${i} || die + done + fi } src_test() { 1.2 media-libs/x265/x265-1.5.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/x265-1.5.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/x265-1.5.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/x265/x265-1.5.ebuild?r1=1.1&r2=1.2 Index: x265-1.5.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/media-libs/x265/x265-1.5.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- x265-1.5.ebuild 17 Mar 2015 08:35:54 -0000 1.1 +++ x265-1.5.ebuild 17 Mar 2015 15:24:52 -0000 1.2 @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/x265-1.5.ebuild,v 1.1 2015/03/17 08:35:54 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/x265/x265-1.5.ebuild,v 1.2 2015/03/17 15:24:52 aballier Exp $ EAPI=5 @@ -56,10 +56,12 @@ } multilib_src_test() { - cd "${BUILD_DIR}/test" || die - for i in TestBench ; do - ./${i} || die - done + if has ${MULTILIB_ABI_FLAG} abi_x86_32 abi_x86_64 ; then + cd "${BUILD_DIR}/test" || die + for i in TestBench ; do + ./${i} || die + done + fi } src_test() {