scons-utils.eclass: _scons_clean_makeopts, fix result caching
[gentoo.git] / eclass / scons-utils.eclass
1 # Copyright 1999-2015 Gentoo Foundation
2 # Distributed under the terms of the GNU General Public License v2
3 # $Id$
4
5 # @ECLASS: scons-utils.eclass
6 # @MAINTAINER:
7 # mgorny@gentoo.org
8 # @BLURB: helper functions to deal with SCons buildsystem
9 # @DESCRIPTION:
10 # This eclass provides a set of function to help developers sanely call
11 # dev-util/scons and pass parameters to it.
12 #
13 # Please note that SCons is more like a 'build system creation kit',
14 # and requires a lot of upstream customization to be used sanely.
15 # You will often need to request fixes upstream and/or patch the build
16 # system. In particular:
17 #
18 # 1. There are no 'standard' variables. To respect CC, CXX, CFLAGS,
19 # CXXFLAGS, CPPFLAGS, LDFLAGS, upstream needs to define appropriate
20 # variables explicitly. In some cases, upstreams respect envvars,
21 # in others you need to pass them as options.
22 #
23 # 2. SCons scrubs out environment by default and replaces it with some
24 # pre-defined values. To respect environment variables such as PATH,
25 # Upstreams need to explicitly get them from os.environ and copy them
26 # to the build environment.
27 #
28 # @EXAMPLE:
29 # @CODE
30 # inherit scons-utils toolchain-funcs
31 #
32 # EAPI=5
33 #
34 # src_configure() {
35 #       MYSCONS=(
36 #               CC="$(tc-getCC)"
37 #               ENABLE_NLS=$(usex nls)
38 #       )
39 # }
40 #
41 # src_compile() {
42 #       escons "${MYSCONS[@]}"
43 # }
44 #
45 # src_install() {
46 #       # note: this can be DESTDIR, INSTALL_ROOT, ... depending on package
47 #       escons "${MYSCONS[@]}" DESTDIR="${D}" install
48 # }
49 # @CODE
50
51 # -- public variables --
52
53 # @ECLASS-VARIABLE: SCONS_MIN_VERSION
54 # @DEFAULT_UNSET
55 # @DESCRIPTION:
56 # The minimal version of SCons required for the build to work.
57
58 # @VARIABLE: myesconsargs
59 # @DEFAULT_UNSET
60 # @DESCRIPTION:
61 # DEPRECATED, EAPI 0..5 ONLY: pass options to escons instead
62 #
63 # List of package-specific options to pass to all SCons calls. Supposed to be
64 # set in src_configure().
65
66 # @ECLASS-VARIABLE: SCONSOPTS
67 # @DEFAULT_UNSET
68 # @DESCRIPTION:
69 # The default set of options to pass to scons. Similar to MAKEOPTS,
70 # supposed to be set in make.conf. If unset, escons() will use cleaned
71 # up MAKEOPTS instead.
72
73 # @ECLASS-VARIABLE: EXTRA_ESCONS
74 # @DEFAULT_UNSET
75 # @DESCRIPTION:
76 # The additional parameters to pass to SCons whenever escons() is used.
77 # Much like EXTRA_EMAKE, this is not supposed to be used in make.conf
78 # and not in ebuilds!
79
80 # @ECLASS-VARIABLE: USE_SCONS_TRUE
81 # @DESCRIPTION:
82 # DEPRECATED: use usex instead
83 #
84 # The default value for truth in scons-use() (1 by default).
85 : ${USE_SCONS_TRUE:=1}
86
87 # @ECLASS-VARIABLE: USE_SCONS_FALSE
88 # @DESCRIPTION:
89 # DEPRECATED: use usex instead
90 #
91 # The default value for false in scons-use() (0 by default).
92 : ${USE_SCONS_FALSE:=0}
93
94 # -- EAPI support check --
95
96 case ${EAPI:-0} in
97         0|1|2|3|4|5) ;;
98         *) die "EAPI ${EAPI} unsupported."
99 esac
100
101 # -- ebuild variables setup --
102
103 if [[ -n ${SCONS_MIN_VERSION} ]]; then
104         DEPEND=">=dev-util/scons-${SCONS_MIN_VERSION}"
105 else
106         DEPEND="dev-util/scons"
107 fi
108
109 # -- public functions --
110
111 # @FUNCTION: escons
112 # @USAGE: [<args>...]
113 # @DESCRIPTION:
114 # Call scons, passing the supplied arguments. Like emake, this function
115 # does die on failure in EAPI 4. Respects nonfatal in EAPI 6 and newer.
116 escons() {
117         local ret
118
119         debug-print-function ${FUNCNAME} "${@}"
120
121         # Use myesconsargs in EAPI 5 and older
122         if [[ ${EAPI} == [012345] ]]; then
123                 set -- "${myesconsargs[@]}" "${@}"
124         fi
125
126         # if SCONSOPTS are _unset_, use cleaned MAKEOPTS
127         if [[ ! ${SCONSOPTS+set} ]]; then
128                 local SCONSOPTS
129                 _scons_clean_makeopts
130         fi
131
132         set -- scons ${SCONSOPTS} ${EXTRA_ESCONS} "${@}"
133         echo "${@}" >&2
134         "${@}"
135         ret=${?}
136
137         if [[ ${ret} -ne 0 ]]; then
138                 case "${EAPI:-0}" in
139                         0|1|2|3) # nonfatal in EAPIs 0 through 3
140                                 ;;
141                         4|5) # 100% fatal in 4 & 5
142                                 die "escons failed."
143                                 ;;
144                         *) # respect nonfatal in 6 onwards
145                                 die -n "escons failed."
146                                 ;;
147                 esac
148         fi
149         return ${ret}
150 }
151
152 # @FUNCTION: _scons_clean_makeopts
153 # @INTERNAL
154 # @USAGE: [makeflags] [...]
155 # @DESCRIPTION:
156 # Strip the supplied makeflags (or ${MAKEOPTS} if called without
157 # an argument) of options not supported by SCons and make sure --jobs
158 # gets an argument. Output the resulting flag list (suitable
159 # for an assignment to SCONSOPTS).
160 _scons_clean_makeopts() {
161         local new_makeopts
162
163         debug-print-function ${FUNCNAME} "${@}"
164
165         if [[ ${#} -eq 0 ]]; then
166                 debug-print "Using MAKEOPTS: [${MAKEOPTS}]"
167                 set -- ${MAKEOPTS}
168         else
169                 # unquote if necessary
170                 set -- ${*}
171         fi
172
173         # empty MAKEOPTS give out empty SCONSOPTS
174         # thus, we do need to worry about the initial setup
175         if [[ ${*} = ${_SCONS_CACHE_MAKEOPTS} ]]; then
176                 SCONSOPTS=${_SCONS_CACHE_SCONSOPTS}
177                 debug-print "Cache hit: [${SCONSOPTS}]"
178                 return
179         fi
180         export _SCONS_CACHE_MAKEOPTS=${*}
181
182         while [[ ${#} -gt 0 ]]; do
183                 case ${1} in
184                         # clean, simple to check -- we like that
185                         --jobs=*|--keep-going)
186                                 new_makeopts=${new_makeopts+${new_makeopts} }${1}
187                                 ;;
188                         # need to take a look at the next arg and guess
189                         --jobs)
190                                 if [[ ${#} -gt 1 && ${2} =~ ^[0-9]+$ ]]; then
191                                         new_makeopts="${new_makeopts+${new_makeopts} }${1} ${2}"
192                                         shift
193                                 else
194                                         # no value means no limit, let's pass a random int
195                                         new_makeopts=${new_makeopts+${new_makeopts} }${1}=5
196                                 fi
197                                 ;;
198                         # strip other long options
199                         --*)
200                                 ;;
201                         # short option hell
202                         -*)
203                                 local str new_optstr
204                                 new_optstr=
205                                 str=${1#-}
206
207                                 while [[ -n ${str} ]]; do
208                                         case ${str} in
209                                                 k*)
210                                                         new_optstr=${new_optstr}k
211                                                         ;;
212                                                 # -j needs to come last
213                                                 j)
214                                                         if [[ ${#} -gt 1 && ${2} =~ ^[0-9]+$ ]]; then
215                                                                 new_optstr="${new_optstr}j ${2}"
216                                                                 shift
217                                                         else
218                                                                 new_optstr="${new_optstr}j 5"
219                                                         fi
220                                                         ;;
221                                                 # otherwise, everything after -j is treated as an arg
222                                                 j*)
223                                                         new_optstr=${new_optstr}${str}
224                                                         break
225                                                         ;;
226                                         esac
227                                         str=${str#?}
228                                 done
229
230                                 if [[ -n ${new_optstr} ]]; then
231                                         new_makeopts=${new_makeopts+${new_makeopts} }-${new_optstr}
232                                 fi
233                                 ;;
234                 esac
235                 shift
236         done
237
238         set -- ${new_makeopts}
239         export _SCONS_CACHE_SCONSOPTS=${*}
240         debug-print "New SCONSOPTS: [${*}]"
241         SCONSOPTS=${*}
242 }
243
244 # @FUNCTION: use_scons
245 # @USAGE: <use-flag> [var-name] [var-opt-true] [var-opt-false]
246 # @DESCRIPTION:
247 # DEPRECATED, EAPI 0..5 ONLY: use usex instead
248 #
249 # Output a SCons parameter with value depending on the USE flag state.
250 # If the USE flag is set, output <var-name>=<var-opt-true>; otherwise
251 # <var-name>=<var-opt-false>.
252 #
253 # If <var-name> is omitted, <use-flag> will be used instead. However,
254 # if <use-flag> starts with an exclamation mark (!flag), 'no' will be
255 # prepended to the name (e.g. noflag).
256 #
257 # If <var-opt-true> and/or <var-opt-false> are omitted,
258 # ${USE_SCONS_TRUE} and/or ${USE_SCONS_FALSE} will be used instead.
259 use_scons() {
260         [[ ${EAPI} == [012345] ]] \
261                 || die "${FUNCNAME} is banned in EAPI ${EAPI}, use usex instead"
262
263         local flag=${1}
264         local varname=${2:-${flag/\!/no}}
265         local vartrue=${3:-${USE_SCONS_TRUE}}
266         local varfalse=${4:-${USE_SCONS_FALSE}}
267
268         debug-print-function ${FUNCNAME} "${@}"
269
270         if [[ ${#} -eq 0 ]]; then
271                 eerror "Usage: scons-use <use-flag> [var-name] [var-opt-true] [var-opt-false]"
272                 die 'scons-use(): not enough arguments'
273         fi
274
275         if use "${flag}"; then
276                 echo "${varname}=${vartrue}"
277         else
278                 echo "${varname}=${varfalse}"
279         fi
280 }