aballier    14/11/04 09:48:43

  Modified:             ffmpeg-9999.ebuild ffmpeg-2.4.3.ebuild ChangeLog
                        ffmpeg-2.2.10.ebuild
  Log:
  give preference to -mcpu then -mtune then -march for setting cpu, this should 
match better the precision of the flags
  
  Signed-off-by: [email protected]
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 
160F534A)

Revision  Changes    Path
1.176                media-video/ffmpeg/ffmpeg-9999.ebuild

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

Index: ffmpeg-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v
retrieving revision 1.175
retrieving revision 1.176
diff -u -r1.175 -r1.176
--- ffmpeg-9999.ebuild  4 Nov 2014 09:20:04 -0000       1.175
+++ ffmpeg-9999.ebuild  4 Nov 2014 09:48:43 -0000       1.176
@@ -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/media-video/ffmpeg/ffmpeg-9999.ebuild,v 
1.175 2014/11/04 09:20:04 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-9999.ebuild,v 
1.176 2014/11/04 09:48:43 aballier Exp $
 
 EAPI="5"
 
@@ -289,7 +289,7 @@
        # We need to do this so that features of that CPU will be better used
        # If they contain an unknown CPU it will not hurt since ffmpeg's 
configure
        # will just ignore it.
-       for i in $(get-flag march) $(get-flag mcpu) $(get-flag mtune) ; do
+       for i in $(get-flag mcpu) $(get-flag mtune) $(get-flag march) ; do
                [[ ${i} = native ]] && i="host" # bug #273421
                myconf+=( --cpu=${i} )
                break



1.3                  media-video/ffmpeg/ffmpeg-2.4.3.ebuild

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

Index: ffmpeg-2.4.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-2.4.3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ffmpeg-2.4.3.ebuild 4 Nov 2014 09:20:04 -0000       1.2
+++ ffmpeg-2.4.3.ebuild 4 Nov 2014 09:48:43 -0000       1.3
@@ -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/media-video/ffmpeg/ffmpeg-2.4.3.ebuild,v 
1.2 2014/11/04 09:20:04 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-2.4.3.ebuild,v 
1.3 2014/11/04 09:48:43 aballier Exp $
 
 EAPI="5"
 
@@ -288,7 +288,7 @@
        # We need to do this so that features of that CPU will be better used
        # If they contain an unknown CPU it will not hurt since ffmpeg's 
configure
        # will just ignore it.
-       for i in $(get-flag march) $(get-flag mcpu) $(get-flag mtune) ; do
+       for i in $(get-flag mcpu) $(get-flag mtune) $(get-flag march) ; do
                [[ ${i} = native ]] && i="host" # bug #273421
                myconf+=( --cpu=${i} )
                break



1.808                media-video/ffmpeg/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v
retrieving revision 1.807
retrieving revision 1.808
diff -u -r1.807 -r1.808
--- ChangeLog   4 Nov 2014 09:20:04 -0000       1.807
+++ ChangeLog   4 Nov 2014 09:48:43 -0000       1.808
@@ -1,6 +1,11 @@
 # ChangeLog for media-video/ffmpeg
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.807 
2014/11/04 09:20:04 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ChangeLog,v 1.808 
2014/11/04 09:48:43 aballier Exp $
+
+  04 Nov 2014; Alexis Ballier <[email protected]> ffmpeg-2.2.10.ebuild,
+  ffmpeg-2.4.3.ebuild, ffmpeg-9999.ebuild:
+  give preference to -mcpu then -mtune then -march for setting cpu, this should
+  match better the precision of the flags
 
   04 Nov 2014; Alexis Ballier <[email protected]> ffmpeg-2.2.10.ebuild,
   ffmpeg-2.4.3.ebuild, ffmpeg-9999.ebuild:



1.3                  media-video/ffmpeg/ffmpeg-2.2.10.ebuild

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

Index: ffmpeg-2.2.10.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-2.2.10.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ffmpeg-2.2.10.ebuild        4 Nov 2014 09:20:04 -0000       1.2
+++ ffmpeg-2.2.10.ebuild        4 Nov 2014 09:48:43 -0000       1.3
@@ -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/media-video/ffmpeg/ffmpeg-2.2.10.ebuild,v 
1.2 2014/11/04 09:20:04 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-2.2.10.ebuild,v 
1.3 2014/11/04 09:48:43 aballier Exp $
 
 EAPI="5"
 
@@ -289,7 +289,7 @@
        # We need to do this so that features of that CPU will be better used
        # If they contain an unknown CPU it will not hurt since ffmpeg's 
configure
        # will just ignore it.
-       for i in $(get-flag march) $(get-flag mcpu) $(get-flag mtune) ; do
+       for i in $(get-flag mcpu) $(get-flag mtune) $(get-flag march) ; do
                [[ ${i} = native ]] && i="host" # bug #273421
                myconf+=( --cpu=${i} )
                break




Reply via email to