dev-qt/qtx11extras: stable 5.14.2 for ppc, bug #719732
[gentoo.git] / eclass / eutils.eclass
1 # Copyright 1999-2019 Gentoo Authors
2 # Distributed under the terms of the GNU General Public License v2
3
4 # @ECLASS: eutils.eclass
5 # @MAINTAINER:
6 # base-system@gentoo.org
7 # @BLURB: many extra (but common) functions that are used in ebuilds
8 # @DESCRIPTION:
9 # The eutils eclass contains a suite of functions that complement
10 # the ones that ebuild.sh already contain.  The idea is that the functions
11 # are not required in all ebuilds but enough utilize them to have a common
12 # home rather than having multiple ebuilds implementing the same thing.
13 #
14 # Due to the nature of this eclass, some functions may have maintainers
15 # different from the overall eclass!
16
17 if [[ -z ${_EUTILS_ECLASS} ]]; then
18 _EUTILS_ECLASS=1
19
20 # implicitly inherited (now split) eclasses
21 case ${EAPI:-0} in
22 0|1|2|3|4|5|6)
23         inherit desktop epatch estack ltprune multilib preserve-libs \
24                 toolchain-funcs vcs-clean
25         ;;
26 esac
27
28 # @FUNCTION: emktemp
29 # @USAGE: [temp dir]
30 # @DESCRIPTION:
31 # Cheap replacement for when debianutils (and thus mktemp)
32 # does not exist on the users system.
33 emktemp() {
34         local exe="touch"
35         [[ $1 == -d ]] && exe="mkdir" && shift
36         local topdir=$1
37
38         if [[ -z ${topdir} ]] ; then
39                 [[ -z ${T} ]] \
40                         && topdir="/tmp" \
41                         || topdir=${T}
42         fi
43
44         if ! type -P mktemp > /dev/null ; then
45                 # system lacks `mktemp` so we have to fake it
46                 local tmp=/
47                 while [[ -e ${tmp} ]] ; do
48                         tmp=${topdir}/tmp.${RANDOM}.${RANDOM}.${RANDOM}
49                 done
50                 ${exe} "${tmp}" || ${exe} -p "${tmp}"
51                 echo "${tmp}"
52         else
53                 # the args here will give slightly wierd names on BSD,
54                 # but should produce a usable file on all userlands
55                 if [[ ${exe} == "touch" ]] ; then
56                         TMPDIR="${topdir}" mktemp -t tmp.XXXXXXXXXX
57                 else
58                         TMPDIR="${topdir}" mktemp -dt tmp.XXXXXXXXXX
59                 fi
60         fi
61 }
62
63 # @FUNCTION: edos2unix
64 # @USAGE: <file> [more files ...]
65 # @DESCRIPTION:
66 # A handy replacement for dos2unix, recode, fixdos, etc...  This allows you
67 # to remove all of these text utilities from DEPEND variables because this
68 # is a script based solution.  Just give it a list of files to convert and
69 # they will all be changed from the DOS CRLF format to the UNIX LF format.
70 edos2unix() {
71         [[ $# -eq 0 ]] && return 0
72         sed -i 's/\r$//' -- "$@" || die
73 }
74
75 # @FUNCTION: strip-linguas
76 # @USAGE: [<allow LINGUAS>|<-i|-u> <directories of .po files>]
77 # @DESCRIPTION:
78 # Make sure that LINGUAS only contains languages that
79 # a package can support.  The first form allows you to
80 # specify a list of LINGUAS.  The -i builds a list of po
81 # files found in all the directories and uses the
82 # intersection of the lists.  The -u builds a list of po
83 # files found in all the directories and uses the union
84 # of the lists.
85 strip-linguas() {
86         local ls newls nols
87         if [[ $1 == "-i" ]] || [[ $1 == "-u" ]] ; then
88                 local op=$1; shift
89                 ls=$(find "$1" -name '*.po' -exec basename {} .po ';'); shift
90                 local d f
91                 for d in "$@" ; do
92                         if [[ ${op} == "-u" ]] ; then
93                                 newls=${ls}
94                         else
95                                 newls=""
96                         fi
97                         for f in $(find "$d" -name '*.po' -exec basename {} .po ';') ; do
98                                 if [[ ${op} == "-i" ]] ; then
99                                         has ${f} ${ls} && newls="${newls} ${f}"
100                                 else
101                                         has ${f} ${ls} || newls="${newls} ${f}"
102                                 fi
103                         done
104                         ls=${newls}
105                 done
106         else
107                 ls="$@"
108         fi
109
110         nols=""
111         newls=""
112         for f in ${LINGUAS} ; do
113                 if has ${f} ${ls} ; then
114                         newls="${newls} ${f}"
115                 else
116                         nols="${nols} ${f}"
117                 fi
118         done
119         [[ -n ${nols} ]] \
120                 && einfo "Sorry, but ${PN} does not support the LINGUAS:" ${nols}
121         export LINGUAS=${newls:1}
122 }
123
124 # @FUNCTION: make_wrapper
125 # @USAGE: <wrapper> <target> [chdir] [libpaths] [installpath]
126 # @DESCRIPTION:
127 # Create a shell wrapper script named wrapper in installpath
128 # (defaults to the bindir) to execute target (default of wrapper) by
129 # first optionally setting LD_LIBRARY_PATH to the colon-delimited
130 # libpaths followed by optionally changing directory to chdir.
131 make_wrapper() {
132         local wrapper=$1 bin=$2 chdir=$3 libdir=$4 path=$5
133         local tmpwrapper=$(emktemp)
134         has "${EAPI:-0}" 0 1 2 && local EPREFIX=""
135
136         (
137         echo '#!/bin/sh'
138         if [[ -n ${libdir} ]] ; then
139                 local var
140                 if [[ ${CHOST} == *-darwin* ]] ; then
141                         var=DYLD_LIBRARY_PATH
142                 else
143                         var=LD_LIBRARY_PATH
144                 fi
145                 cat <<-EOF
146                         if [ "\${${var}+set}" = "set" ] ; then
147                                 export ${var}="\${${var}}:${EPREFIX}${libdir}"
148                         else
149                                 export ${var}="${EPREFIX}${libdir}"
150                         fi
151                 EOF
152         fi
153         [[ -n ${chdir} ]] && printf 'cd "%s" &&\n' "${EPREFIX}${chdir}"
154         # We don't want to quote ${bin} so that people can pass complex
155         # things as ${bin} ... "./someprog --args"
156         printf 'exec %s "$@"\n' "${bin/#\//${EPREFIX}/}"
157         ) > "${tmpwrapper}"
158         chmod go+rx "${tmpwrapper}"
159
160         if [[ -n ${path} ]] ; then
161                 (
162                 exeopts -m 0755
163                 exeinto "${path}"
164                 newexe "${tmpwrapper}" "${wrapper}"
165                 ) || die
166         else
167                 newbin "${tmpwrapper}" "${wrapper}" || die
168         fi
169 }
170
171 path_exists() {
172         eerror "path_exists has been removed.  Please see the following post"
173         eerror "for a replacement snippet:"
174         eerror "https://blogs.gentoo.org/mgorny/2018/08/09/inlining-path_exists/"
175         die "path_exists is banned"
176 }
177
178 # @FUNCTION: use_if_iuse
179 # @USAGE: <flag>
180 # @DESCRIPTION:
181 # Return true if the given flag is in USE and IUSE.
182 #
183 # Note that this function should not be used in the global scope.
184 use_if_iuse() {
185         in_iuse $1 || return 1
186         use $1
187 }
188
189 # @FUNCTION: optfeature
190 # @USAGE: <short description> <package atom to match> [other atoms]
191 # @DESCRIPTION:
192 # Print out a message suggesting an optional package (or packages)
193 # not currently installed which provides the described functionality.
194 #
195 # The following snippet would suggest app-misc/foo for optional foo support,
196 # app-misc/bar or app-misc/baz[bar] for optional bar support
197 # and either both app-misc/a and app-misc/b or app-misc/c for alphabet support.
198 # @CODE
199 #       optfeature "foo support" app-misc/foo
200 #       optfeature "bar support" app-misc/bar app-misc/baz[bar]
201 #       optfeature "alphabet support" "app-misc/a app-misc/b" app-misc/c
202 # @CODE
203 optfeature() {
204         debug-print-function ${FUNCNAME} "$@"
205         local i j msg
206         local desc=$1
207         local flag=0
208         shift
209         for i; do
210                 for j in ${i}; do
211                         if has_version "${j}"; then
212                                 flag=1
213                         else
214                                 flag=0
215                                 break
216                         fi
217                 done
218                 if [[ ${flag} -eq 1 ]]; then
219                         break
220                 fi
221         done
222         if [[ ${flag} -eq 0 ]]; then
223                 for i; do
224                         msg=" "
225                         for j in ${i}; do
226                                 msg+=" ${j} and"
227                         done
228                         msg="${msg:0: -4} for ${desc}"
229                         elog "${msg}"
230                 done
231         fi
232 }
233
234 case ${EAPI:-0} in
235 0|1|2|3|4)
236
237 # @FUNCTION: usex
238 # @USAGE: <USE flag> [true output] [false output] [true suffix] [false suffix]
239 # @DESCRIPTION:
240 # Proxy to declare usex for package managers or EAPIs that do not provide it
241 # and use the package manager implementation when available (i.e. EAPI >= 5).
242 # If USE flag is set, echo [true output][true suffix] (defaults to "yes"),
243 # otherwise echo [false output][false suffix] (defaults to "no").
244 usex() { use "$1" && echo "${2-yes}$4" || echo "${3-no}$5" ; } #382963
245
246 ;;
247 esac
248
249 case ${EAPI:-0} in
250 0|1|2|3|4|5)
251
252 # @FUNCTION: einstalldocs
253 # @DESCRIPTION:
254 # Install documentation using DOCS and HTML_DOCS, in EAPIs that do not
255 # provide this function.  When available (i.e., in EAPI 6 or later),
256 # the package manager implementation should be used instead.
257 #
258 # If DOCS is declared and non-empty, all files listed in it are
259 # installed.  The files must exist, otherwise the function will fail.
260 # In EAPI 4 and 5, DOCS may specify directories as well; in earlier
261 # EAPIs using directories is unsupported.
262 #
263 # If DOCS is not declared, the files matching patterns given
264 # in the default EAPI implementation of src_install will be installed.
265 # If this is undesired, DOCS can be set to empty value to prevent any
266 # documentation from being installed.
267 #
268 # If HTML_DOCS is declared and non-empty, all files and/or directories
269 # listed in it are installed as HTML docs (using dohtml).
270 #
271 # Both DOCS and HTML_DOCS can either be an array or a whitespace-
272 # separated list. Whenever directories are allowed, '<directory>/.' may
273 # be specified in order to install all files within the directory
274 # without creating a sub-directory in docdir.
275 #
276 # Passing additional options to dodoc and dohtml is not supported.
277 # If you needed such a thing, you need to call those helpers explicitly.
278 einstalldocs() {
279         debug-print-function ${FUNCNAME} "${@}"
280
281         local dodoc_opts=-r
282         has ${EAPI} 0 1 2 3 && dodoc_opts=
283
284         if ! declare -p DOCS &>/dev/null ; then
285                 local d
286                 for d in README* ChangeLog AUTHORS NEWS TODO CHANGES \
287                                 THANKS BUGS FAQ CREDITS CHANGELOG ; do
288                         if [[ -s ${d} ]] ; then
289                                 dodoc "${d}" || die
290                         fi
291                 done
292         elif [[ $(declare -p DOCS) == "declare -a"* ]] ; then
293                 if [[ ${DOCS[@]} ]] ; then
294                         dodoc ${dodoc_opts} "${DOCS[@]}" || die
295                 fi
296         else
297                 if [[ ${DOCS} ]] ; then
298                         dodoc ${dodoc_opts} ${DOCS} || die
299                 fi
300         fi
301
302         if [[ $(declare -p HTML_DOCS 2>/dev/null) == "declare -a"* ]] ; then
303                 if [[ ${HTML_DOCS[@]} ]] ; then
304                         dohtml -r "${HTML_DOCS[@]}" || die
305                 fi
306         else
307                 if [[ ${HTML_DOCS} ]] ; then
308                         dohtml -r ${HTML_DOCS} || die
309                 fi
310         fi
311
312         return 0
313 }
314
315 # @FUNCTION: in_iuse
316 # @USAGE: <flag>
317 # @DESCRIPTION:
318 # Determines whether the given flag is in IUSE.  Strips IUSE default
319 # prefixes as necessary.  In EAPIs where it is available (i.e., EAPI 6
320 # or later), the package manager implementation should be used instead.
321 #
322 # Note that this function must not be used in the global scope.
323 in_iuse() {
324         debug-print-function ${FUNCNAME} "${@}"
325         [[ ${#} -eq 1 ]] || die "Invalid args to ${FUNCNAME}()"
326
327         local flag=${1}
328         local liuse=( ${IUSE} )
329
330         has "${flag}" "${liuse[@]#[+-]}"
331 }
332
333 ;;
334 esac
335
336 case ${EAPI:-0} in
337 0|1|2|3|4|5|6)
338
339 # @FUNCTION: eqawarn
340 # @USAGE: [message]
341 # @DESCRIPTION:
342 # Proxy to ewarn for package managers that don't provide eqawarn and use the PM
343 # implementation if available. Reuses PORTAGE_ELOG_CLASSES as set by the dev
344 # profile.
345 if ! declare -F eqawarn >/dev/null ; then
346         eqawarn() {
347                 has qa ${PORTAGE_ELOG_CLASSES} && ewarn "$@"
348                 :
349         }
350 fi
351
352 ;;
353 esac
354
355 fi