Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: git.eclass
Date: Sun, 31 Jan 2010 10:14:02
Message-Id: E1NbWoY-0003pK-9c@stork.gentoo.org
1 scarabeus 10/01/31 10:13:58
2
3 Modified: git.eclass
4 Log:
5 Do the handling of not known eapi by depend and not by die.
6
7 Revision Changes Path
8 1.41 eclass/git.eclass
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/git.eclass?rev=1.41&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/git.eclass?rev=1.41&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/git.eclass?r1=1.40&r2=1.41
13
14 Index: git.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/git.eclass,v
17 retrieving revision 1.40
18 retrieving revision 1.41
19 diff -u -r1.40 -r1.41
20 --- git.eclass 31 Jan 2010 10:05:57 -0000 1.40
21 +++ git.eclass 31 Jan 2010 10:13:57 -0000 1.41
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2009 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/git.eclass,v 1.40 2010/01/31 10:05:57 scarabeus Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/git.eclass,v 1.41 2010/01/31 10:13:57 scarabeus Exp $
27
28 # @ECLASS: git.eclass
29 # @MAINTAINER:
30 @@ -22,7 +22,7 @@
31 case "${EAPI:-0}" in
32 3|2) EXPORTED_FUNCTIONS="${EXPORTED_FUNCTIONS} src_prepare" ;;
33 1|0) ;;
34 - *) die "Unknown EAPI, Bug eclass maintainers." ;;
35 + :) DEPEND="EAPI-UNSUPPORTED" ;;
36 esac
37 EXPORT_FUNCTIONS ${EXPORTED_FUNCTIONS}