Gentoo Archives: gentoo-commits

From: "Devan Franchini (twitch153)" <twitch153@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-emulation/dolphin: dolphin-3.5.ebuild ChangeLog
Date: Tue, 27 Aug 2013 01:29:16
Message-Id: 20130827012910.29F672004C@flycatcher.gentoo.org
1 twitch153 13/08/27 01:29:10
2
3 Modified: dolphin-3.5.ebuild ChangeLog
4 Log:
5 dolphin-3.5.ebuild: Adds check for binary package to prevent unnecessary checking of gcc-version
6
7 (Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key )
8
9 Revision Changes Path
10 1.5 games-emulation/dolphin/dolphin-3.5.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild?r1=1.4&r2=1.5
15
16 Index: dolphin-3.5.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- dolphin-3.5.ebuild 26 Aug 2013 18:09:23 -0000 1.4
23 +++ dolphin-3.5.ebuild 27 Aug 2013 01:29:10 -0000 1.5
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2013 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild,v 1.4 2013/08/26 18:09:23 twitch153 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/dolphin-3.5.ebuild,v 1.5 2013/08/27 01:29:10 twitch153 Exp $
29
30 EAPI=5
31
32 @@ -50,9 +50,11 @@
33 local ver=4.6.0
34 local msg="${PN} needs at least GCC ${ver} set to compile."
35
36 - if ! version_is_at_least ${ver} $(gcc-fullversion); then
37 - eerror ${msg}
38 - die ${msg}
39 + if [[ ${MERGE_TYPE} != binary ]]; then
40 + if ! version_is_at_least ${ver} $(gcc-fullversion); then
41 + eerror ${msg}
42 + die ${msg}
43 + fi
44 fi
45 }
46
47
48
49
50 1.5 games-emulation/dolphin/ChangeLog
51
52 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/ChangeLog?rev=1.5&view=markup
53 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/ChangeLog?rev=1.5&content-type=text/plain
54 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/dolphin/ChangeLog?r1=1.4&r2=1.5
55
56 Index: ChangeLog
57 ===================================================================
58 RCS file: /var/cvsroot/gentoo-x86/games-emulation/dolphin/ChangeLog,v
59 retrieving revision 1.4
60 retrieving revision 1.5
61 diff -u -r1.4 -r1.5
62 --- ChangeLog 26 Aug 2013 18:09:23 -0000 1.4
63 +++ ChangeLog 27 Aug 2013 01:29:10 -0000 1.5
64 @@ -1,6 +1,10 @@
65 # ChangeLog for games-emulation/dolphin
66 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
67 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/ChangeLog,v 1.4 2013/08/26 18:09:23 twitch153 Exp $
68 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/dolphin/ChangeLog,v 1.5 2013/08/27 01:29:10 twitch153 Exp $
69 +
70 + 27 Aug 2013; Devan Franchini <twitch153@g.o> dolphin-3.5.ebuild:
71 + dolphin-3.5.ebuild: Adds check for binary package to prevent unnecessary
72 + checking of gcc-version
73
74 26 Aug 2013; Devan Franchini <twitch153@g.o> dolphin-3.5.ebuild,
75 dolphin-9999.ebuild: