Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: git.eclass
Date: Wed, 02 Feb 2011 19:27:03
Message-Id: 20110202192653.8977720054@flycatcher.gentoo.org
1 ulm 11/02/02 19:26:53
2
3 Modified: git.eclass
4 Log:
5 Remove superfluous "time" statement (with permission from scarabeus).
6 Fix typo in case statement.
7
8 Revision Changes Path
9 1.51 eclass/git.eclass
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git.eclass?rev=1.51&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git.eclass?rev=1.51&content-type=text/plain
13 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/git.eclass?r1=1.50&r2=1.51
14
15 Index: git.eclass
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/eclass/git.eclass,v
18 retrieving revision 1.50
19 retrieving revision 1.51
20 diff -u -r1.50 -r1.51
21 --- git.eclass 1 Feb 2011 14:22:02 -0000 1.50
22 +++ git.eclass 2 Feb 2011 19:26:53 -0000 1.51
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2009 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/eclass/git.eclass,v 1.50 2011/02/01 14:22:02 scarabeus Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/eclass/git.eclass,v 1.51 2011/02/02 19:26:53 ulm Exp $
28
29 # @ECLASS: git.eclass
30 # @MAINTAINER:
31 @@ -25,7 +25,7 @@
32 case "${EAPI:-0}" in
33 4|3|2) EXPORTED_FUNCTIONS="${EXPORTED_FUNCTIONS} src_prepare" ;;
34 1|0) ;;
35 - :) DEPEND="EAPI-UNSUPPORTED" ;;
36 + *) DEPEND="EAPI-UNSUPPORTED" ;;
37 esac
38 EXPORT_FUNCTIONS ${EXPORTED_FUNCTIONS}
39
40 @@ -359,7 +359,7 @@
41 if [[ -n ${EGIT_HAS_SUBMODULES} ]]; then
42 pushd "${GIT_DIR}" &> /dev/null
43 debug-print "rsync -rlpgo . \"${S}\""
44 - time rsync -rlpgo . "${S}"
45 + rsync -rlpgo . "${S}"
46 popd &> /dev/null
47 else
48 unset GIT_DIR