scons-utils.eclass: Deprecate use_scons, ban it in EAPI 6
[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         set -- scons ${SCONSOPTS-$(scons_clean_makeopts)} ${EXTRA_ESCONS} \
128                 "${@}"
129         echo "${@}" >&2
130         "${@}"
131         ret=${?}
132
133         if [[ ${ret} -ne 0 ]]; then
134                 case "${EAPI:-0}" in
135                         0|1|2|3) # nonfatal in EAPIs 0 through 3
136                                 ;;
137                         4|5) # 100% fatal in 4 & 5
138                                 die "escons failed."
139                                 ;;
140                         *) # respect nonfatal in 6 onwards
141                                 die -n "escons failed."
142                                 ;;
143                 esac
144         fi
145         return ${ret}
146 }
147
148 # @FUNCTION: scons_clean_makeopts
149 # @USAGE: [makeflags] [...]
150 # @DESCRIPTION:
151 # Strip the supplied makeflags (or ${MAKEOPTS} if called without
152 # an argument) of options not supported by SCons and make sure --jobs
153 # gets an argument. Output the resulting flag list (suitable
154 # for an assignment to SCONSOPTS).
155 scons_clean_makeopts() {
156         local new_makeopts
157
158         debug-print-function ${FUNCNAME} "${@}"
159
160         if [[ ${#} -eq 0 ]]; then
161                 debug-print "Using MAKEOPTS: [${MAKEOPTS}]"
162                 set -- ${MAKEOPTS}
163         else
164                 # unquote if necessary
165                 set -- ${*}
166         fi
167
168         # empty MAKEOPTS give out empty SCONSOPTS
169         # thus, we do need to worry about the initial setup
170         if [[ ${*} = ${_SCONS_CACHE_MAKEOPTS} ]]; then
171                 set -- ${_SCONS_CACHE_SCONSOPTS}
172                 debug-print "Cache hit: [${*}]"
173                 echo ${*}
174                 return
175         fi
176         export _SCONS_CACHE_MAKEOPTS=${*}
177
178         while [[ ${#} -gt 0 ]]; do
179                 case ${1} in
180                         # clean, simple to check -- we like that
181                         --jobs=*|--keep-going)
182                                 new_makeopts=${new_makeopts+${new_makeopts} }${1}
183                                 ;;
184                         # need to take a look at the next arg and guess
185                         --jobs)
186                                 if [[ ${#} -gt 1 && ${2} =~ ^[0-9]+$ ]]; then
187                                         new_makeopts="${new_makeopts+${new_makeopts} }${1} ${2}"
188                                         shift
189                                 else
190                                         # no value means no limit, let's pass a random int
191                                         new_makeopts=${new_makeopts+${new_makeopts} }${1}=5
192                                 fi
193                                 ;;
194                         # strip other long options
195                         --*)
196                                 ;;
197                         # short option hell
198                         -*)
199                                 local str new_optstr
200                                 new_optstr=
201                                 str=${1#-}
202
203                                 while [[ -n ${str} ]]; do
204                                         case ${str} in
205                                                 k*)
206                                                         new_optstr=${new_optstr}k
207                                                         ;;
208                                                 # -j needs to come last
209                                                 j)
210                                                         if [[ ${#} -gt 1 && ${2} =~ ^[0-9]+$ ]]; then
211                                                                 new_optstr="${new_optstr}j ${2}"
212                                                                 shift
213                                                         else
214                                                                 new_optstr="${new_optstr}j 5"
215                                                         fi
216                                                         ;;
217                                                 # otherwise, everything after -j is treated as an arg
218                                                 j*)
219                                                         new_optstr=${new_optstr}${str}
220                                                         break
221                                                         ;;
222                                         esac
223                                         str=${str#?}
224                                 done
225
226                                 if [[ -n ${new_optstr} ]]; then
227                                         new_makeopts=${new_makeopts+${new_makeopts} }-${new_optstr}
228                                 fi
229                                 ;;
230                 esac
231                 shift
232         done
233
234         set -- ${new_makeopts}
235         export _SCONS_CACHE_SCONSOPTS=${*}
236         debug-print "New SCONSOPTS: [${*}]"
237         echo ${*}
238 }
239
240 # @FUNCTION: use_scons
241 # @USAGE: <use-flag> [var-name] [var-opt-true] [var-opt-false]
242 # @DESCRIPTION:
243 # DEPRECATED, EAPI 0..5 ONLY: use usex instead
244 #
245 # Output a SCons parameter with value depending on the USE flag state.
246 # If the USE flag is set, output <var-name>=<var-opt-true>; otherwise
247 # <var-name>=<var-opt-false>.
248 #
249 # If <var-name> is omitted, <use-flag> will be used instead. However,
250 # if <use-flag> starts with an exclamation mark (!flag), 'no' will be
251 # prepended to the name (e.g. noflag).
252 #
253 # If <var-opt-true> and/or <var-opt-false> are omitted,
254 # ${USE_SCONS_TRUE} and/or ${USE_SCONS_FALSE} will be used instead.
255 use_scons() {
256         [[ ${EAPI} == [012345] ]] \
257                 || die "${FUNCNAME} is banned in EAPI ${EAPI}, use usex instead"
258
259         local flag=${1}
260         local varname=${2:-${flag/\!/no}}
261         local vartrue=${3:-${USE_SCONS_TRUE}}
262         local varfalse=${4:-${USE_SCONS_FALSE}}
263
264         debug-print-function ${FUNCNAME} "${@}"
265
266         if [[ ${#} -eq 0 ]]; then
267                 eerror "Usage: scons-use <use-flag> [var-name] [var-opt-true] [var-opt-false]"
268                 die 'scons-use(): not enough arguments'
269         fi
270
271         if use "${flag}"; then
272                 echo "${varname}=${vartrue}"
273         else
274                 echo "${varname}=${varfalse}"
275         fi
276 }