mgorny 15/02/03 13:37:15 Modified: libvpx-1.3.0.ebuild libvpx-9999.ebuild ChangeLog Log: Fix invalid flag USE=sse2 use, my mistake. Bug #538630. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Revision Changes Path 1.18 media-libs/libvpx/libvpx-1.3.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/libvpx-1.3.0.ebuild?rev=1.18&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/libvpx-1.3.0.ebuild?rev=1.18&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/libvpx-1.3.0.ebuild?r1=1.17&r2=1.18 Index: libvpx-1.3.0.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/media-libs/libvpx/libvpx-1.3.0.ebuild,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- libvpx-1.3.0.ebuild 2 Feb 2015 14:33:55 -0000 1.17 +++ libvpx-1.3.0.ebuild 3 Feb 2015 13:37:15 -0000 1.18 @@ -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/libvpx/libvpx-1.3.0.ebuild,v 1.17 2015/02/02 14:33:55 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/libvpx-1.3.0.ebuild,v 1.18 2015/02/03 13:37:15 mgorny Exp $ EAPI=4 inherit eutils multilib toolchain-funcs multilib-minimal @@ -96,7 +96,7 @@ $(use_enable cpu_flags_x86_avx2 avx2) \ $(use_enable cpu_flags_x86_mmx mmx) \ $(use_enable postproc) \ - $(use sse2 && use_enable cpu_flags_x86_sse sse) \ + $(use cpu_flags_x86_sse2 && use_enable cpu_flags_x86_sse sse) \ $(use_enable cpu_flags_x86_sse2 sse2) \ $(use_enable cpu_flags_x86_sse3 sse3) \ $(use_enable cpu_flags_x86_sse4_1 sse4_1) \ 1.52 media-libs/libvpx/libvpx-9999.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/libvpx-9999.ebuild?rev=1.52&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/libvpx-9999.ebuild?rev=1.52&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/libvpx-9999.ebuild?r1=1.51&r2=1.52 Index: libvpx-9999.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/media-libs/libvpx/libvpx-9999.ebuild,v retrieving revision 1.51 retrieving revision 1.52 diff -u -r1.51 -r1.52 --- libvpx-9999.ebuild 2 Feb 2015 14:33:55 -0000 1.51 +++ libvpx-9999.ebuild 3 Feb 2015 13:37:15 -0000 1.52 @@ -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/libvpx/libvpx-9999.ebuild,v 1.51 2015/02/02 14:33:55 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/libvpx-9999.ebuild,v 1.52 2015/02/03 13:37:15 mgorny Exp $ EAPI=4 inherit multilib toolchain-funcs multilib-minimal @@ -91,7 +91,7 @@ $(use_enable cpu_flags_x86_avx2 avx2) \ $(use_enable cpu_flags_x86_mmx mmx) \ $(use_enable postproc) \ - $(use sse2 && use_enable cpu_flags_x86_sse sse) \ + $(use cpu_flags_x86_sse2 && use_enable cpu_flags_x86_sse sse) \ $(use_enable cpu_flags_x86_sse2 sse2) \ $(use_enable cpu_flags_x86_sse3 sse3) \ $(use_enable cpu_flags_x86_sse4_1 sse4_1) \ 1.116 media-libs/libvpx/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/ChangeLog?rev=1.116&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/ChangeLog?rev=1.116&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libvpx/ChangeLog?r1=1.115&r2=1.116 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v retrieving revision 1.115 retrieving revision 1.116 diff -u -r1.115 -r1.116 --- ChangeLog 2 Feb 2015 14:33:55 -0000 1.115 +++ ChangeLog 3 Feb 2015 13:37:15 -0000 1.116 @@ -1,6 +1,10 @@ # ChangeLog for media-libs/libvpx # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v 1.115 2015/02/02 14:33:55 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v 1.116 2015/02/03 13:37:15 mgorny Exp $ + + 03 Feb 2015; Michał Górny <mgo...@gentoo.org> libvpx-1.3.0.ebuild, + libvpx-9999.ebuild: + Fix invalid flag USE=sse2 use, my mistake. Bug #538630. 02 Feb 2015; Michał Górny <mgo...@gentoo.org> libvpx-1.3.0.ebuild, libvpx-9999.ebuild: