Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: cvs.eclass autotools.eclass
Date: Sat, 21 Aug 2010 19:36:49
Message-Id: 20100821193645.7A2F02004E@flycatcher.gentoo.org
1 vapier 10/08/21 19:36:45
2
3 Modified: cvs.eclass autotools.eclass
4 Log:
5 update eclass documentation to use new markings and avoid warnings
6
7 Revision Changes Path
8 1.73 eclass/cvs.eclass
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/cvs.eclass?rev=1.73&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/cvs.eclass?rev=1.73&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/cvs.eclass?r1=1.72&r2=1.73
13
14 Index: cvs.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/cvs.eclass,v
17 retrieving revision 1.72
18 retrieving revision 1.73
19 diff -u -r1.72 -r1.73
20 --- cvs.eclass 21 Aug 2010 18:21:06 -0000 1.72
21 +++ cvs.eclass 21 Aug 2010 19:36:45 -0000 1.73
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2008 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/cvs.eclass,v 1.72 2010/08/21 18:21:06 vapier Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/cvs.eclass,v 1.73 2010/08/21 19:36:45 vapier Exp $
27
28 # @ECLASS: cvs.eclass
29 # @MAINTAINER:
30 @@ -35,6 +35,7 @@
31 # on the cvs connection. The default of "cvs -q -f -z4" means to be
32 # quiet, to disregard the ~/.cvsrc config file and to use maximum
33 # compression.
34 +[[ -z ${ECVS_CVS_COMMAND} ]] && ECVS_CVS_COMMAND="cvs ${ECVS_CVS_OPTIONS} ${ECVS_CVS_COMPRESS}"
35
36 # @ECLASS-VARIABLE: ECVS_CVS_COMPRESS
37 # @DESCRIPTION:
38 @@ -46,11 +47,6 @@
39 # Additional options to the cvs commands.
40 [[ -z ${ECVS_CVS_OPTIONS} ]] && ECVS_CVS_OPTIONS="-q -f"
41
42 -# @ECLASS-VARIABLE: ECVS_CVS_COMMAND
43 -# @DESCRIPTION:
44 -# The cvs command.
45 -[[ -z ${ECVS_CVS_COMMAND} ]] && ECVS_CVS_COMMAND="cvs ${ECVS_CVS_OPTIONS} ${ECVS_CVS_COMPRESS}"
46 -
47 # @ECLASS-VARIABLE: ECVS_UP_OPTS
48 # @DESCRIPTION:
49 # CVS options given after the cvs update command. Don't remove "-dP" or things
50 @@ -70,12 +66,14 @@
51 : ${ECVS_OFFLINE:=${ESCM_OFFLINE}}
52
53 # @ECLASS-VARIABLE: ECVS_LOCAL
54 +# @DEFAULT_UNSET
55 # @DESCRIPTION:
56 # If this is set, the CVS module will be fetched non-recursively.
57 # Refer to the information in the CVS man page regarding the -l
58 # command option (not the -l global option).
59
60 # @ECLASS-VARIABLE: ECVS_LOCALNAME
61 +# @DEFAULT_UNSET
62 # @DESCRIPTION:
63 # Local name of checkout directory
64 #
65 @@ -106,6 +104,7 @@
66 [ -z "$ECVS_SERVER" ] && ECVS_SERVER="offline"
67
68 # @ECLASS-VARIABLE: ECVS_MODULE
69 +# @REQUIRED
70 # @DESCRIPTION:
71 # The name of the CVS module to be fetched
72 #
73 @@ -115,6 +114,7 @@
74 #[ -z "$ECVS_MODULE" ] && die "$ECLASS: error: ECVS_MODULE not set, cannot continue"
75
76 # @ECLASS-VARIABLE: ECVS_BRANCH
77 +# @DEFAULT_UNSET
78 # @DESCRIPTION:
79 # The name of the branch/tag to use
80 #
81 @@ -151,6 +151,7 @@
82 [ -z "$ECVS_PASS" ] && ECVS_PASS=""
83
84 # @ECLASS-VARIABLE: ECVS_SSH_HOST_KEY
85 +# @DEFAULT_UNSET
86 # @DESCRIPTION:
87 # If SSH is used for `ext' authentication, use this variable to
88 # specify the host key of the remote server. The format of the value
89 @@ -160,11 +161,13 @@
90 # remote host key will not be verified.
91
92 # @ECLASS-VARIABLE: ECVS_CLEAN
93 +# @DEFAULT_UNSET
94 # @DESCRIPTION:
95 # Set this to get a clean copy when updating (passes the
96 # -C option to cvs update)
97
98 # @ECLASS-VARIABLE: ECVS_RUNAS
99 +# @DEFAULT_UNSET
100 # @DESCRIPTION:
101 # Specifies an alternate (non-root) user to use to run cvs. Currently
102 # b0rked and wouldn't work with portage userpriv anyway without
103
104
105
106 1.100 eclass/autotools.eclass
107
108 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools.eclass?rev=1.100&view=markup
109 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools.eclass?rev=1.100&content-type=text/plain
110 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/autotools.eclass?r1=1.99&r2=1.100
111
112 Index: autotools.eclass
113 ===================================================================
114 RCS file: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v
115 retrieving revision 1.99
116 retrieving revision 1.100
117 diff -u -r1.99 -r1.100
118 --- autotools.eclass 6 Jul 2010 18:55:50 -0000 1.99
119 +++ autotools.eclass 21 Aug 2010 19:36:45 -0000 1.100
120 @@ -1,6 +1,6 @@
121 # Copyright 1999-2010 Gentoo Foundation
122 # Distributed under the terms of the GNU General Public License v2
123 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.99 2010/07/06 18:55:50 vapier Exp $
124 +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.100 2010/08/21 19:36:45 vapier Exp $
125
126 # @ECLASS: autotools.eclass
127 # @MAINTAINER:
128 @@ -25,6 +25,7 @@
129 : ${WANT_AUTOMAKE:=latest}
130
131 # @ECLASS-VARIABLE: _LATEST_AUTOMAKE
132 +# @INTERNAL
133 # @DESCRIPTION:
134 # CONSTANT!
135 # The latest major version/slot of automake available on each arch.
136 @@ -74,11 +75,13 @@
137 unset _automake_atom _autoconf_atom
138
139 # @ECLASS-VARIABLE: AM_OPTS
140 +# @DEFAULT_UNSET
141 # @DESCRIPTION:
142 # Additional options to pass to automake during
143 # eautoreconf call.
144
145 # @ECLASS-VARIABLE: AT_NOELIBTOOLIZE
146 +# @DEFAULT_UNSET
147 # @DESCRIPTION:
148 # Don't run elibtoolize command if set to 'yes',
149 # useful when elibtoolize needs to be ran with