public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in games-emulation/dolphin: dolphin-3.5.ebuild ChangeLog
@ 2013-08-27  1:29 Devan Franchini (twitch153)
  0 siblings, 0 replies; 4+ messages in thread
From: Devan Franchini (twitch153) @ 2013-08-27  1:29 UTC (permalink / raw
  To: gentoo-commits

twitch153    13/08/27 01:29:10

  Modified:             dolphin-3.5.ebuild ChangeLog
  Log:
  dolphin-3.5.ebuild: Adds check for binary package to prevent unnecessary checking of gcc-version
  
  (Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key )

Revision  Changes    Path
1.5                  games-emulation/dolphin/dolphin-3.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild?r1=1.4&r2=1.5

Index: dolphin-3.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- dolphin-3.5.ebuild	26 Aug 2013 18:09:23 -0000	1.4
+++ dolphin-3.5.ebuild	27 Aug 2013 01:29:10 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild,v 1.4 2013/08/26 18:09:23 twitch153 Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild,v 1.5 2013/08/27 01:29:10 twitch153 Exp $
 
 EAPI=5
 
@@ -50,9 +50,11 @@
 	local ver=4.6.0
 	local msg="${PN} needs at least GCC ${ver} set to compile."
 
-	if ! version_is_at_least ${ver} $(gcc-fullversion); then
-		eerror ${msg}
-		die ${msg}
+	if [[ ${MERGE_TYPE} != binary ]]; then
+		if ! version_is_at_least ${ver} $(gcc-fullversion); then
+			eerror ${msg}
+			die ${msg}
+		fi
 	fi
 }
 



1.5                  games-emulation/dolphin/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/ChangeLog?r1=1.4&r2=1.5

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/dolphin/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog	26 Aug 2013 18:09:23 -0000	1.4
+++ ChangeLog	27 Aug 2013 01:29:10 -0000	1.5
@@ -1,6 +1,10 @@
 # ChangeLog for games-emulation/dolphin
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/ChangeLog,v 1.4 2013/08/26 18:09:23 twitch153 Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/ChangeLog,v 1.5 2013/08/27 01:29:10 twitch153 Exp $
+
+  27 Aug 2013; Devan Franchini <twitch153@gentoo.org> dolphin-3.5.ebuild:
+  dolphin-3.5.ebuild: Adds check for binary package to prevent unnecessary
+  checking of gcc-version
 
   26 Aug 2013; Devan Franchini <twitch153@gentoo.org> dolphin-3.5.ebuild,
   dolphin-9999.ebuild:





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-emulation/dolphin: dolphin-3.5.ebuild ChangeLog
@ 2013-08-31 23:24 Devan Franchini (twitch153)
  0 siblings, 0 replies; 4+ messages in thread
From: Devan Franchini (twitch153) @ 2013-08-31 23:24 UTC (permalink / raw
  To: gentoo-commits

twitch153    13/08/31 23:24:19

  Modified:             dolphin-3.5.ebuild ChangeLog
  Log:
  dolphin-3.5.ebuild: Added check to apply gcc-4.8.patch to all variants of gcc 4.8.*
  
  (Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key )

Revision  Changes    Path
1.6                  games-emulation/dolphin/dolphin-3.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild?r1=1.5&r2=1.6

Index: dolphin-3.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- dolphin-3.5.ebuild	27 Aug 2013 01:29:10 -0000	1.5
+++ dolphin-3.5.ebuild	31 Aug 2013 23:24:19 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild,v 1.5 2013/08/27 01:29:10 twitch153 Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild,v 1.6 2013/08/31 23:24:19 twitch153 Exp $
 
 EAPI=5
 
@@ -60,7 +60,7 @@
 
 src_prepare() {
 
-	if has_version "=sys-devel/gcc-4.8.0"; then
+	if has_version ">=sys-devel/gcc-4.8.0" || has_version"<=sys-devel/gcc-4.9.0"; then
 		epatch "${FILESDIR}"/${PN}-emu-${PV}-gcc-4.8.patch
 	fi
 



1.7                  games-emulation/dolphin/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/ChangeLog?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/ChangeLog?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/ChangeLog?r1=1.6&r2=1.7

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/dolphin/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog	27 Aug 2013 01:33:09 -0000	1.6
+++ ChangeLog	31 Aug 2013 23:24:19 -0000	1.7
@@ -1,6 +1,10 @@
 # ChangeLog for games-emulation/dolphin
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/ChangeLog,v 1.6 2013/08/27 01:33:09 twitch153 Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/ChangeLog,v 1.7 2013/08/31 23:24:19 twitch153 Exp $
+
+  31 Aug 2013; Devan Franchini <twitch153@gentoo.org> dolphin-3.5.ebuild:
+  dolphin-3.5.ebuild: Added check to apply gcc-4.8.patch to all variants of gcc
+  4.8.*
 
   27 Aug 2013; Devan Franchini <twitch153@gentoo.org> dolphin-9999.ebuild:
   dolphin-9999.ebuild: Adds check for merge type to prevent unnecessary checking





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-emulation/dolphin: dolphin-3.5.ebuild ChangeLog
@ 2013-09-01  0:39 Devan Franchini (twitch153)
  0 siblings, 0 replies; 4+ messages in thread
From: Devan Franchini (twitch153) @ 2013-09-01  0:39 UTC (permalink / raw
  To: gentoo-commits

twitch153    13/09/01 00:39:04

  Modified:             dolphin-3.5.ebuild ChangeLog
  Log:
  Replaces has_version checking of gcc version for more suited use of the gcc-version command to check the current gcc version being used to compile the program
  
  (Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key )

Revision  Changes    Path
1.7                  games-emulation/dolphin/dolphin-3.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild?r1=1.6&r2=1.7

Index: dolphin-3.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- dolphin-3.5.ebuild	31 Aug 2013 23:24:19 -0000	1.6
+++ dolphin-3.5.ebuild	1 Sep 2013 00:39:04 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild,v 1.6 2013/08/31 23:24:19 twitch153 Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild,v 1.7 2013/09/01 00:39:04 twitch153 Exp $
 
 EAPI=5
 
@@ -60,11 +60,10 @@
 
 src_prepare() {
 
-	if has_version ">=sys-devel/gcc-4.8.0" || has_version"<=sys-devel/gcc-4.9.0"; then
+	if [[ $(gcc-version) = "4.8" ]]; then
 		epatch "${FILESDIR}"/${PN}-emu-${PV}-gcc-4.8.patch
-	fi
+	fi 
 
-	# Remove automatic dependencies to prevent building without flags enabled.
 	if use !alsa; then
 		sed -i -e '/^include(FindALSA/d' CMakeLists.txt || die
 	fi



1.8                  games-emulation/dolphin/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/ChangeLog?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/ChangeLog?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/ChangeLog?r1=1.7&r2=1.8

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/dolphin/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	31 Aug 2013 23:24:19 -0000	1.7
+++ ChangeLog	1 Sep 2013 00:39:04 -0000	1.8
@@ -1,6 +1,11 @@
 # ChangeLog for games-emulation/dolphin
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/ChangeLog,v 1.7 2013/08/31 23:24:19 twitch153 Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/ChangeLog,v 1.8 2013/09/01 00:39:04 twitch153 Exp $
+
+  01 Sep 2013; Devan Franchini <twitch153@gentoo.org> dolphin-3.5.ebuild:
+  Replaces has_version checking of gcc version for more suited use of the gcc-
+  version command to check the current gcc version being used to compile the
+  program
 
   31 Aug 2013; Devan Franchini <twitch153@gentoo.org> dolphin-3.5.ebuild:
   dolphin-3.5.ebuild: Added check to apply gcc-4.8.patch to all variants of gcc





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in games-emulation/dolphin: dolphin-3.5.ebuild ChangeLog
@ 2013-09-01  9:09 Patrick Lauer (patrick)
  0 siblings, 0 replies; 4+ messages in thread
From: Patrick Lauer (patrick) @ 2013-09-01  9:09 UTC (permalink / raw
  To: gentoo-commits

patrick     13/09/01 09:09:05

  Modified:             dolphin-3.5.ebuild ChangeLog
  Log:
  Whitespace
  
  (Portage version: 2.2.1/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.8                  games-emulation/dolphin/dolphin-3.5.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild?r1=1.7&r2=1.8

Index: dolphin-3.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- dolphin-3.5.ebuild	1 Sep 2013 00:39:04 -0000	1.7
+++ dolphin-3.5.ebuild	1 Sep 2013 09:09:05 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild,v 1.7 2013/09/01 00:39:04 twitch153 Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild,v 1.8 2013/09/01 09:09:05 patrick Exp $
 
 EAPI=5
 
@@ -62,7 +62,7 @@
 
 	if [[ $(gcc-version) = "4.8" ]]; then
 		epatch "${FILESDIR}"/${PN}-emu-${PV}-gcc-4.8.patch
-	fi 
+	fi
 
 	if use !alsa; then
 		sed -i -e '/^include(FindALSA/d' CMakeLists.txt || die



1.9                  games-emulation/dolphin/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/ChangeLog?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/ChangeLog?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/ChangeLog?r1=1.8&r2=1.9

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/games-emulation/dolphin/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog	1 Sep 2013 00:39:04 -0000	1.8
+++ ChangeLog	1 Sep 2013 09:09:05 -0000	1.9
@@ -1,6 +1,9 @@
 # ChangeLog for games-emulation/dolphin
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/ChangeLog,v 1.8 2013/09/01 00:39:04 twitch153 Exp $
+# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/ChangeLog,v 1.9 2013/09/01 09:09:05 patrick Exp $
+
+  01 Sep 2013; Patrick Lauer <patrick@gentoo.org> dolphin-3.5.ebuild:
+  Whitespace
 
   01 Sep 2013; Devan Franchini <twitch153@gentoo.org> dolphin-3.5.ebuild:
   Replaces has_version checking of gcc version for more suited use of the gcc-





^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-09-01  9:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-27  1:29 [gentoo-commits] gentoo-x86 commit in games-emulation/dolphin: dolphin-3.5.ebuild ChangeLog Devan Franchini (twitch153)
  -- strict thread matches above, loose matches on Subject: below --
2013-08-31 23:24 Devan Franchini (twitch153)
2013-09-01  0:39 Devan Franchini (twitch153)
2013-09-01  9:09 Patrick Lauer (patrick)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox