mgorny      15/01/30 16:40:48

  Modified:             ffmpeg-1.0.10.ebuild ffmpeg-9999.ebuild
                        ffmpeg-1.2.11.ebuild ffmpeg-0.10.15.ebuild
                        ffmpeg-1.2.6-r1.ebuild ffmpeg-2.5.3.ebuild
                        ffmpeg-2.2.12.ebuild ChangeLog
  Log:
  Convert to CPU_FLAGS_X86.
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  Changes    Path
1.3                  media-video/ffmpeg/ffmpeg-1.0.10.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-1.0.10.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-1.0.10.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-1.0.10.ebuild?r1=1.2&r2=1.3

Index: ffmpeg-1.0.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-1.0.10.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ffmpeg-1.0.10.ebuild        10 Aug 2014 20:58:53 -0000      1.2
+++ ffmpeg-1.0.10.ebuild        30 Jan 2015 16:40:48 -0000      1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-1.0.10.ebuild,v 
1.2 2014/08/10 20:58:53 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-1.0.10.ebuild,v 
1.3 2015/01/30 16:40:48 mgorny Exp $
 
 EAPI="4"
 
@@ -39,7 +39,7 @@
 
 # String for CPU features in the useflag[:configure_option] form
 # if :configure_option isn't set, it will use 'useflag' as configure option
-CPU_FEATURES="3dnow:amd3dnow 3dnowext:amd3dnowext altivec avx mmx mmxext ssse3 
vis neon"
+CPU_FEATURES="cpu_flags_x86_3dnow:amd3dnow cpu_flags_x86_3dnowext:amd3dnowext 
altivec cpu_flags_x86_avx:avx cpu_flags_x86_mmx:mmx cpu_flags_x86_mmxext:mmxext 
cpu_flags_x86_ssse3:ssse3 vis neon"
 
 for i in ${CPU_FEATURES}; do
        IUSE="${IUSE} ${i%:*}"
@@ -109,7 +109,7 @@
        gnutls? ( virtual/pkgconfig )
        ieee1394? ( virtual/pkgconfig )
        libv4l? ( virtual/pkgconfig )
-       mmx? ( dev-lang/yasm )
+       cpu_flags_x86_mmx? ( dev-lang/yasm )
        rtmp? ( virtual/pkgconfig )
        schroedinger? ( virtual/pkgconfig )
        test? ( net-misc/wget )



1.177                media-video/ffmpeg/ffmpeg-9999.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.177&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?rev=1.177&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild?r1=1.176&r2=1.177

Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.176
retrieving revision 1.177
diff -u -r1.176 -r1.177
--- ffmpeg-9999.ebuild  4 Nov 2014 09:48:43 -0000       1.176
+++ ffmpeg-9999.ebuild  30 Jan 2015 16:40:48 -0000      1.177
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 
1.176 2014/11/04 09:48:43 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 
1.177 2015/01/30 16:40:48 mgorny Exp $
 
 EAPI="5"
 
@@ -52,7 +52,7 @@
 ARM_CPU_FEATURES="armv5te armv6 armv6t2 neon armvfp:vfp"
 MIPS_CPU_FEATURES="mips32r2 mipsdspr1 mipsdspr2 mipsfpu"
 PPC_CPU_FEATURES="altivec"
-X86_CPU_FEATURES="3dnow:amd3dnow 3dnowext:amd3dnowext avx avx2 fma3 fma4 mmx 
mmxext sse sse2 sse3 ssse3 sse4 sse4_2:sse42 xop"
+X86_CPU_FEATURES=( 3dnow:amd3dnow 3dnowext:amd3dnowext avx:avx avx2:avx2 
fma3:fma3 fma4:fma4 mmx:mmx mmxext:mmxext sse:sse sse2:sse2 sse3:sse3 
ssse3:ssse3 sse4_1:sse4 sse4_2:sse42 xop:xop )
 
 # String for CPU features in the useflag[:configure_option] form
 # if :configure_option isn't set, it will use 'useflag' as configure option
@@ -60,7 +60,7 @@
        ${ARM_CPU_FEATURES}
        ${MIPS_CPU_FEATURES}
        ${PPC_CPU_FEATURES}
-       ${X86_CPU_FEATURES}
+       ${X86_CPU_FEATURES[@]/#/cpu_flags_x86_}
 "
 
 for i in ${CPU_FEATURES}; do
@@ -165,7 +165,7 @@
        ieee1394? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] )
        ladspa? ( >=media-libs/ladspa-sdk-1.13-r2[${MULTILIB_USEDEP}] )
        libv4l? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] )
-       mmx? ( >=dev-lang/yasm-1.2 )
+       cpu_flags_x86_mmx? ( >=dev-lang/yasm-1.2 )
        rtmp? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] )
        schroedinger? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] )
        test? ( net-misc/wget sys-devel/bc )



1.2                  media-video/ffmpeg/ffmpeg-1.2.11.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-1.2.11.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-1.2.11.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-1.2.11.ebuild?r1=1.1&r2=1.2

Index: ffmpeg-1.2.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-1.2.11.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ffmpeg-1.2.11.ebuild        19 Dec 2014 08:53:13 -0000      1.1
+++ ffmpeg-1.2.11.ebuild        30 Jan 2015 16:40:48 -0000      1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-1.2.11.ebuild,v 
1.1 2014/12/19 08:53:13 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-1.2.11.ebuild,v 
1.2 2015/01/30 16:40:48 mgorny Exp $
 
 EAPI="4"
 
@@ -39,7 +39,7 @@
 
 # String for CPU features in the useflag[:configure_option] form
 # if :configure_option isn't set, it will use 'useflag' as configure option
-CPU_FEATURES="3dnow:amd3dnow 3dnowext:amd3dnowext altivec avx mmx mmxext ssse3 
vis neon"
+CPU_FEATURES="cpu_flags_x86_3dnow:amd3dnow cpu_flags_x86_3dnowext:amd3dnowext 
altivec cpu_flags_x86_avx:avx cpu_flags_x86_mmx:mmx cpu_flags_x86_mmxext:mmxext 
cpu_flags_x86_ssse3:ssse3 vis neon"
 
 for i in ${CPU_FEATURES}; do
        IUSE="${IUSE} ${i%:*}"
@@ -133,7 +133,7 @@
        gnutls? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] )
        ieee1394? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] )
        libv4l? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] )
-       mmx? ( dev-lang/yasm )
+       cpu_flags_x86_mmx? ( dev-lang/yasm )
        rtmp? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] )
        schroedinger? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] )
        test? ( net-misc/wget )



1.2                  media-video/ffmpeg/ffmpeg-0.10.15.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-0.10.15.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-0.10.15.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-0.10.15.ebuild?r1=1.1&r2=1.2

Index: ffmpeg-0.10.15.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-0.10.15.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ffmpeg-0.10.15.ebuild       13 Aug 2014 18:37:16 -0000      1.1
+++ ffmpeg-0.10.15.ebuild       30 Jan 2015 16:40:48 -0000      1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-0.10.15.ebuild,v 
1.1 2014/08/13 18:37:16 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-0.10.15.ebuild,v 
1.2 2015/01/30 16:40:48 mgorny Exp $
 
 EAPI="5"
 
@@ -38,7 +38,7 @@
 
 # String for CPU features in the useflag[:configure_option] form
 # if :configure_option isn't set, it will use 'useflag' as configure option
-CPU_FEATURES="3dnow:amd3dnow 3dnowext:amd3dnowext altivec avx mmx mmxext:mmx2 
ssse3 vis neon"
+CPU_FEATURES="cpu_flags_x86_3dnow:amd3dnow cpu_flags_x86_3dnowext:amd3dnowext 
altivec cpu_flags_x86_avx:avx cpu_flags_x86_mmx:mmx cpu_flags_x86_mmxext:mmx2 
cpu_flags_x86_ssse3:ssse3 vis neon"
 
 for i in ${CPU_FEATURES}; do
        IUSE="${IUSE} ${i%:*}"
@@ -99,7 +99,7 @@
        gnutls? ( virtual/pkgconfig )
        ieee1394? ( virtual/pkgconfig )
        libv4l? ( virtual/pkgconfig )
-       mmx? ( dev-lang/yasm )
+       cpu_flags_x86_mmx? ( dev-lang/yasm )
        rtmp? ( virtual/pkgconfig )
        schroedinger? ( virtual/pkgconfig )
        test? ( net-misc/wget )



1.15                 media-video/ffmpeg/ffmpeg-1.2.6-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-1.2.6-r1.ebuild?rev=1.15&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-1.2.6-r1.ebuild?rev=1.15&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-1.2.6-r1.ebuild?r1=1.14&r2=1.15

Index: ffmpeg-1.2.6-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-1.2.6-r1.ebuild,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ffmpeg-1.2.6-r1.ebuild      11 Oct 2014 13:09:41 -0000      1.14
+++ ffmpeg-1.2.6-r1.ebuild      30 Jan 2015 16:40:48 -0000      1.15
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-1.2.6-r1.ebuild,v 
1.14 2014/10/11 13:09:41 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-1.2.6-r1.ebuild,v 
1.15 2015/01/30 16:40:48 mgorny Exp $
 
 EAPI="4"
 
@@ -39,7 +39,7 @@
 
 # String for CPU features in the useflag[:configure_option] form
 # if :configure_option isn't set, it will use 'useflag' as configure option
-CPU_FEATURES="3dnow:amd3dnow 3dnowext:amd3dnowext altivec avx mmx mmxext ssse3 
vis neon"
+CPU_FEATURES="cpu_flags_x86_3dnow:amd3dnow cpu_flags_x86_3dnowext:amd3dnowext 
altivec cpu_flags_x86_avx:avx cpu_flags_x86_mmx:mmx cpu_flags_x86_mmxext:mmxext 
cpu_flags_x86_ssse3:ssse3 vis neon"
 
 for i in ${CPU_FEATURES}; do
        IUSE="${IUSE} ${i%:*}"
@@ -133,7 +133,7 @@
        gnutls? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] )
        ieee1394? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] )
        libv4l? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] )
-       mmx? ( dev-lang/yasm )
+       cpu_flags_x86_mmx? ( dev-lang/yasm )
        rtmp? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] )
        schroedinger? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] )
        test? ( net-misc/wget )



1.2                  media-video/ffmpeg/ffmpeg-2.5.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-2.5.3.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-2.5.3.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-2.5.3.ebuild?r1=1.1&r2=1.2

Index: ffmpeg-2.5.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-2.5.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ffmpeg-2.5.3.ebuild 10 Jan 2015 11:24:50 -0000      1.1
+++ ffmpeg-2.5.3.ebuild 30 Jan 2015 16:40:48 -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-video/ffmpeg/ffmpeg-2.5.3.ebuild,v 
1.1 2015/01/10 11:24:50 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-2.5.3.ebuild,v 
1.2 2015/01/30 16:40:48 mgorny Exp $
 
 EAPI="5"
 
@@ -52,7 +52,7 @@
 ARM_CPU_FEATURES="armv5te armv6 armv6t2 neon armvfp:vfp"
 MIPS_CPU_FEATURES="mips32r2 mipsdspr1 mipsdspr2 mipsfpu"
 PPC_CPU_FEATURES="altivec"
-X86_CPU_FEATURES="3dnow:amd3dnow 3dnowext:amd3dnowext avx avx2 fma3 fma4 mmx 
mmxext sse sse2 sse3 ssse3 sse4 sse4_2:sse42 xop"
+X86_CPU_FEATURES=( 3dnow:amd3dnow 3dnowext:amd3dnowext avx:avx avx2:avx2 
fma3:fma3 fma4:fma4 mmx:mmx mmxext:mmxext sse:sse sse2:sse2 sse3:sse3 
ssse3:ssse3 sse4_1:sse4 sse4_2:sse42 xop:xop )
 
 # String for CPU features in the useflag[:configure_option] form
 # if :configure_option isn't set, it will use 'useflag' as configure option
@@ -60,7 +60,7 @@
        ${ARM_CPU_FEATURES}
        ${MIPS_CPU_FEATURES}
        ${PPC_CPU_FEATURES}
-       ${X86_CPU_FEATURES}
+       ${X86_CPU_FEATURES[@]/#/cpu_flags_x86_}
 "
 
 for i in ${CPU_FEATURES}; do
@@ -165,7 +165,7 @@
        ieee1394? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] )
        ladspa? ( >=media-libs/ladspa-sdk-1.13-r2[${MULTILIB_USEDEP}] )
        libv4l? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] )
-       mmx? ( >=dev-lang/yasm-1.2 )
+       cpu_flags_x86_mmx? ( >=dev-lang/yasm-1.2 )
        rtmp? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] )
        schroedinger? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] )
        test? ( net-misc/wget sys-devel/bc )



1.2                  media-video/ffmpeg/ffmpeg-2.2.12.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-2.2.12.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-2.2.12.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ffmpeg-2.2.12.ebuild?r1=1.1&r2=1.2

Index: ffmpeg-2.2.12.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-2.2.12.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ffmpeg-2.2.12.ebuild        22 Jan 2015 07:44:51 -0000      1.1
+++ ffmpeg-2.2.12.ebuild        30 Jan 2015 16:40:48 -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-video/ffmpeg/ffmpeg-2.2.12.ebuild,v 
1.1 2015/01/22 07:44:51 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-2.2.12.ebuild,v 
1.2 2015/01/30 16:40:48 mgorny Exp $
 
 EAPI="5"
 
@@ -52,7 +52,7 @@
 ARM_CPU_FEATURES="armv5te armv6 armv6t2 neon armvfp:vfp"
 MIPS_CPU_FEATURES="mips32r2 mipsdspr1 mipsdspr2 mipsfpu"
 PPC_CPU_FEATURES="altivec"
-X86_CPU_FEATURES="3dnow:amd3dnow 3dnowext:amd3dnowext avx avx2 fma3 fma4 mmx 
mmxext sse sse2 sse3 ssse3 sse4 sse4_2:sse42"
+X86_CPU_FEATURES=( 3dnow:amd3dnow 3dnowext:amd3dnowext avx:avx avx2:avx2 
fma3:fma3 fma4:fma4 mmx:mmx mmxext:mmxext sse:sse sse2:sse2 sse3:sse3 
ssse3:ssse3 sse4_1:sse4 sse4_2:sse42 )
 
 # String for CPU features in the useflag[:configure_option] form
 # if :configure_option isn't set, it will use 'useflag' as configure option
@@ -60,7 +60,7 @@
        ${ARM_CPU_FEATURES}
        ${MIPS_CPU_FEATURES}
        ${PPC_CPU_FEATURES}
-       ${X86_CPU_FEATURES}
+       ${X86_CPU_FEATURES[@]/#/cpu_flags_x86_}
 "
 
 for i in ${CPU_FEATURES}; do
@@ -165,7 +165,7 @@
        ieee1394? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] )
        ladspa? ( >=media-libs/ladspa-sdk-1.13-r2[${MULTILIB_USEDEP}] )
        libv4l? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] )
-       mmx? ( >=dev-lang/yasm-1.2 )
+       cpu_flags_x86_mmx? ( >=dev-lang/yasm-1.2 )
        rtmp? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] )
        schroedinger? ( >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}] )
        test? ( net-misc/wget sys-devel/bc )



1.823                media-video/ffmpeg/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.823&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?rev=1.823&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-video/ffmpeg/ChangeLog?r1=1.822&r2=1.823

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.822
retrieving revision 1.823
diff -u -r1.822 -r1.823
--- ChangeLog   29 Jan 2015 08:47:16 -0000      1.822
+++ ChangeLog   30 Jan 2015 16:40:48 -0000      1.823
@@ -1,6 +1,11 @@
 # ChangeLog for media-video/ffmpeg
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.822 
2015/01/29 08:47:16 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.823 
2015/01/30 16:40:48 mgorny Exp $
+
+  30 Jan 2015; Michał Górny <[email protected]> ffmpeg-0.10.15.ebuild,
+  ffmpeg-1.0.10.ebuild, ffmpeg-1.2.11.ebuild, ffmpeg-1.2.6-r1.ebuild,
+  ffmpeg-2.2.12.ebuild, ffmpeg-2.5.3.ebuild, ffmpeg-9999.ebuild:
+  Convert to CPU_FLAGS_X86.
 
   29 Jan 2015; Alexis Ballier <[email protected]> -ffmpeg-1.2.10.ebuild,
   -ffmpeg-2.2.11.ebuild, -ffmpeg-2.5.1.ebuild, -ffmpeg-2.5.2.ebuild:




Reply via email to