Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: ChangeLog git-r3.eclass
Date: Mon, 28 Jul 2014 14:12:25
Message-Id: 20140728141222.687142004E@flycatcher.gentoo.org
1 mgorny 14/07/28 14:12:22
2
3 Modified: ChangeLog git-r3.eclass
4 Log:
5 Use ROOT=/ when checking for git features, bug #518374. Patch provided by Michael Haubenwallner.
6
7 Revision Changes Path
8 1.1326 eclass/ChangeLog
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1326&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1326&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1325&r2=1.1326
13
14 Index: ChangeLog
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
17 retrieving revision 1.1325
18 retrieving revision 1.1326
19 diff -u -r1.1325 -r1.1326
20 --- ChangeLog 25 Jul 2014 23:18:34 -0000 1.1325
21 +++ ChangeLog 28 Jul 2014 14:12:22 -0000 1.1326
22 @@ -1,6 +1,10 @@
23 # ChangeLog for eclass directory
24 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1325 2014/07/25 23:18:34 ottxor Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1326 2014/07/28 14:12:22 mgorny Exp $
27 +
28 + 28 Jul 2014; Michał Górny <mgorny@g.o> git-r3.eclass:
29 + Use ROOT=/ when checking for git features, bug #518374. Patch provided by
30 + Michael Haubenwallner.
31
32 25 Jul 2014; Christoph Junghans <ottxor@g.o> mercurial.eclass:
33 Added EHG_CHECKOUT_DIR to override checkout destination
34
35
36
37 1.46 eclass/git-r3.eclass
38
39 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-r3.eclass?rev=1.46&view=markup
40 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-r3.eclass?rev=1.46&content-type=text/plain
41 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-r3.eclass?r1=1.45&r2=1.46
42
43 Index: git-r3.eclass
44 ===================================================================
45 RCS file: /var/cvsroot/gentoo-x86/eclass/git-r3.eclass,v
46 retrieving revision 1.45
47 retrieving revision 1.46
48 diff -u -r1.45 -r1.46
49 --- git-r3.eclass 7 Jul 2014 14:41:56 -0000 1.45
50 +++ git-r3.eclass 28 Jul 2014 14:12:22 -0000 1.46
51 @@ -1,6 +1,6 @@
52 # Copyright 1999-2014 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 -# $Header: /var/cvsroot/gentoo-x86/eclass/git-r3.eclass,v 1.45 2014/07/07 14:41:56 mgorny Exp $
55 +# $Header: /var/cvsroot/gentoo-x86/eclass/git-r3.eclass,v 1.46 2014/07/28 14:12:22 mgorny Exp $
56
57 # @ECLASS: git-r3.eclass
58 # @MAINTAINER:
59 @@ -513,7 +513,7 @@
60 local fetch_command=( git fetch "${r}" )
61 local clone_type=${EGIT_CLONE_TYPE}
62
63 - if [[ ${r} == https://* ]] && ! has_version 'dev-vcs/git[curl]'; then
64 + if [[ ${r} == https://* ]] && ! ROOT=/ has_version 'dev-vcs/git[curl]'; then
65 eerror "git-r3: fetching from https:// requested. In order to support https,"
66 eerror "dev-vcs/git needs to be built with USE=curl. Example solution:"
67 eerror