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: Sun, 02 Mar 2014 11:50:51
Message-Id: 20140302115048.862D32004C@flycatcher.gentoo.org
1 mgorny 14/03/02 11:50:48
2
3 Modified: ChangeLog git-r3.eclass
4 Log:
5 Clarify where EGIT_CLONE_TYPE and EGIT_MIN_CLONE_TYPE is supposed to be set.
6
7 Revision Changes Path
8 1.1163 eclass/ChangeLog
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1163&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?rev=1.1163&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/ChangeLog?r1=1.1162&r2=1.1163
13
14 Index: ChangeLog
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v
17 retrieving revision 1.1162
18 retrieving revision 1.1163
19 diff -u -r1.1162 -r1.1163
20 --- ChangeLog 2 Mar 2014 11:50:23 -0000 1.1162
21 +++ ChangeLog 2 Mar 2014 11:50:48 -0000 1.1163
22 @@ -1,6 +1,9 @@
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.1162 2014/03/02 11:50:23 mgorny Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1163 2014/03/02 11:50:48 mgorny Exp $
27 +
28 + 02 Mar 2014; Michał Górny <mgorny@g.o> git-r3.eclass:
29 + Clarify where EGIT_CLONE_TYPE and EGIT_MIN_CLONE_TYPE is supposed to be set.
30
31 02 Mar 2014; Michał Górny <mgorny@g.o> git-r3.eclass:
32 Do not try shallow clones on local repositories.
33
34
35
36 1.38 eclass/git-r3.eclass
37
38 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-r3.eclass?rev=1.38&view=markup
39 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-r3.eclass?rev=1.38&content-type=text/plain
40 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git-r3.eclass?r1=1.37&r2=1.38
41
42 Index: git-r3.eclass
43 ===================================================================
44 RCS file: /var/cvsroot/gentoo-x86/eclass/git-r3.eclass,v
45 retrieving revision 1.37
46 retrieving revision 1.38
47 diff -u -r1.37 -r1.38
48 --- git-r3.eclass 2 Mar 2014 11:50:23 -0000 1.37
49 +++ git-r3.eclass 2 Mar 2014 11:50:48 -0000 1.38
50 @@ -1,6 +1,6 @@
51 # Copyright 1999-2014 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 -# $Header: /var/cvsroot/gentoo-x86/eclass/git-r3.eclass,v 1.37 2014/03/02 11:50:23 mgorny Exp $
54 +# $Header: /var/cvsroot/gentoo-x86/eclass/git-r3.eclass,v 1.38 2014/03/02 11:50:48 mgorny Exp $
55
56 # @ECLASS: git-r3.eclass
57 # @MAINTAINER:
58 @@ -37,6 +37,9 @@
59 # Type of clone that should be used against the remote repository.
60 # This can be either of: 'mirror', 'single', 'shallow'.
61 #
62 +# This is intended to be set by user in make.conf. Ebuilds are supposed
63 +# to set EGIT_MIN_CLONE_TYPE if necessary instead.
64 +#
65 # The 'mirror' type clones all remote branches and tags with complete
66 # history and all notes. EGIT_COMMIT can specify any commit hash.
67 # Upstream-removed branches and tags are purged from the local clone
68 @@ -65,6 +68,9 @@
69 # later on the list) than EGIT_MIN_CLONE_TYPE, the eclass uses
70 # EGIT_MIN_CLONE_TYPE instead.
71 #
72 +# This variable is intended to be used by ebuilds only. Users are
73 +# supposed to set EGIT_CLONE_TYPE instead.
74 +#
75 # A common case is to use 'single' whenever the build system requires
76 # access to full branch history or the remote (Google Code) does not
77 # support shallow clones. Please use sparingly, and to fix fatal errors