]> git.pld-linux.org Git - packages/rpm-build-macros.git/blob - rpm.macros
61da454de3e65552aade7bb90b90dca3585fd503
[packages/rpm-build-macros.git] / rpm.macros
1 # vim:ts=4 sw=4 noet ft=spec
2 #
3 # PLD Linux rpm macros.
4 # <http://www.pld-linux.org/>
5
6 # can be used by builder script to check for version
7 %rpm_build_macros       {Revision}
8
9 %epoch          0
10 %x8664          x86_64 amd64 ia32e
11 %arm            armv3l armv4b armv4l armv5teb armv5tel
12
13 # kernel compiler
14 %kgcc           %{__cc}
15 %kgcc_package   gcc
16
17 # compiler version
18 %cc_version     %{expand:%%global cc_version %(%{__cc} -dumpversion 2>/dev/null || echo 0.0)}%cc_version
19 %cxx_version    %{expand:%%global cxx_version %(%{__cxx} -dumpversion 2>/dev/null || echo 0.0)}%cxx_version
20
21 %__rm           /bin/rm --interactive=never
22
23 # Build system path macros.
24 %__autoconf     autoconf %{?debug:-Wall}
25 %__automake     automake -a -c -f --foreign
26 %__autopoint    autopoint --force
27
28 # add parallel build flags: -jN
29 # jobs macro is available since 1.657
30 #
31 # if you want to disable parallel build do:
32 # echo '%__jobs %{nil}' >> ~/.rpmmacros
33 %__jobs         %{expand:%%global __jobs %(_NCPUS=$(/usr/bin/getconf _NPROCESSORS_ONLN); [ "$_NCPUS" -gt 2 ] && echo $(($_NCPUS / 2)))}%__jobs
34
35 # expands to -jN if %__jobs has a value
36 %_smp_mflags    %{expand:%%global _smp_mflags %(jobs=%{__jobs}; echo ${jobs:+-j$jobs}%%{nil})}%_smp_mflags
37
38 %__make         /usr/bin/make %{?_smp_mflags}
39 %__scons        /usr/bin/scons %{?_smp_mflags}
40 %__waf          /usr/bin/waf %{?_smp_mflags}
41 %__cmake        /usr/bin/cmake
42
43 %__gettextize { \
44         if grep -qs 'AM_GNU_GETTEXT.*external' configure.{ac,in} ; then \
45                 gettextize --copy --force --no-changelog; \
46         else \
47                 gettextize --copy --force --no-changelog --intl; \
48         fi; \
49         if [ ! -f po/Makevars ]; then \
50                 cp -f po/Makevars{.template,}; \
51         fi; \
52 }
53
54 %__glib_gettextize      glib-gettextize --copy --force
55 %__gnome_doc_common     gnome-doc-common --copy
56 %__gnome_doc_prepare    gnome-doc-prepare --copy --force
57 %__gtkdocize            gtkdocize --copy
58 %__intltoolize          intltoolize --copy --force
59 %__libtoolize           libtoolize --copy --force --install
60
61 # topdir is where builder script lives,
62 # fallback to old style if SPECS/SOURCES dirs were found.
63 %_topdir    %{expand:%%global _topdir %(
64         if [ -d SPECS -a -d SOURCES ]; then
65                 # old style rpmdir: in topdir
66                 pwd
67         elif [ -d ../SPECS -a -d ../SOURCES ]; then
68                 # old style rpmdir: in subdir
69                 cd ..; pwd
70         elif [ -d $HOME/rpm/SPECS -a -d $HOME/rpm/SOURCES ]; then \
71                 # if old style rpm dir exist, go with it
72                 echo $HOME/rpm; \
73         elif [ -x ../builder -a ! -d ../builder ]; then
74                 # relative new style rpmdir: in package dir
75                 cd ..; pwd
76         elif [ -x builder -a ! -d builder ]; then
77                 # relative new style rpmdir: in packages
78                 pwd
79         elif [ -x packages/builder -a ! -d packages/builder ]; then
80                 # relative new style rpmdir: packages dir in current dir
81                 cd packages; pwd
82         else
83                 # fallback to new style rpmdir
84                 echo $HOME/rpm/packages
85         fi; \
86 )}%_topdir
87
88 # if %{_topdir}/SPECS exists, it's old style structure
89 %_specdir       %{expand:%%global _specdir %([ ! -d %{_topdir}/SPECS ] && echo %{_topdir}/%{name} || echo %{_topdir}/SPECS)}%_specdir
90 %_sourcedir             %{expand:%%global _sourcedir %([ ! -d %{_topdir}/SOURCES ] && echo %{_specdir} || echo %{_topdir}/SOURCES)}%_sourcedir
91
92 # BUILD/RPMS/SRPMS are one same level by default as packages dir, if these exist
93 # if they don't exist assume we are having custom topdir (which is not named as
94 # "packages", i.e ~/rpm/kde/{kdelibs,BUILD/RPMS/SRPMS})
95 # NOTE: readlink fails if some parent dir is not readable (/home/services/builder for example can't read /home/services), therfore the extra echo
96 %_builddir              %{expand:%%global _builddir %(if [ -d %{_topdir}/BUILD ]; then echo %{_topdir}/BUILD; else readlink -m %{_topdir}/../BUILD || echo %{_topdir}/../BUILD; fi)}%_builddir
97 %_rpmdir                %{expand:%%global _rpmdir %(if [ -d %{_topdir}/RPMS ]; then echo %{_topdir}/RPMS; else readlink -m %{_topdir}/../RPMS || echo readlink -m %{_topdir}/../RPMS; fi)}%_rpmdir
98 %_srcrpmdir             %{expand:%%global _srcrpmdir %(if [ -d %{_topdir}/SRPMS ]; then echo %{_topdir}/SRPMS; else readlink -m %{_topdir}/../SRPMS || echo readlink -m %{_topdir}/../SRPMS; fi)}%_srcrpmdir
99
100 #       The number of cvs changelog entries kept when building package.
101 %_buildchangelogtruncate 20
102
103 %dependencytracking     %{nil}
104
105 #       Relations between package names that cause dependency loops
106 #       with legacy packages that cannot be fixed. Relations are
107 #       specified as
108 #               p>q
109 #       where package p has a Requires: on something that package q Provides:
110 #
111 # XXX   Note: that there cannot be any whitespace within the string "p>q",
112 #       and that both p and q are package names (i.e. no version/release).
113 %_dependency_whiteout   %{nil}
114
115 #-----------------------------------------------------------------
116 #
117 # (re)definition of %{rpm*flags} with %filterout_* support
118 # BuildRequires:        awk
119 # BuildRequires:        rpmbuild(macros) >= 1.315
120 #
121 # Flags specified in %filterout_* are removed from %rpm*flags, exactly:
122 # %rpmcflags    = %optflags - %filterout - %filterout_c   - %filterout_ld
123 # %rpmcxxflags  = %optflags - %filterout - %filterout_cxx - %filterout_ld
124 # %rpmcppflags  = %optcppflags - %filterout - %filterout_cpp - %filterout_ld
125 # %rpmldflags   = %optldflags - %filterout_ld
126 #
127 # Regular expressions are supported, but to avoid some character be treated
128 # as regular expression it must be escaped twice.
129
130 %filter_out                                             \
131         for (i = 1; i in I; i++) {      A=0;    \
132                 for (f in F) {                          \
133                         if (I[i] ~ "^" F[f] "$") A=1;   \
134                 };                                                      \
135                 if (!A) printf(I[i] FS);        \
136         }
137
138 %rpmcflags %(awk 'BEGIN {
139         split("%{?debug:%debugcflags}%{!?debug:%optflags}%{?debuginfocflags}",I);
140         split("%{?filterout} %{?filterout_c} %{?filterout_ld}",F);
141         %{filter_out}
142 }')
143
144 %rpmcxxflags %(awk 'BEGIN {
145         split("%{?debug:%debugcflags}%{!?debug:%optflags}%{?debuginfocflags}",I);
146         split("%{?filterout} %{?filterout_cxx} %{?filterout_ld}",F);
147         %{filter_out}
148 }')
149
150 %rpmcppflags %(awk 'BEGIN {
151         split("%{?debug:%debugcppflags}%{!?debug:%optcppflags}%{?debuginfocppflags}",I);
152         split("%{?filterout} %{?filterout_cpp} %{?filterout_cpp}",F);
153         %{filter_out}
154 }')
155
156 %rpmldflags %(awk 'BEGIN {
157         split("%{?optldflags}",I);
158         split("%{?filterout_ld}",F)
159         %{filter_out}
160 }')
161
162 # rpmldflags with stripped -Wl, -- in the form flags have to be passed to 'ld'
163 # but, don't use it, better use gcc as linker
164 %ld_rpmldflags %(awk 'BEGIN {
165         split("%{rpmldflags}",F);
166         for (f in F) {
167                 s = F[f];
168                 if (s ~ /^-Wl,/) {
169                         s = substr(s,5);
170                         gsub(/,/," ",s);
171                 };
172                 printf(s FS);
173         };
174 }')
175
176 #-----------------------------------------------------------------
177 #
178 #  Generate a command which cleans environment, leaving only the
179 # most important variables.
180 #  If any spec requires any additional environment it should
181 # redefine %_preserve_env in following manner:
182 #
183 #       # ADDITIONAL_VAR is required because [a good reason here]
184 #       %define _preserve_env ADDITIONAL_VAR
185
186 %_preserve_env_base     PATH HOME TMP TMPDIR SSH_AUTH_SOCK
187
188 # "env -i" must end in first line of expaned macros because it's used as first line of shell script (#! env...)
189 %_clean_env             %{!?_preserve_env:%global _preserve_env %{nil}}%{expand:%%global _preserve_env %{_preserve_env} %_preserve_env_base} env -i %(awk -vq="'" -vqq="\\"'\\"" -vq2q="'\\"'" 'BEGIN {
190         split("%{?_preserve_env}", P);
191         for (i in P) {
192                 p = P[i];
193                 if (!ENVIRON[p] || d[p]) {
194                         continue;
195                 }
196                 d[p] = 1;
197                 split(ENVIRON[p], V, "");
198                 val = p "=";
199                 for (j = 1; j in V; j++) {
200                         v = V[j];
201                         if (v == q)
202                                 v = qq;
203                         else if (v == "\\"")
204                                 v = q2q;
205                         else if (v == "\\\\")
206                                 v = "\\\\\\\\";
207                         else
208                                 gsub("[^a-zA-Z0-9/:._-]", "\\"&\\"", v);
209                         val = val "" v;
210                 }
211                 printf(val " ");
212         }
213 }')
214
215 #-----------------------------------------------------------------
216 %configure2_13 { \
217  if [ -n "$LINGUAS" ]; then unset LINGUAS; fi; \
218  LDFLAGS="${LDFLAGS:-%rpmldflags}" ; export LDFLAGS ; \
219  CFLAGS="${CFLAGS:-%rpmcflags}" ; export CFLAGS ; \
220  CXXFLAGS="${CXXFLAGS:-%rpmcxxflags}" ; export CXXFLAGS ; \
221  FFLAGS="${FFLAGS:-%rpmcflags}" ; export FFLAGS ; \
222  FCFLAGS="${FCFLAGS:-%rpmcflags}" ; export FCFLAGS ; \
223  CPPFLAGS="${CPPFLAGS:-%rpmcppflags}" ; export CPPFLAGS ; \
224  %{?__cc:CC="%{__cc}" ; export CC ; } \
225  %{?__cxx:CXX="%{__cxx}" ; export CXX ; } \
226  %{?configuredir:%{configuredir}}%{!?configuredir:.}/configure \
227         --host=%{_target_platform} \
228         --prefix=%{_prefix} \
229         --exec-prefix=%{_exec_prefix} \
230         --bindir=%{_bindir} \
231         --sbindir=%{_sbindir} \
232         --sysconfdir=%{_sysconfdir} \
233         --datadir=%{_datadir} \
234         --includedir=%{_includedir} \
235         --libdir=%{_libdir} \
236         --libexecdir=%{_libexecdir} \
237         --localstatedir=%{_localstatedir} \
238         --sharedstatedir=%{_sharedstatedir} \
239         --mandir=%{_mandir} \
240         --infodir=%{_infodir} \
241         --x-libraries=%{?_x_libraries}%{!?_x_libraries:%{_libdir}} \
242         %{dependencytracking} \
243 }
244
245 %cmake \
246 %{?__cc:CC="%{__cc}"} \\\
247 %{?__cxx:CXX="%{__cxx}"} \\\
248 CPPFLAGS="${CPPFLAGS:-%{rpmcppflags}}" \\\
249 %{__cmake} \\\
250         -DCMAKE_VERBOSE_MAKEFILE=ON \\\
251         -DCMAKE_BUILD_TYPE=%{!?debug:PLD}%{?debug:Debug} \\\
252         -DCMAKE_INSTALL_LIBDIR:PATH=%{_libdir} \\\
253         -DCMAKE_INSTALL_PREFIX:PATH=%{_prefix} \\\
254         -DINCLUDE_INSTALL_DIR:PATH=%{_includedir} \\\
255         -DLIB_INSTALL_DIR:PATH=%{_libdir} \\\
256         -DSHARE_INSTALL_PREFIX:PATH=%{_datadir} \\\
257         -DSYSCONF_INSTALL_DIR:PATH=%{_sysconfdir} \\\
258         -DCMAKE_CXX_FLAGS_PLD="${CXXFLAGS:-%{rpmcxxflags} -DNDEBUG}" \\\
259         -DCMAKE_C_FLAGS_PLD="${CFLAGS:-%{rpmcflags} -DNDEBUG}" \\\
260         -DCMAKE_Fortran_FLAGS_PLD="${CFLAGS:-%{rpmcflags} -DNDEBUG}" \\\
261         -DCMAKE_EXE_LINKER_FLAGS_PLD="${LDFLAGS:-%{rpmldflags}}" \\\
262         -DCMAKE_SHARED_LINKER_FLAGS_PLD="${LDFLAGS:-%{rpmldflags}}" \\\
263         -DCMAKE_MODULE_LINKER_FLAGS_PLD="${LDFLAGS:-%{rpmldflags}}" \\\
264 %if "%{_lib}" == "lib64" \
265         -DLIB_SUFFIX=64 \\\
266 %endif \
267         -DBUILD_SHARED_LIBS:BOOL=ON \\\
268 %{nil}
269
270 %scons { \
271 %{__scons} \
272         LDFLAGS="${LDFLAGS:-%rpmldflags}" \
273         CFLAGS="${CFLAGS:-%rpmcflags}" \
274         CXXFLAGS="${CXXFLAGS:-%rpmcxxflags}" \
275         FFLAGS="${FFLAGS:-%rpmcflags}" \
276         CPPFLAGS="${CPPFLAGS:-%rpmcppflags}" \
277         %{?__cc:CC="%{__cc}"} \
278         %{?__cxx:CXX="%{__cxx}"} \
279         libsuffix=%{_lib} \
280         prefix=%{_prefix} \
281 }
282
283 # waf. see waf.spec
284 %waf { \
285 CC="%{__cc}" \
286 CXX="%{__cxx}" \
287 CPP="%{__cpp}" \
288 CFLAGS="%{rpmcflags}" \
289 CXXFLAGS="%{rpmcxxflags}" \
290 %{__waf} \
291 }
292
293 #----------------------------------------------------------------
294 #%configure_cache 0
295 %configure_cache_file   %{buildroot}.configure.cache
296
297 %configure {./configure \
298         LDFLAGS="${LDFLAGS:-%rpmldflags}" \
299         CFLAGS="${CFLAGS:-%rpmcflags}" \
300         CXXFLAGS="${CXXFLAGS:-%rpmcxxflags}" \
301         FFLAGS="${FFLAGS:-%rpmcflags}" \
302         FCFLAGS="${FCFLAGS:-%rpmcflags}" \
303         CPPFLAGS="${CPPFLAGS:-%rpmcppflags}" \
304         %{?__cc:CC="%{__cc}"} \
305         %{?__cxx:CXX="%{__cxx}"} \
306         --host=%{_target_platform} \
307         --build=%{_target_platform} \
308         --prefix=%{_prefix} \
309         --exec-prefix=%{_exec_prefix} \
310         --bindir=%{_bindir} \
311         --sbindir=%{_sbindir} \
312         --sysconfdir=%{_sysconfdir} \
313         --datadir=%{_datadir} \
314         --includedir=%{_includedir} \
315         --libdir=%{_libdir} \
316         --libexecdir=%{_libexecdir} \
317         --localstatedir=%{_localstatedir} \
318         --sharedstatedir=%{_sharedstatedir} \
319         --mandir=%{_mandir} \
320         --infodir=%{_infodir} \
321         --x-libraries=%{?_x_libraries}%{!?_x_libraries:%{_libdir}} \
322         %{dependencytracking} \
323         %{?configure_cache:--cache-file=%{configure_cache_file}} \
324 }
325
326 # Simple macros to simplify adding bconded options to configure scripts.
327 #   Each macro requires bcond name and accepts optional option name, if option
328 # isn't specified bcond name is used as option name. Options returning
329 # --with and --enable also allow third argument which will be added as value
330 # ( --with-option=value or --enable-option=value ) in case or positive
331 # condition, but won't be added otherwise ( nothing or just --disable-option ).
332
333 # Requirements:
334 # BuildRequires: rpmbuild(macros) >= 1.527
335
336 # Usage example:
337 # %{__enable bcond} - returns --enable-bcond iff build condition is set
338 # %{__disable bcond option} - returns --enable-option iff bcond is not set
339 # %{__enable_disable bcond option value} - returns --enable-option=value if
340 #    bcond is set, returns --disable-option otherwise
341
342 # expand bconds to --enable-something and --disable-something
343 %__enable() %{expand:%%{?with_%{1}:--enable-%{?2}%{!?2:%{1}}%{?3:=%{3}}}}
344 %__disable() %{expand:%%{!?with_%{1}:--disable-%{?2}%{!?2:%{1}}}}
345 %__enable_disable() %{expand:%%{?with_%{1}:--enable-%{?2}%{!?2:%{1}}%{?3:=%{3}}}%%{!?with_%{1}:--disable-%{?2}%{!?2:%{1}}}}
346
347 # same as above, but condition inverted
348 %__enable_unless() %{expand:%%{!?with_%{1}:--enable-%{?2}%{!?2:%{1}}%{?3:=%{3}}}}
349 %__disable_if() %{expand:%%{?with_%{1}:--disable-%{?2}%{!?2:%{1}}}}
350 %__enable_disable_not() %{expand:%%{!?with_%{1}:--enable-%{?2}%{!?2:%{1}}%{?3:=%{3}}}%%{?with_%{1}:--disable-%{?2}%{!?2:%{1}}}}
351
352 # expand bconds to --with-something and --without-something
353 %__with() %{expand:%%{?with_%{1}:--with-%{?2}%{!?2:%{1}}%{?3:=%{3}}}}
354 %__without() %{expand:%%{!?with_%{1}:--without-%{?2}%{!?2:%{1}}}}
355 %__with_without() %{expand:%%{?with_%{1}:--with-%{?2}%{!?2:%{1}}%{?3:=%{3}}}%%{!?with_%{1}:--without-%{?2}%{!?2:%{1}}}}
356
357 # same as above, but condition inverted
358 %__with_unless() %{expand:%%{!?with_%{1}:--with-%{?2}%{!?2:%{1}}%{?3:=%{3}}}}
359 %__without_if() %{expand:%%{?with_%{1}:--without-%{?2}%{!?2:%{1}}}}
360 %__with_without_not() %{expand:%%{!?with_%{1}:--with-%{?2}%{!?2:%{1}}%{?3:=%{3}}}%%{?with_%{1}:--without-%{?2}%{!?2:%{1}}}}
361
362 #-----------------------------------------------------------------
363
364 # overload to insert debuginfo package
365 %prep \
366 %if 0%{?_enable_debug_packages}\
367 %{debug_package}\
368 %endif\
369 %%prep\
370 %{nil}
371
372 # Location of autoconf macros
373 %_aclocaldir    %{expand:%%global _aclocaldir %(aclocal --print-ac-dir 2>/dev/null || echo ERROR)}%_aclocaldir
374
375 # Location of omf files
376 %_omf_dest_dir  %{expand:%%global _omf_dest_dir %(scrollkeeper-config --omfdir || echo ERROR)}%_omf_dest_dir
377
378 # Location of pkgconfig files
379 %_pkgconfigdir  /usr/%{_lib}/pkgconfig
380 # noarch pkgconfig files
381 %_npkgconfigdir /usr/share/pkgconfig
382
383 # Location of desktop files
384 %_desktopdir    /usr/share/applications
385 %_applnkdir     ERROR:_applnkdir_is_obsolete_use_desktopdir_instead
386
387 # Location of pixmaps for applnk/desktop files
388 %_pixmapsdir    /usr/share/pixmaps
389
390 # Location of themable icons for applnk/desktop files
391 %_iconsdir      /usr/share/icons
392
393 # Location of fonts directories
394 %_fontsdir      /usr/share/fonts
395
396 # Location of Gtk and associated libraries documentation
397 %_gtkdocdir     %{_defaultdocdir}/gtk-doc/html
398
399 # Location of KDE documentation
400 %_kdedocdir     %{_defaultdocdir}/kde/HTML
401
402 # unsermake script
403 %__unsermake /usr/share/unsermake/unsermake
404
405 # Current date
406 %date           %(LC_ALL=C date +"%a %b %d %Y")
407
408 # Example files, programs, scripts...
409 %_examplesdir   /usr/src/examples
410
411 # Alternative kernel type/version
412 %_alt_kernel    %{nil}%{?alt_kernel:-%{?alt_kernel}}
413
414 # The directory holding Linux kernel sources
415 %_kernelsrcdir  /usr/src/linux%{_alt_kernel}
416
417 # SysV-style initscripts dir
418 %_initddir              /etc/rc.d/init.d
419
420 # If non-empty "debug" macro defined, add "dbg" suffix to release number
421 %_rpmfilename           %%{NAME}-%%{VERSION}-%%{RELEASE}%{?debug:dbg}.%%{ARCH}.rpm
422
423 # Bootstrap release macros.
424 # Usage:
425 #       %bcond_with     bootstrap
426 #       Release:        %{bootstrap_release 1}
427 #
428 # Package will have release 1 if built normally,
429 # and release 0.zzz.bootstrap if built with bootstrap
430 %bootstrap_release() %{!?with_bootstrap:%{1}%{?2:.%{2}}}%{?with_bootstrap:%{!?2:%(expr %{1} - 1)}%{?2:%{1}.%(expr %{2} - 1)}.zzz.bootstrap}
431
432 # -n drm to generate kernel%{_alt_kernel}-drm dependency
433 %releq_kernel(n:)               %{expand:%%global releq_kernel %(R=$(cd %{_kernelsrcdir} 2>/dev/null && LC_ALL=C rpm -q --qf '%{N}%{?-n:-%{-n*}} = %|E?{%{E}:}|%{V}-%{R}' -f include/linux/version.h 2>/dev/null | grep -v 'is not' | sed -e 's:-headers::;s:-config::'); echo ${R:-ERROR})}%releq_kernel
434 %releq_kernel_up(n:)    %{expand:%%global releq_kernel_up %(R=$(cd %{_kernelsrcdir} 2>/dev/null && LC_ALL=C rpm -q --qf '%{N}%{?-n:-%{-n*}}-up = %|E?{%{E}:}|%{V}-%{R}' -f include/linux/version.h 2>/dev/null | grep -v 'is not' | sed -e 's:-headers::;s:-config::'); echo ${R:-ERROR})}%releq_kernel_up
435 %releq_kernel_smp(n:)   %{expand:%%global releq_kernel_smp %(R=$(cd %{_kernelsrcdir} 2>/dev/null && LC_ALL=C rpm -q --qf '%{N}%{?-n:-%{-n*}}-smp = %|E?{%{E}:}|%{V}-%{R}' -f include/linux/version.h 2>/dev/null | grep -v 'is not' | sed -e 's:-headers::;s:-config::'); echo ${R:-ERROR})}%releq_kernel_smp
436
437 # -s post to generate Requires(post) dependency
438 %requires_releq_kernel(s:n:)            Requires%{-s:(%{-s*})}: %releq_kernel
439 %requires_releq_kernel_up(s:n:)         Requires%{-s:(%{-s*})}: %releq_kernel_up
440 %requires_releq_kernel_smp(s:n:)        Requires%{-s:(%{-s*})}: %releq_kernel_smp
441
442 # Requires name = version-release
443 %requires_releq()       %{!?1:ERROR}%{?2:ERROR}%{?1:%{!?2:%{expand:%%requires_eq_to -r %1 %1}}}
444 # Requires: name = version
445 %requires_eq()          %{!?1:ERROR}%{?2:ERROR}%{?1:%{!?2:%{expand:%%requires_eq_to %1 %1}}}
446 # Requires: name = version (version based on querying package %2)
447 %requires_eq_to(r)      %{!?2:ERROR}%{?3:ERROR}%{?2:%{!?3:%(if ! LC_ALL=C rpm -q --qf 'Requires: %1 = %|E?{%{E}:}|%{V}%{?-r:-%{R}}\\n' %2 | grep '^Requires:'; then echo "BuildRequires: %2"; fi)}}
448
449 # Requires: name >= version
450 %requires_ge()          %{!?1:ERROR}%{?2:ERROR}%{?1:%{!?2:%{expand:%%requires_ge_to %1 %1}}}
451 # Requires: name >= version (version based on querying package %2)
452 %requires_ge_to(r)      %{!?2:ERROR}%{?3:ERROR}%{?2:%{!?3:%(if ! LC_ALL=C rpm -q --qf 'Requires: %1 >= %|E?{%{E}:}|%{V}%{?-r:-%{R}}\\n' %2 | grep '^Requires:'; then echo "BuildRequires: %2"; fi)}}
453
454 # \helper for renaming packages
455 # %rename old-package
456 %rename() \
457 Obsoletes: %{1} < %{?epoch:%{epoch}:}%{?version:%{version}}%{?release:-%{release}} \
458 Provides: %{1} = %{?epoch:%{epoch}:}%{?version:%{version}}%{?release:-%{release}} 
459
460 %apache_modules_api %{expand:%%global apache_modules_api %(awk '/#define MODULE_MAGIC_NUMBER_MAJOR/ {print $3}' /usr/include/apache/ap_mmn.h 2>/dev/null || echo ERROR)}%apache_modules_api
461
462 # kernel version-release handling
463 %__kernel_ver    %{expand:%%global __kernel_ver %( \\
464         Z=$([ -f '%{_kernelsrcdir}/include/generated/utsrelease.h' ] && awk -F'"' '/UTS_RELEASE/{print $2}' %{_kernelsrcdir}/include/{linux/version,generated/utsrelease}.h 2>/dev/null || awk -F'"' '/UTS_RELEASE/{print $2}' %{_kernelsrcdir}/include/linux/{version,utsrelease}.h 2>/dev/null); \\
465         Z=${Z:-$(awk -F' = ' '/^VERSION/{v=$2} /^PATCHLEVEL/{p=$2} /^SUBLEVEL/{s=$2} /^EXTRAVERSION/{e=$2} END {printf("%d.%d.%d%s", v, p, s, e)}' %{_kernelsrcdir}/Makefile 2>/dev/null)}; \\
466         echo ${Z:-ERROR}; \\
467 )}%__kernel_ver
468
469 %__kernel_rel   %{expand:%%global __kernel_rel %(Z=$(cd %{_kernelsrcdir} 2>/dev/null && LC_ALL=C rpm -qf include/linux/fs.h 2>/dev/null --qf "%{R}" | grep -v "is not"); echo ${Z:-ERROR})}%__kernel_rel
470 %__kernel_rpmvr %{expand:%%global __kernel_rpmvr %(Z=$(cd %{_kernelsrcdir} 2>/dev/null && LC_ALL=C rpm -qf include/linux/fs.h 2>/dev/null --qf "%{V}-%{R}" | grep -v "is not"); echo ${Z:-ERROR})}%__kernel_rpmvr
471 %_kernel_ver    %{expand:%%global _kernel_ver %{__kernel_ver}%{?with_dist_kernel:%(echo %{__kernel_ver} | grep -q -e - || echo -%{__kernel_rel})}}%_kernel_ver
472 %_kernel_ver_str %{expand:%%global _kernel_ver_str %(echo %{!?_without_dist_kernel:%{__kernel_rpmvr}}%{?_without_dist_kernel:%{__kernel_ver}} | sed -e 's/-/_/g')}%_kernel_ver_str
473
474 # `uname -r` to be used in @release field
475 %_kernel_vermagic       %{expand:%%global _kernel_vermagic %(echo %{_kernel_ver} | sed -e 's/-/_/g')}%_kernel_vermagic
476
477 # sgml macros
478 %xmlcat_add()           /usr/bin/xmlcatalog --noout --add nextCatalog \"\" %1 /etc/xml/catalog ;
479 %xmlcat_del()           /usr/bin/xmlcatalog --noout --del %1 /etc/xml/catalog ;
480 %xmlcat_add_rewrite     /usr/bin/xmlcatalog --noout --add rewriteSystem
481 %xmlcat_create()        /usr/bin/xmlcatalog --noout --create %1 ;
482 %sgmlcat_add()          /usr/bin/install-catalog --add %1 %2 > /dev/null ;
483 %sgmlcat_del()          /usr/bin/install-catalog --remove %1 %2 > /dev/null ;
484 %docbook_sgmlcat_fix() { for l in \
485 '' \
486 '  -- default decl --' \
487 'DTDDECL "-//OASIS//DTD DocBook XML V%2//EN" "../../xml.dcl"' \
488 '  -- hacks for opensp --' \
489 'SYSTEM "file://%{_datadir}/sgml/docbook/xml-dtd-%2/docbookx.dtd" "%{_datadir}/sgml/docbook/xml-dtd-%2/docbookx.dtd"' \
490 'SYSTEM "http://www.oasis-open.org/docbook/xml/%2/docbookx.dtd"                  "%{_datadir}/sgml/docbook/xml-dtd-%2/docbookx.dtd"' \
491 '' \
492 ; do echo $l; done >> %1 \
493 }
494
495 # vim - "
496
497 # minimum file size needed for compressed documents.
498 # just smaller files than this get larger when compressed.
499 # some stats:
500 # - 0 byte file compressed was 25 bytes .gz
501 # - 39 byte file was compressed as 57
502 # - with test/test.spec@man 158 byte file was compressed also 158
503 %_min_compress_bytes    159
504
505 #-----------------------------------------------------------------
506 # find and gzip all files in %{_mandir} and %{infodir}
507 #
508 # Requires: xargs, find
509 #
510 #%no_install_post_compress_docs 1
511 %__spec_install_post_compress_docs { \
512 %{!?no_install_post_compress_docs:__spec_install_post_compress_docs() { \
513         %{!?debug:set +x;} \
514         for i in /usr/share/man /usr/X11R6/man; do \
515                 if [ -d "$RPM_BUILD_ROOT$i" ]; then \
516                         echo "Compress man pages: $i"; \
517                         find "$RPM_BUILD_ROOT$i" -name '*.bz2' -print | xargs -r %{__bzip2} -df; \
518                         find "$RPM_BUILD_ROOT$i" -name '*.gz' -print | xargs -r %{__gzip} -dnf; \
519                         find $RPM_BUILD_ROOT$i -type l | while read a; do \
520                                 m=$(readlink "$a"); \
521                                 if [[ "$m" = */* ]]; then \
522                                         # handle links to different man section \
523                                         l=$(readlink -f "$a"); \
524                                         # full/relative paths that resolve symlink \
525                                         l=${l#$RPM_BUILD_ROOT/usr/share/man/}; \
526                                         l=${l#$RPM_BUILD_ROOT/usr/X11R6/man/}; \
527                                         # full paths that do not resolve symlink \
528                                         l=${l#/usr/share/man/}; \
529                                         l=${l#/usr/X11R6/man/}; \
530                                 else \
531                                         l=${a#$RPM_BUILD_ROOT$i/}; \
532                                         l=${l%/*}; \
533                                         l="$l/$m"; \
534                                 fi; \
535                                 rm -f $a; \
536                                 echo ".so $l" > $a; \
537                                 echo >&2 "Converted ${a#$RPM_BUILD_ROOT} from symlink to man link: $l"; \
538                         done; \
539                         # verify that .so links point to existing files (not allowed to point to "other package") \
540                         # TODO: iterate over all man dirs, but in Th there is only one true man dir \
541                         err=$(grep -rl '^\.so ' "$RPM_BUILD_ROOT$i" | while read doc; do \
542                                 l=$(cat "$doc"); \
543                                 l=${l#.so }; \
544                                 d=$(dirname $doc); \
545                                 test -e $RPM_BUILD_ROOT$i/$l || test -e $d/$l || echo "  ${doc#$RPM_BUILD_ROOT} points to inexistent manpage: $l"; \
546                         done); \
547                         test "$err" != "" && { echo >&2 "Man page link errors:"; echo >&2 "$err"; exit 1; }; \
548                         find "$RPM_BUILD_ROOT$i" -type f -size +%{_min_compress_bytes}c -print | xargs -r %{__gzip} -9nf; \
549                 fi; \
550         done; \
551         if [ -d "$RPM_BUILD_ROOT%{_infodir}" ]; then \
552                 echo "Compress info pages: %{_infodir}"; \
553                 find "$RPM_BUILD_ROOT%{_infodir}" -name '*.bz2' -print | xargs -r %{__bzip2} -df; \
554                 find "$RPM_BUILD_ROOT%{_infodir}" -name '*.gz' -print | xargs -r %{__gzip} -dnf; \
555                 find "$RPM_BUILD_ROOT%{_infodir}" -name '*.info*' -type f -size +%{_min_compress_bytes}c -print | xargs -r %{__gzip} -9nf; \
556         fi; \
557 }; __spec_install_post_compress_docs } }
558
559 #-----------------------------------------------------------------
560 # Strip executable binaries and shared object files
561 #
562 # Requires: find, awk, strip, cut, xargs
563 #
564 # Special macros which affect this process:
565 #%no_install_post_strip 1               # disable stripping at all
566 #%_noautostrip                  regexp  # exclude files matching (anchored!) regex from stripping
567 #%_autostripall                 regexp  # strip files matching (anchored!) regex using plain strip
568 #%_autostripunneeded    regexp  # strip files matching (anchored!) regex using strip --strip-unneeded
569 #%_autostripdebug               regexp  # strip files matching (anchored!) regex using strip --strip-debug
570 #
571 %__spec_install_post_strip {%{!?debug: \
572 %{!?no_install_post_strip:__spec_install_post_strip() { \
573 %{!?debug:set +x;} \
574 if [ -d "$RPM_BUILD_ROOT" ]; then \
575         if [ -d $RPM_BUILD_ROOT/lib/modules ]; then \
576                 modulelist=$(find $RPM_BUILD_ROOT/lib/modules -name '*o' -type f -print); \
577                 if [ "$modulelist" ]; then \
578                         modulecount=$(echo "$modulelist" | wc -l); \
579                         printf "Stripping %d kernel modules..." $modulecount; \
580                         echo "$modulelist" | xargs -l512 chmod u+w; \
581                         echo "$modulelist" | xargs -l512 %{__strip} -g --remove-section=.comment --remove-section=.note.GNU-stack; \
582                         echo "DONE"; \
583                 fi; \
584         fi; \
585         filelist=$(find $RPM_BUILD_ROOT -type f ! -regex ".*/usr/lib[0-9]*/debug/.*\.debug" ! -regex ".*/lib/modules/.*" ! -regex ".*%{_docdir}/.*" ! -regex ".*%{_includedir}/.*" %{?_noautostrip:! -regex "%{_noautostrip}"} %{?_autostripall:! -regex "%{_autostripall}"} %{?_autostripunneeded:! -regex "%{_autostripunneeded}"} %{?_autostripdebug:! -regex "%{_autostripdebug}"}); \
586         if [ -n "$filelist" ]; then \
587                 filetypes=`echo "$filelist" | xargs -r -d'\\n' file`; \
588                 elfexelist=`echo "$filetypes" | awk -F: '/ELF.*executable/ {print $1}'`; \
589                 elfsharedlist=`echo "$filetypes" | awk -F: '/LF.*shared object/ {print $1}'`; \
590                 archiveslist=`echo "$filetypes" | awk -F: '/current ar archive/ {print $1}'`; \
591                 if [ -n "$elfexelist" ]; then \
592                         printf "Stripping %d ELF executables..." $(echo "$elfexelist" | wc -l); \
593                         echo "$elfexelist" | xargs -r -d'\n' chmod u+w; \
594                         echo "$elfexelist" | xargs -r -d'\n' %{__strip} --remove-section=.note --remove-section=.comment; \
595                         echo "DONE"; \
596                 fi; \
597                 if [ -n "$elfsharedlist" ]; then \
598                         printf "Stripping %d ELF shared libraries..." $(echo "$elfsharedlist" | wc -l); \
599                         echo "$elfsharedlist" | xargs -r -d'\n' chmod u+w; \
600                         echo "$elfsharedlist" | xargs -r -d'\n' %{__strip} --strip-unneeded --remove-section=.note --remove-section=.comment; \
601                         echo "DONE"; \
602                 fi; \
603                 if [ -n "$archiveslist" ]; then \
604                         printf "Stripping %d ar archives..." $(echo "$archiveslist" | wc -l); \
605                         echo "$archiveslist" | xargs -r -d'\n' chmod u+w; \
606                         echo "$archiveslist" | xargs -r -d'\n' %{__strip} --strip-debug --remove-section=.note --remove-section=.comment; \
607                         echo "DONE"; \
608                 fi; \
609         fi; \
610     filelist_all=%{?_autostripall:$(find $RPM_BUILD_ROOT -type f -regex "%{_autostripall}")}; \
611     filelist_unneeded=%{?_autostripunneeded:$(find $RPM_BUILD_ROOT -type f -regex "%{_autostripunneeded}")}; \
612     filelist_debug=%{?_autostripdebug:$(find $RPM_BUILD_ROOT -type f -regex "%{_autostripdebug}")}; \
613         if [ -n "$filelist_all" ]; then \
614                 printf "Stripping everything from %d additional files..." $(echo "$filelist_all" | wc -l); \
615                 chmod u+w $filelist_all; \
616                 %{__strip} --remove-section=.note --remove-section=.comment $filelist_all; \
617                 echo "DONE"; \
618         fi; \
619         if [ -n "$filelist_unneeded" ]; then \
620                 printf "Stripping unneeded from %d additional files..." $(echo "$filelist_unneeded" | wc -l); \
621                 chmod u+w $filelist_unneeded; \
622                 %{__strip} --strip-unneeded --remove-section=.note --remove-section=.comment $filelist_unneeded; \
623                 echo "DONE"; \
624         fi; \
625         if [ -n "$filelist_debug" ]; then \
626                 printf "Stripping debuginfo from %d additional files..." $(echo "$filelist_debug" | wc -l); \
627                 chmod u+w $filelist_debug; \
628                 %{__strip} --strip-debug --remove-section=.note --remove-section=.comment $filelist_debug; \
629                 echo "DONE"; \
630         fi; \
631 fi; }; __spec_install_post_strip } } }
632
633 #-----------------------------------------------------------------
634 # remove all RPATH from executable binaries and shared object files
635 #
636 # Requires: find, awk, cut, xargs, chrpath, uname
637 #
638 # Special macros which affect this process
639 #%no_install_post_chrpath       1       # disable chrpath at all
640 #%_noautochrpath        regex           # exclude files matching (anchored!) regex from chrpath
641 #
642 %__spec_install_post_chrpath {%{!?debug: \
643 %{!?no_install_post_chrpath: __spec_install_post_chrpath() { \
644 %{!?debug:set +x;} \
645 if [ -d "$RPM_BUILD_ROOT" ]; then \
646         files=`find $RPM_BUILD_ROOT -type f ! -regex ".*ld-[0-9.]*so.*" ! -regex ".*/usr/lib[0-9]*/debug/.*" ! -regex ".*/lib/modules/.*" ! -regex ".*%{_docdir}/.*" ! -regex ".*%{_includedir}/.*" %{?_noautochrpath:! -regex "%{_noautochrpath}"}`; \
647         if [ -n "$files" ]; then \
648                 objs=`echo "$files" | xargs -r -d'\\n' file | awk -F: '/ELF.*(executable.*dynamically linked|shared object)/ {print $1}'`; \
649         fi; \
650         if [ -n "$objs" ]; then \
651                 printf "Remove RPATH from %d executable binaries and shared object files.\n" $(echo "$objs" | wc -l); \
652                 echo "$objs" | \
653                 while read file; do \
654                         rpath= ; \
655                         chmod u+w "$file"; \
656                         for dir in $(chrpath -l "$file" | awk '/RPATH=/ { gsub(/.*RPATH=/,""); gsub(/:/," "); print $0 }'); do \
657                                         case $dir in \
658                                         '$ORIGIN' ) \
659                                                 if [ "$rpath" = "" ] ; then rpath="$dir" ; \
660                                                 else rpath="$rpath:$dir" ; fi ; \
661                                                 continue ; \
662                                                 ;; \
663                                         esac ; \
664                                         newdir=$(readlink -m "$dir"); \
665                                         [ ${#newdir} -le ${#dir} ] && dir=$newdir; \
666                                         case $dir in \
667                                         /home/* | /tmp/* | /usr/lib | /usr/lib64 | /lib | /lib64 | /usr/local/lib | /usr/local/lib64 | /usr/X11R6/lib | /usr/X11R6/lib64 ) \
668                                                 echo "remove-rpath: $dir in $file"; \
669                                                 ;; \
670                                         * ) \
671                                                 if [ "$rpath" = "" ] ; then rpath="$dir" ; \
672                                                 else rpath="$rpath:$dir" ; fi ; \
673                                                 ;; \
674                                         esac ; \
675                         done ; \
676                         if [ "$rpath" = "" ] ; then chrpath -d "$file" > /dev/null ; \
677                         else chrpath -r "$rpath" "$file" > /dev/null ; fi ; \
678                 done; \
679         fi; \
680 fi; }; __spec_install_post_chrpath } } }
681
682 # vim: "
683
684 #-----------------------------------------------------------------
685 # Find all shared object files with unresolved symbols. Warn
686 # and terminate if any found (termination can be turned off by define).
687 #%no_install_post_check_so 1
688 #%skip_post_check_so libwithunresolvedok.so.*
689 #
690 # NOTE: define skip_post_check_so only if such library really requires
691 #       unresolved symbols and always leave a comment why it is required:
692 #       # executable provides symbols foo, bar for those libraries:
693 #       %define skip_post_check_so libwithoutfoo.so.* libwithoutbar.so.*
694 #
695 %__spec_install_post_check_so { \
696 __spec_install_post_check_so() { \
697 %{!?debug:set +x;} \
698         fail=0; \
699         printf "Searching for shared objects with unresolved symbols..."; \
700         for f in $(find $RPM_BUILD_ROOT -type f -name '*.so.*' -print); do \
701                 LC_ALL=C objdump -T $f 2> /dev/null | LC_ALL=C awk -v "file=$f" 'BEGIN { found=0; skip["program_name"]=1; symbols = "" } /^[0-9a-z]+ +D +\*UND\*/ { if ($NF in skip) { next; }; found = 1; symbols = symbols "\n\t" $NF } END { if (found) { print "\nUnresolved symbols found in: " file symbols; %{?skip_post_check_so:split("%{skip_post_check_so}", R); for (i=1; i in R; i++) { if (file ~ "(^|/)" R[i] "$") { print "Library marked with skip_post_check_so, ignoring errors.\n"; exit(0); } } } exit(1); } } ' || fail=1 ; \
702         done ; \
703         echo " DONE"; \
704         %{!?no_install_post_check_so:return $fail;} \
705 }; __spec_install_post_check_so }}
706
707 #-----------------------------------------------------------------
708 # Verify that for each directory under /var/run package contains
709 # tmpfiles.d configuration. Warn and terminate build if config is
710 # missing.
711 #
712 #%no_install_post_check_tmpfiles 1
713 #
714 %__spec_install_post_check_tmpfiles { \
715 __spec_install_post_check_tmpfiles() { \
716 %{!?debug:set +x;} \
717         fail=0; \
718         echo "Checking /var/run <-> tmpfiles.d completeness..."; \
719         for d in $RPM_BUILD_ROOT/var/run/*; do \
720                 [ -d "$d" ] || continue; \
721                 d=${d##$RPM_BUILD_ROOT}; \
722                 if ! grep -qsF "$d" $RPM_BUILD_ROOT/usr/lib/tmpfiles.d/*.conf $RPM_BUILD_ROOT/etc/tmpfiles.d/*.conf; then\
723                     echo "No tmpfiles configuration for '$d'";\
724                         fail=1 ; \
725                 fi \
726         done ; \
727         echo " DONE"; \
728         %{!?no_install_post_check_tmpfiles:return $fail;} \
729 }; __spec_install_post_check_tmpfiles }}
730
731 #-----------------------------------------------------------------
732 # Find and gzip all kernel modules
733 #
734 # Requires: find
735 #
736 #%no_install_post_compress_modules      1
737 %__spec_install_post_compress_modules { \
738 %{!?no_install_post_compress_modules: __spec_install_post_compress_modules() { \
739 %{!?debug:set +x;} \
740         if [ -d $RPM_BUILD_ROOT/lib/modules ]; then \
741                 q=$(find $RPM_BUILD_ROOT/lib/modules -name '*o' -type f -print); \
742                 if [ "$q" ]; then \
743                         printf "Compress %d kernel modules..." $(echo "$q" | wc -l); \
744                         echo "$q" | xargs -r %{__gzip} -9nf; \
745                         echo "DONE"; \
746                         find $RPM_BUILD_ROOT/lib/modules -name '*o' -type l -printf "%p %l\n" | \
747                         while read a b; do ln -sf $b.gz $a.gz; rm -f $a; done; \
748                 fi; \
749         fi; \
750 }; __spec_install_post_compress_modules } }
751
752 # Remove common Perl files we don't package
753 %__spec_install_post_perl_clean {\
754 %{!?no_install_post_perl_clean: \
755 %{?pdir:rm -f $RPM_BUILD_ROOT{%{perl_archlib}/perllocal.pod,%{perl_vendorarch}/auto/%{pdir}%{?pnam:/%(echo %{pnam} | tr - /)}/.packlist}} \
756 } }
757
758 #-----------------------------------------------------------------
759 # Update GConf2 schemas
760 #
761 # Requires: GConf2
762 #
763 %gconf_schema_install() \
764         umask 022; \
765         GCONF_CONFIG_SOURCE="xml:readwrite:/etc/gconf/gconf.xml.defaults" \\\
766         /usr/bin/gconftool-2 --makefile-install-rule /etc/gconf/schemas/%{?1}%{!?1:*.schemas} > /dev/null; \
767 %{nil}
768
769 %gconf_schema_uninstall() \
770 if [ $1 = 0 -a -x /usr/bin/gconftool-2 ]; then \
771         umask 022; \
772         GCONF_CONFIG_SOURCE="xml:readwrite:/etc/gconf/gconf.xml.defaults" \\\
773         /usr/bin/gconftool-2 --makefile-uninstall-rule /etc/gconf/schemas/%{?1} > /dev/null \
774 fi; \
775 %{nil}
776
777 #-----------------------------------------------------------------
778 # Update desktop MIME database
779 # requires: desktop-file-utils
780 %update_desktop_database() {{ \
781         umask 022; \
782         /usr/bin/update-desktop-database -q; \
783 };} \
784 %{nil}
785
786 %update_desktop_database_post %update_desktop_database
787
788 %update_desktop_database_postun() {{ \
789 if [ "$1" = "0" ]; then \
790         %update_desktop_database \
791 fi; \
792 };} \
793 %{nil}
794
795 #-----------------------------------------------------------------
796 # Update shared MIME info database
797 # requires: shared-mime-info
798 #
799 %update_mime_database() {{ \
800         umask 022; \
801         /usr/bin/update-mime-database %{_datadir}/mime; \
802 };} \
803 %{nil}
804
805 #-----------------------------------------------------------------
806 # Update icon cache
807 # BuildRequires:  rpmbuild(macros) >= 1.596
808 # Requires:  hicolor-icon-theme
809 #
810 %update_icon_cache() {{ \
811         %{!?1:%{error:%{0}: Required theme name missing}} \
812         if [ -x /usr/bin/gtk-update-icon-cache ]; then \
813                 umask 022; \
814                 touch --no-create %{_iconsdir}/%1; \
815                 /usr/bin/gtk-update-icon-cache -qf %{_iconsdir}/%1; \
816         fi; \
817 };} \
818 %{nil}
819
820 #-----------------------------------------------------------------
821 # Update scrollkeeper database
822 # requires: scrollkeeper
823 #
824 %scrollkeeper_update_post() \
825         /usr/bin/scrollkeeper-update -q; \
826 %{nil}
827
828 %scrollkeeper_update_postun() \
829 if [ "$1" = "0" ]; then \
830         /usr/bin/scrollkeeper-update -q; \
831 fi; \
832 %{nil}
833
834 #-----------------------------------------------------------------
835 # Compile GSettings schemas
836 # requires: glib2 >= 1:2.26.0
837 #
838 %glib_compile_schemas() {{ \
839         umask 022; \
840         /usr/bin/glib-compile-schemas %{_datadir}/glib-2.0/schemas; \
841 };} \
842 %{nil}
843
844 #-----------------------------------------------------------------
845 # post %install sequence:
846 # - autodeps exceptions
847 # - compress all man and info pages,
848 # - strip all ELF executables and ELF shared objects if not %debug.
849 # - compress kernel modules if any
850
851 ###################################################################
852 # Requires/Provides automation
853 # exceptions system by Jacek Konieczny <jajcus@pld-linux.org>
854 #
855 %__noautoreqfiles       %(sed -e s'/#.*//' /etc/rpm/noautoreqfiles)%{?_noautoreqfiles: %{_noautoreqfiles}}
856 %__noautoprovfiles      %(sed -e s'/#.*//' /etc/rpm/noautoprovfiles)%{?_noautoprovfiles: %{_noautoprovfiles}}
857 %__noautoreqdep         %(sed -e s'/#.*//' /etc/rpm/noautoreqdep)%{?_noautoreqdep: %{_noautoreqdep}}
858 %__noautoprov           %(sed -e s'/#.*//' /etc/rpm/noautoprov)%{?_noautoprov: %{_noautoprov}}
859 %__noautoreq            %(sed -e s'/#.*//' /etc/rpm/noautoreq) \
860         %{?_noautoreq: %{_noautoreq}} \
861         %{?_noautoreq_pear: %{__noauto_regexp_helper -p pear %{_noautoreq_pear}}} \
862         %{?_noautoreq_perl: %{__noauto_regexp_helper -p perl %{_noautoreq_perl}}} \
863         %{nil}
864
865 # helper for wrapping _noautoreq between perl() or pear()
866 # Author: Elan Ruusamäe <glen@pld-linux.org>
867 # Usage:
868 # BuildRequires:        rpmbuild(macros) >= 1.654
869 # %define _noautoreq_pear Excluded.php PEAR/Something.php
870 # %define _noautoreq_perl Apache::.*
871 %__noauto_regexp_helper(p:) %(echo "%*" | awk 'BEGIN{RS=" "}{printf("%{-p*}\\\\\\(%%s\\\\\\) ", $1)}')
872
873 #%_noautocompressdoc    %{nil}
874 #
875 %_missing_doc_files_terminate_build     1%{nil}
876 %_unpackaged_files_terminate_build      %{nil}
877 # (X)emacs support
878 %___emacs_lispdir_helper  -batch -q -eval '(while load-path (princ (concat (car load-path) "\\n")) (setq load-path (cdr load-path)))' 2> /dev/null|sed -n '/\\(.*\\/x\\?emacs\\/site-lisp\\)\\/\\?$/{s,,\\1,p;q;}'
879 %_emacs_lispdir %{expand:%%global _emacs_lispdir %(Z=$(emacs %___emacs_lispdir_helper); echo ${Z:-ERROR})}%_emacs_lispdir
880 %_xemacs_lispdir %{expand:%%global _xemacs_lispdir %(Z=$(xemacs %___emacs_lispdir_helper); echo ${Z:-ERROR})}%_xemacs_lispdir
881
882 %__php_provides %{nil}
883 %__php_requires %{nil}
884 %__perl_provides %{nil}
885 %__perl_requires %{nil}
886 %__mono_provides %{nil}
887 %__mono_requires %{nil}
888
889 # Perl specific macro definitions.
890 %perl_privlib           %{expand:%%global perl_privlib %(eval $(%{__perl} -V:installprivlib 2>/dev/null); echo ${installprivlib:-ERROR})}%perl_privlib
891 %perl_archlib           %{expand:%%global perl_archlib %(eval $(%{__perl} -V:installarchlib 2>/dev/null); echo ${installarchlib:-ERROR})}%perl_archlib
892 %perl_vendorlib         %{expand:%%global perl_vendorlib %(eval $(%{__perl} -V:installvendorlib 2>/dev/null); echo ${installvendorlib:-ERROR})}%perl_vendorlib
893 %perl_vendorarch        %{expand:%%global perl_vendorarch %(eval $(%{__perl} -V:installvendorarch 2>/dev/null); echo ${installvendorarch:-ERROR})}%perl_vendorarch
894 %perl_sitelib           %{expand:%%global perl_sitelib %(eval $(%{__perl} -V:installsitelib 2>/dev/null); echo ${installsitelib:-ERROR})}%perl_sitelib
895 %perl_sitearch          %{expand:%%global perl_sitearch %(eval $(%{__perl} -V:installsitearch 2>/dev/null); echo ${installsitearch:-ERROR})}%perl_sitearch
896
897 # Ruby
898 %__ruby                         /usr/bin/ruby
899
900 %ruby_archdir           %{expand:%%global ruby_archdir %(%{__ruby} -r rbconfig -e 'print Config::CONFIG["archdir"]' 2>/dev/null || echo ERROR)}%ruby_archdir
901 %ruby_libdir            %{expand:%%global ruby_libdir %(%{__ruby} -r rbconfig -e 'print Config::CONFIG["rubylibdir"]' 2>/dev/null || echo ERROR)}%ruby_libdir
902 %ruby_ridir                     %{expand:%%global ruby_ridir %(%{__ruby} -r rbconfig -e 'include Config; print File.join(CONFIG["datadir"], "ri", CONFIG["ruby_version"], "system")' 2>/dev/null || echo ERROR)}%ruby_ridir
903 %ruby_rubylibdir        %{expand:%%global ruby_rubylibdir %(%{__ruby} -r rbconfig -e 'print Config::CONFIG["rubylibdir"]' 2>/dev/null || echo ERROR)}%ruby_rubylibdir
904 %ruby_vendorarchdir     %{expand:%%global ruby_vendorarchdir %(%{__ruby} -r rbconfig -e 'print Config::CONFIG["vendorarchdir"]' 2>/dev/null || echo ERROR)}%ruby_vendorarchdir
905 %ruby_vendorlibdir      %{expand:%%global ruby_vendorlibdir %(%{__ruby} -r rbconfig -e 'print Config::CONFIG["vendorlibdir"]' 2>/dev/null || echo ERROR)}%ruby_vendorlibdir
906 %ruby_sitearchdir       %{expand:%%global ruby_sitearchdir %(%{__ruby} -r rbconfig -e 'print Config::CONFIG["sitearchdir"]' 2>/dev/null || echo ERROR)}%ruby_sitearchdir
907 %ruby_sitedir           %{expand:%%global ruby_sitedir %(%{__ruby} -r rbconfig -e 'print Config::CONFIG["sitedir"]' 2>/dev/null || echo ERROR)}%ruby_sitedir
908 %ruby_sitelibdir        %{expand:%%global ruby_sitelibdir %(%{__ruby} -r rbconfig -e 'print Config::CONFIG["sitelibdir"]' 2>/dev/null || echo ERROR)}%ruby_sitelibdir
909 %ruby_rdocdir           /usr/share/rdoc
910 %ruby_vendordir         %{expand:%%global ruby_vendordir %(%{__ruby} -r rbconfig -e 'print Config::CONFIG["vendordir"]' 2>/dev/null || echo ERROR)}%ruby_vendordir
911 %ruby_version           %{expand:%%global ruby_version %(%{__ruby} -r rbconfig -e 'print Config::CONFIG["ruby_version"]' 2>/dev/null || echo ERROR)}%ruby_version
912
913 %ruby_ver_requires_eq   Requires:       ruby(ver) = %ruby_version
914 %ruby_mod_ver_requires_eq       Requires:       ruby-modules(ver) = %ruby_version
915
916 %php_pear_dir           /usr/share/pear
917 %php_data_dir           /usr/share/php
918 %php_extensiondir       %{expand:%%global php_extensiondir %(php-config --extension-dir 2>/dev/null || echo ERROR)}%php_extensiondir
919 %php_sysconfdir         %{expand:%%global php_sysconfdir %(php-config --sysconfdir 2>/dev/null || echo ERROR)}%php_sysconfdir
920 %php_includedir         %{expand:%%global php_includedir %(php-config --include-dir 2>/dev/null || echo ERROR)}%php_includedir
921
922 # extract php/zend api versions
923 %php_major_version              %{expand:%%global php_major_version %(awk '/#define PHP_MAJOR_VERSION/{print $3}' %{php_includedir}/main/php_version.h 2>/dev/null || echo ERROR)}%php_major_version
924 %php_minor_version              %{expand:%%global php_minor_version %(awk '/#define PHP_MINOR_VERSION/{print $3}' %{php_includedir}/main/php_version.h 2>/dev/null || echo ERROR)}%php_minor_version
925 %php_api_version                %{expand:%%global php_api_version %(awk '/#define PHP_API_VERSION/{print $3}' %{php_includedir}/main/php.h 2>/dev/null || echo ERROR)}%php_api_version
926 %php_pdo_api_version    %{expand:%%global php_pdo_api_version %(awk '/#define PDO_DRIVER_API/{print $3}' %{php_includedir}/ext/pdo/php_pdo_driver.h 2>/dev/null || echo ERROR)}%php_pdo_api_version
927 %php_debug                              %{expand:%%global php_debug %(awk '/#define ZEND_DEBUG/{print $3}' %{php_includedir}/main/php_config.h 2>/dev/null || echo ERROR)}%php_debug
928 %zend_module_api                %{expand:%%global zend_module_api %(awk '/#define ZEND_MODULE_API_NO/{print $3}' %{php_includedir}/Zend/zend_modules.h 2>/dev/null || echo ERROR)}%zend_module_api
929 %zend_extension_api             %{expand:%%global zend_extension_api %(awk '/#define ZEND_EXTENSION_API_NO/{print $3}' %{php_includedir}/Zend/zend_extensions.h 2>/dev/null || echo ERROR)}%zend_extension_api
930 %_zend_zts                              %{expand:%%global _zend_zts %(Z=$(grep -sc '^#define ZTS 1' %{php_includedir}/main/php_config.h); echo ${Z:-ERROR})}%_zend_zts
931 # "_ts" if ZTS enabled, empty otherwise
932 %zend_zts                               %{expand:%%global _zend_zts_%{?_zend_zts} 1}%{?_zend_zts_1:_ts}
933
934 # name of php package
935 %php_name                               php%{?php_suffix}
936 # use rpmbuild -D 'php_suffix 54' to build php extension for php 5.4
937 # NOTE: error output must be empty. otherwise can't build pecl packages if no php*-devel is installed
938 %php_suffix             %(c=$(php-config --sysconfdir 2>/dev/null) || echo '' && echo ${c#/etc/php})
939
940 # helper macro
941 %__php_api_requires(v:) Requires: %{php_name}(%{expand:%1}) = %{expand:%{%{!?2:%{1}}%{?2}}}
942
943 # macros for public use
944 # for php extensions (php-pecl)
945 %requires_php_extension %{__php_api_requires modules_api php_api_version} \
946 %{__php_api_requires zend_module_api} \
947 %{__php_api_requires debug php_debug} \
948 %{__php_api_requires thread-safety _zend_zts}
949
950 # for zend extensions
951 %requires_zend_extension %{__php_api_requires zend_module_api} \
952 %{__php_api_requires zend_extension_api} \
953 %{__php_api_requires debug php_debug} \
954 %{__php_api_requires thread-safety _zend_zts}
955
956 # for php pdo modules (php-pecl-PDO_*)
957 %requires_php_pdo_module %{__php_api_requires PDO_API php_pdo_api_version}
958
959 # for using PHP post scripts. for PHP >= 5.0
960 %php_webserver_restart \
961 [ ! -f /etc/apache/conf.d/??_mod_php.conf ] || %service -q apache restart \
962 [ ! -f /etc/httpd/conf.d/??_mod_php.conf ] || %service -q httpd restart \
963 if [ -x /etc/rc.d/init.d/php-fcgi ]; then \
964         PHP_FCGI_BINARY=; . /etc/sysconfig/php-fcgi 2>/dev/null \
965         if [[ ${PHP_FCGI_BINARY:-php.fcgi} = *php.fcgi* ]]; then \
966                 %service -q php-fcgi restart \
967         fi \
968 fi \
969 if [ -x /etc/rc.d/init.d/%{php_name}-fpm ]; then \
970         %service -q %{php_name}-fpm restart \
971 fi \
972 %{nil}
973
974 # for using php post scripts. for PHP >= 4.0 && PHP < 5.0
975 %php4_webserver_restart \
976 [ ! -f /etc/apache/conf.d/??_mod_php4.conf ] || %service -q apache restart \
977 [ ! -f /etc/httpd/conf.d/??_mod_php4.conf ] || %service -q httpd restart \
978 if [ -x /etc/rc.d/init.d/php-fcgi ]; then \
979         PHP_FCGI_BINARY=; . /etc/sysconfig/php-fcgi 2>/dev/null \
980         if [[ ${PHP_FCGI_BINARY:-php.fcgi} = *php4.fcgi* ]]; then \
981                 %service -q php-fcgi restart \
982         fi \
983 fi \
984 %{nil}
985
986 # X.org helper macros
987 %__xorg_abi_requires_ge() Requires: xorg-xserver-server(%{expand:%1}-abi) >= %{expand:%{%2}}
988 %__xorg_abi_requires_lt() Requires: xorg-xserver-server(%{expand:%1}-abi) < %(awk -vv=%{expand:%{%2}} 'BEGIN{split(v, a, "."); printf("%s.0", a[1] + 1); exit}')
989
990 %xorg_xserver_ansic_abi         %{expand:%%global xorg_xserver_ansic_abi %(awk '/#define ABI_ANSIC_VERSION/ { split($0,A,/[(,)]/); printf("%d.%d",A[2], A[3]); }' /usr/include/xorg/xf86Module.h 2> /dev/null || echo ERROR)}%xorg_xserver_ansic_abi
991 %xorg_xserver_extension_abi     %{expand:%%global xorg_xserver_extension_abi %(awk '/#define ABI_EXTENSION_VERSION/ { split($0,A,/[(,)]/); printf("%d.%d",A[2], A[3]); }' /usr/include/xorg/xf86Module.h 2> /dev/null || echo ERROR)}%xorg_xserver_extension_abi
992 %xorg_xserver_font_abi          %{expand:%%global xorg_xserver_font_abi %(awk '/#define ABI_FONT_VERSION/ { split($0,A,/[(,)]/); printf("%d.%d",A[2], A[3]); }' /usr/include/xorg/xf86Module.h 2> /dev/null | echo ERROR)}%xorg_xserver_font_abi
993 %xorg_xserver_videodrv_abi      %{expand:%%global xorg_xserver_videodrv_abi %(awk '/#define ABI_VIDEODRV_VERSION/ { split($0,A,/[(,)]/); printf("%d.%d",A[2], A[3]); }' /usr/include/xorg/xf86Module.h 2> /dev/null || echo ERROR)}%xorg_xserver_videodrv_abi
994 %xorg_xserver_xinput_abi        %{expand:%%global xorg_xserver_xinput_abi %(awk '/#define ABI_XINPUT_VERSION/ { split($0,A,/[(,)]/); printf("%d.%d",A[2], A[3]); }' /usr/include/xorg/xf86Module.h 2> /dev/null || echo ERROR)}%xorg_xserver_xinput_abi
995 # vim: '
996
997 %requires_xorg_xserver_extension \
998 %{__xorg_abi_requires_ge ansic xorg_xserver_ansic_abi} \
999 %{__xorg_abi_requires_lt ansic xorg_xserver_ansic_abi} \
1000 %{__xorg_abi_requires_ge extension xorg_xserver_extension_abi} \
1001 %{__xorg_abi_requires_lt extension xorg_xserver_extension_abi} \
1002 %{nil}
1003
1004 %requires_xorg_xserver_xinput \
1005 %{__xorg_abi_requires_ge ansic xorg_xserver_ansic_abi} \
1006 %{__xorg_abi_requires_lt ansic xorg_xserver_ansic_abi} \
1007 %{__xorg_abi_requires_ge xinput xorg_xserver_xinput_abi} \
1008 %{__xorg_abi_requires_lt xinput xorg_xserver_xinput_abi} \
1009 %{nil}
1010
1011 %requires_xorg_xserver_font \
1012 %{__xorg_abi_requires_ge ansic xorg_xserver_ansic_abi} \
1013 %{__xorg_abi_requires_lt ansic xorg_xserver_ansic_abi} \
1014 %{__xorg_abi_requires_ge font xorg_xserver_font_abi} \
1015 %{__xorg_abi_requires_lt font xorg_xserver_font_abi} \
1016 %{nil}
1017
1018 %requires_xorg_xserver_videodrv \
1019 %{__xorg_abi_requires_ge ansic xorg_xserver_ansic_abi} \
1020 %{__xorg_abi_requires_lt ansic xorg_xserver_ansic_abi} \
1021 %{__xorg_abi_requires_ge videodrv xorg_xserver_videodrv_abi} \
1022 %{__xorg_abi_requires_lt videodrv xorg_xserver_videodrv_abi} \
1023 %{nil}
1024
1025 # TCL specific macro definitions.
1026 # TODO: when th tcl is fixed use tclsh to get version: %(echo 'puts $tcl_version' | tclsh)
1027 %tcl_version    %{expand:%%global tcl_version %(v=$(rpm -q --qf %{V} tcl | cut -d. -f1,2); echo ${v:-ERROR})}%tcl_version
1028 %tcl_sitearch   %{_libdir}/tcl%{tcl_version}
1029 %tcl_sitelib    %{_datadir}/tcl%{tcl_version}
1030
1031 # Python specific macro definitions.
1032 # python main version
1033 %py_ver                 %{expand:%%global py_ver %(%{__python} -c "import sys; print sys.version[:3]" 2>/dev/null || echo ERROR)}%py_ver
1034
1035 # directories
1036 %py_prefix              %{expand:%%global py_prefix %(%{__python} -c "import sys; print sys.prefix" 2>/dev/null || echo ERROR)}%py_prefix
1037 %py_libdir              %{py_prefix}/%{_lib}/python%{py_ver}
1038 %py_scriptdir   %{py_prefix}/share/python%{py_ver}
1039 %py_incdir              /usr/include/python%{py_ver}
1040 %py_sitedir             %{py_libdir}/site-packages
1041 %py_sitescriptdir %{py_scriptdir}/site-packages
1042 %py_dyndir              %{py_libdir}/lib-dynload
1043
1044 # pure python modules compilation
1045 %py_comp                python -c "import compileall; import sys; compileall.compile_dir(sys.argv[1], ddir=sys.argv[1][len('$RPM_BUILD_ROOT'):])"
1046
1047 %py_ocomp               python -O -c "import compileall; import sys; compileall.compile_dir(sys.argv[1], ddir=sys.argv[1][len('$RPM_BUILD_ROOT'):])"
1048
1049 # Software written in Python language require Python with main version
1050 %pyrequires_eq() Requires:      %1
1051
1052 # Python 3.x
1053 # python main version
1054 %__python3                      python3
1055 %py3_ver                        %{expand:%%global py3_ver %(%{__python3} -c "import sys; print(sys.version[:3])" 2>/dev/null || echo ERROR)}%py3_ver
1056
1057 # directories
1058 %py3_prefix             %{expand:%%global py3_prefix %(%{__python3} -c "import sys; print(sys.prefix)" 2>/dev/null || echo ERROR)}%py3_prefix
1059 %py3_libdir             %{expand:%%global py3_libdir %(%{__python3} -c "import sysconfig; print(sysconfig.get_path('platstdlib'))" 2>/dev/null || echo ERROR)}%py3_libdir
1060 %py3_incdir             %{expand:%%global py3_incdir %(%{__python3} -c "import sysconfig; print(sysconfig.get_path('include'))" 2>/dev/null || echo ERROR)}%py3_incdir
1061 %py3_sitedir            %{expand:%%global py3_sitedir %(%{__python3} -c "import sysconfig; print(sysconfig.get_path('platlib'))" 2>/dev/null || echo ERROR)}%py3_sitedir
1062 %py3_sitescriptdir              %{expand:%%global py3_sitescriptdir %(%{__python3} -c "import sysconfig; print(sysconfig.get_path('purelib'))" 2>/dev/null || echo ERROR)}%py3_sitescriptdir
1063 %py3_scriptdir  %{py3_prefix}/share/python%{py3_ver}
1064 %py3_dyndir             %{py3_libdir}/lib-dynload
1065
1066 # pure python modules compilation
1067 %py3_comp               %{__python3} -c "import compileall; import sys; compileall.compile_dir(sys.argv[1], ddir=sys.argv[1][len('$RPM_BUILD_ROOT'):])"
1068
1069 %py3_ocomp              %{__python3} -O -c "import compileall; import sys; compileall.compile_dir(sys.argv[1], ddir=sys.argv[1][len('$RPM_BUILD_ROOT'):])"
1070
1071 # node.js libdir
1072 # Requirements:
1073 # BuildRequires: rpmbuild(macros) >= 1.634
1074 %nodejs_libdir          /usr/lib/node_modules
1075
1076 # Hardlink binary identical .pyc and .pyo files
1077 %__spec_install_post_py_hardlink {\
1078 %{!?no_install_post_py_hardlink: __spec_install_post_py_hardlink() { \
1079 %{!?debug:set +x;} \
1080 local a b c=0 t=0; \
1081 if [ -d "$RPM_BUILD_ROOT" ]; then \
1082         find "$RPM_BUILD_ROOT" -name '*.pyc' > __rpm_pyc; \
1083         while read a; do \
1084                 b="${a%.pyc}.pyo"; \
1085                 if cmp -s "$a" "$b"; then \
1086                         ln -f "$a" "$b"; \
1087                         c=$((c + 1)); \
1088                 fi; \
1089                 t=$((t + 1)); \
1090         done < __rpm_pyc; \
1091         [ $t -gt 0 ] && printf "Hardlink Python files: %d/%d files hardlinked\n" $c $t; \
1092         rm -f __rpm_pyc; \
1093 fi; \
1094 }; __spec_install_post_py_hardlink } }
1095
1096 # remove python sources, so that check-files won't complain
1097 %py_postclean() \
1098 for d in %{py_sitescriptdir} %{py_sitedir} %*; do \
1099  [ ! -d "$RPM_BUILD_ROOT$d" ] || find "$RPM_BUILD_ROOT$d" -name '*.py' -print0 | xargs -0r -l512 rm;\
1100 done \
1101 %{nil}
1102
1103 # depmod macro
1104 %depmod() { \
1105 umask 022; \
1106 if [ -e /boot/System.map-%1 ]; then \
1107         /sbin/depmod -a -F /boot/System.map-%1 %1; \
1108 else \
1109         if [ -e /boot/System.map ]; then \
1110                 /sbin/depmod -a -F /boot/System.map %1; \
1111         else \
1112                 /sbin/depmod -a %1; \
1113         fi \
1114 fi; \
1115 }
1116
1117 # XMMS specific macros
1118 %xmms_prefix                    %{expand:%%global xmms_prefix %(xmms-config --prefix 2>/dev/null || echo ERROR)}%xmms_prefix
1119 %xmms_exec_prefix               %{expand:%%global xmms_exec_prefix %(xmms-config --exec-prefix 2>/dev/null || echo ERROR)}%xmms_exec_prefix
1120 %xmms_version                   %{expand:%%global xmms_version %(xmms-config --version 2>/dev/null || echo ERROR)}%xmms_version
1121 %xmms_datadir                   %{expand:%%global xmms_datadir %(xmms-config --data-dir 2>/dev/null || echo ERROR)}%xmms_datadir
1122 %xmms_plugindir                 %{expand:%%global xmms_plugindir %(xmms-config --plugin-dir 2>/dev/null || echo ERROR)}%xmms_plugindir
1123 %xmms_visualization_plugindir   %{expand:%%global xmms_visualization_plugindir %(xmms-config --visualization-plugin-dir 2>/dev/null || echo ERROR)}%xmms_visualization_plugindir
1124 %xmms_input_plugindir           %{expand:%%global xmms_input_plugindir %(xmms-config --input-plugin-dir 2>/dev/null || echo ERROR)}%xmms_input_plugindir
1125 %xmms_output_plugindir          %{expand:%%global xmms_output_plugindir %(xmms-config --output-plugin-dir 2>/dev/null || echo ERROR)}%xmms_output_plugindir
1126 %xmms_effect_plugindir          %{expand:%%global xmms_effect_plugindir %(xmms-config --effect-plugin-dir 2>/dev/null || echo ERROR)}%xmms_effect_plugindir
1127 %xmms_general_plugindir         %{expand:%%global xmms_general_plugindir %(xmms-config --general-plugin-dir 2>/dev/null || echo ERROR)}%xmms_general_plugindir
1128
1129 %_host_base_arch        %{expand:%%global _host_base_arch %(echo %{_host_cpu} | sed 's/i.86/i386/;s/athlon/i386/;s/pentium./i386/;s/amd64/x86_64/;s/ia32e/x86_64/;s/sparcv./sparc/;s/arm.*/arm/')}%_host_base_arch
1130 %_target_base_arch      %{expand:%%global _target_base_arch %(echo %{_target_cpu} | sed 's/i.86/i386/;s/athlon/i386/;s/pentium./i386/;s/amd64/x86_64/;s/ia32e/x86_64/;s/sparcv./sparc/;s/arm.*/arm/')}%_target_base_arch
1131
1132 # user/group checking macros
1133 #
1134 # Usage:
1135 #       %userremove myuser
1136 #
1137 %userremove     /usr/lib/rpm/user_group.sh user del
1138 %groupremove    /usr/lib/rpm/user_group.sh group del
1139 #
1140 # Usage:
1141 #       if %usertestrm myuser; then
1142 #               /usr/sbin/userdel -r myuser
1143 # Note:
1144 #       use these macros only if you need to call userdel/groupdel with
1145 #       a non-standard option or take an extra action; otherwise use the
1146 #       %userremove/%groupremove macros
1147 #
1148 %usertestrm     /usr/lib/rpm/user_group.sh user testrm
1149 %grouptestrm    /usr/lib/rpm/user_group.sh group testrm
1150 # user group membership management macros
1151 #
1152 # Usage:
1153 #       %addusertogroup [-q] myuser agroup
1154 #
1155 #  -q if user or group don't exist, don't make big noise of it (MISSINGOK behaviour)
1156 #
1157 # Requirements:
1158 # BuildRequires:        rpmbuild(macros) >= 1.515
1159 %addusertogroup(q)      quiet=%{-q:1} /usr/lib/rpm/user_group.sh user addtogroup %*; \
1160 %{nil}
1161
1162 # banner support (useful in {pre,post}{,un} and triggers)
1163 #
1164 # Usage:
1165 #       %banner name [-a] [-e] [-n] [-tn] [-o] <<EOF
1166 # the banner text, the banner text
1167 # the banner text, and following line
1168 #EOF
1169 # You can use any form of here-document, <<'EOF' <<-EOT will do.
1170 # NOTE: if your use "<<-EOF", then You can actually indent inside here-document.
1171 #
1172 # -a   - append to the banner
1173 # -e   - send to stderr instead of stdout
1174 # -n   - no show banner (overrides -t)
1175 # -t   - show only, if RPM_SCRIPTVERBOSITY >= n; default n=5
1176 # -o   - show only once, i.e when package is installed for the first time
1177 #
1178 # Tests:
1179 # (rpm -E '%banner -e banner <<EOF'; echo -e 'hi\nEOF') > m; sh -x m
1180 # (rpm -E '%banner -o -e banner <<EOF'; echo -e 'hi\nEOF') > m; sh -x m
1181 # (rpm -E '%banner -o -e banner <<EOF'; echo -e 'hi\nEOF') > m; sh -x m 1
1182 # rpm -E 'date | %banner -e banner' > m; sh -x m
1183 # rpm -E 'date | %banner -o -e banner' > m; sh -x m
1184 #
1185 %banner(aenot:) %{-o:([ "$1" != 1 ] ||} ( \
1186 RPM_SCRIPTVERBOSITY=5 \
1187 [ -r /etc/sysconfig/rpm ] && . /etc/sysconfig/rpm \
1188 if [ -x /usr/bin/banner.sh ]; then \
1189         CMD="/usr/bin/banner.sh %{-e:--stderr} %{!-n:$([ $RPM_SCRIPTVERBOSITY -ge %{-t:%{-t*}}%{!-t:5} ] && echo -s)} %{!-a:-m}%{-a:-M} %1" \
1190 else \
1191         CMD="cat%{-e: >&2}" \
1192 fi \
1193 eval $CMD %{?2:%2}%{?3: %3})%{-o:)} \
1194 %{nil}
1195
1196 # useradd/groupadd macros
1197 # Author: Elan Ruusamäe <glen@pld-linux.org>
1198 #
1199 # Usage:
1200 #   %useradd [-P package] [-u uid] [-d home_dir] [-s shell] [-c comment]
1201 #   [-g initial_group] [-G group[,...]] login
1202 #
1203 #  -u uid. REQUIRED
1204 #  -g gid/group. REQUIRED
1205 #  -s defaults to /bin/false
1206 #  -d defaults to /usr/share/empty
1207 #  -c No default
1208 #  -r is accepted but ignored (it's always set)
1209 #  -k skeleton dir. defaults to /usr/share/empty
1210 # rpm specific flags
1211 #  -P package name. defaults to %{name}
1212 #
1213 %useradd(c:d:e:f:g:G:Mmk:op:s:u:rP:) \
1214 %{!-u:%{error:useradd: Required argument -u missing}} \
1215 %{!-g:%{error:useradd: Required argument -g missing}} \
1216 %{!?1:%{error:useradd: Required parameter login missing}} \
1217 if [ -n "`/bin/id -u %{expand:%{%{#}}} 2>/dev/null`" ]; then \
1218         if [ "`/bin/id -u %{expand:%{%{#}}}`" != "%{-u*}" ]; then \
1219                 echo "Error: user %{expand:%{%{#}}} doesn't have uid=%{-u*}. Correct this before installing %{-P*}%{!?-P:%{name}}." 1>&2 \
1220                 exit 1 \
1221         fi \
1222 else \
1223         echo "Adding user %{expand:%{%{#}}} UID=%{-u*}." \
1224         /usr/sbin/useradd \\\
1225                 %{-m:-m -k %{-k*}%{!-k:/usr/share/empty}} \\\
1226                 -u %{-u*} \\\
1227                 -r \\\
1228                 -d %{-d*}%{!-d:/usr/share/empty} \\\
1229                 -s %{-s*}%{!-s:/bin/false} \\\
1230                 %{-c:-c "%(set -- %{-c*} %{*}; echo $1)"}\\\
1231                 -g %{-g*} \\\
1232                 %{-M} \\\
1233                 %{-G:-G %{-G*}} \\\
1234                 %{expand:%{%{#}}} 1>&2 || exit $? \
1235         [ ! -x /usr/sbin/nscd ] || /usr/sbin/nscd -i passwd || : \
1236 fi;
1237 # vim: "
1238
1239 # Usage:
1240 #   %groupadd [-P package] [-g gid] group
1241 #
1242 # -g gid. REQUIRED
1243 #
1244 # Sample:
1245 #   %groupadd -P %{name}-base -g %{gid} %{name}
1246
1247 %groupadd(g:P:rfo)      \
1248 %{!-g:%{error:groupadd: Required argument -g missing}} \
1249 %{!?1:%{error:groupadd: Required parameter group missing}} \
1250 if /usr/bin/getgid %{1} > /dev/null 2>&1; then \
1251         if [ "`/usr/bin/getgid %{1}`" != "%{-g*}" ]; then \
1252                 echo "Error: group %{1} doesn't have gid=%{-g*}. Correct this before installing %{-P*}%{!?-P:%{name}}." 1>&2 \
1253                 exit 1 \
1254         fi \
1255 else \
1256         echo "Adding group %{1} GID=%{-g*}." \
1257         /usr/sbin/groupadd -g %{-g*} -r %{1} 1>&2 || exit $? \
1258         [ ! -x /usr/sbin/nscd ] || /usr/sbin/nscd -i group || : \
1259 fi;
1260
1261 # webapp macros
1262 # Author: Elan Ruusamäe <glen@pld-linux.org>
1263 #
1264 # The config is installed/removed inside trigger, this means that you can any
1265 # time install apache1/apache/lighttpd package and the configuration file is
1266 # updated. if you don't need the config for various reason for specific
1267 # webserver, just remove the symlink from config directory using webapp
1268 # program. the trigger will not recreate the symlink on upgrades. In other
1269 # words the config is linked to webserver config directory on first install of
1270 # PACKAGE or WEBSERVER.
1271 #
1272 # Add package's webserver config to webserver webapps dir.
1273 # Usage:
1274 #   %webapp_register [-f] WEBSERVER WEBAPP
1275 #
1276 %webapp_register(f) \
1277 %{?debug:set -x; echo "webapp_register: %{name}-%{version}-%{release} 1:[$1]; 2:[$2]"} \
1278 if [ -n "%{-f:1}" ] || [ "$1" = "1" ] && [ "$2" = "1" ]; then\
1279         /usr/sbin/webapp register %1 %2\
1280 fi\
1281 # reload webserver if the config symlink is there and skip reload if webserver is upgraded\
1282 if [ -L /etc/%1/webapps.d/%(echo "%2" | tr '/' '-').conf ] && [ "$2" -lt "2" ]; then\
1283         %{expand:%service -q %%1 reload}\
1284 fi\
1285 %{nil}
1286
1287 # Remove package's config from webserver webapps dir.
1288 # Usage:
1289 #   %webapp_register [-f] WEBSERVER WEBAPP
1290 %webapp_unregister(f) \
1291 %{?debug:set -x; echo "webapp_unregister: %{name}-%{version}-%{release}: 1:[$1]; 2:[$2]"} \
1292 # remove link if either of the packages are gone \
1293 if [ -n "%{-f:1}" ] || [ "$1" = "0" ] || [ "$2" = "0" ] && [ -L /etc/%1/webapps.d/%(echo "%2" | tr '/' '-').conf ]; then \
1294         /usr/sbin/webapp unregister %1 %2\
1295         %{expand:%service -q %%1 reload}\
1296 fi \
1297 %{nil}
1298
1299 # service macro.
1300 # Author: Elan Ruusamäe <glen@pld-linux.org>
1301 #
1302 # calls usual service restart on package %post, but skips the restart if
1303 # administrator has disabled automatic service restarts in either global
1304 # /etc/sysconfig/rpm or per service /etc/sysconfig/SERVICE file.
1305 #
1306 # Usage:
1307 #   %service [-q] [-n] SERVICE ACTION ["SERVICE NICE DESCRIPTION"]
1308 #
1309 #  -q be silent when service isn't started (for scriplets restaring other package's services)
1310 #  -n NOOP mode, do not actually restart service
1311 #
1312 # Requirements:
1313 # BuildRequires:        rpmbuild(macros) >= 1.268
1314 # Requires:     rc-scripts
1315 # -n option:
1316 # BuildRequires:        rpmbuild(macros) >= 1.450
1317 %service(qn) {{%(export noop=%{-n:1} quiet=%{-q:1} RPM_BUILD_ROOT=%{buildroot}; /usr/lib/rpm/service_generator.sh %{*}) };}
1318
1319 # Java macros. based on jpackage macros.java
1320 #
1321 # Root directory where all Java VMs/SDK/JREs are installed.
1322 %_jvmdir                %{_libdir}/jvm
1323
1324 # Root directory where all Java VMs/SDK/JREs expose their jars
1325 %_jvmjardir             %{_libdir}/jvm-exports
1326
1327 # Root directory for all Java VM/SDK/JRE's private things.
1328 %_jvmprivdir    %{_libdir}/jvm-private
1329
1330 # Root directory for all architecture dependent parts of Java VM/SDK/JRE's
1331 %_jvmlibdir             %{_libdir}/jvm
1332
1333 # Root directory for all architecture independent parts of Java VM/SDK/JRE's
1334 %_jvmdatadir    %{_datadir}/jvm
1335
1336 # Root directory for all configurations parts of Java VM/SDK/JRE's
1337 %_jvmsysconfdir %{_sysconfdir}/jvm
1338
1339 # Root directory for all common architecture dependent parts of Java VM/SDK/JRE's
1340 %_jvmcommonlibdir       %{_libdir}/jvm-common
1341
1342 # Root directory for all common architecture independent parts of Java VM/SDK/JRE's
1343 %_jvmcommondatadir      %{_datadir}/jvm-common
1344
1345 # Root directory for all common configurations parts of Java VM/SDK/JRE's
1346 %_jvmcommonsysconfdir   %{_sysconfdir}/jvm-common
1347
1348 # Directory where arch-specific (JNI) version-independent jars are installed.
1349 %_jnidir                %{_libdir}/java
1350
1351
1352 # JDK selection. Set this to name of the JDK implementation to use
1353 # insead of the system default
1354 #%use_jdk               icedtea6
1355
1356 # expands to the value with right jdk for BuildRequires header
1357 # 'jdk' if %%use_jdk is not defined,  jdk(%%use_jdk) otherwise
1358 # The requirement will not replace current 'default' JDK
1359 %required_jdk   jdk%{?use_jdk:(%{use_jdk})}
1360
1361 %buildrequires_jdk BuildRequires: %required_jdk
1362
1363 %java_home              %{expand:%%global java_home %([ -f %{_javadir}-utils/java-functions ] || { echo ERROR; exit 0; }; %{!?use_jdk:unset JAVA_HOME; . %{_javadir}-utils/java-functions; set_jvm}%{?use_jdk:JAVA_HOME=%{_jvmdir}/%{use_jdk}}; echo ${JAVA_HOME:-ERROR})}%java_home
1364
1365 %_javasrcdir    %{_usrsrc}/java
1366
1367 %ant                    JAVA_HOME=%{java_home} CLASSPATH=$CLASSPATH ant
1368 %jar                    %{java_home}/bin/jar
1369 %java                   %{expand:%%global java %([ -f %{_javadir}-utils/java-functions ] || { echo ERROR; exit 0; }; %{!?use_jdk:unset JAVACMD; . %{_javadir}-utils/java-functions; set_javacmd}%{?use_jdk:JAVACMD=%{java_home}/bin/java}; echo $JAVACMD)}%java
1370 %javac                  %{java_home}/bin/javac
1371 %javadoc                %{java_home}/bin/javadoc
1372
1373 %add_jvm_extension      JAVA_LIBDIR=%{buildroot}/%{_javadir}    %{_bindir}/jvmjar -l
1374
1375 %jpackage_script() \
1376 install -d $RPM_BUILD_ROOT%{_bindir}\
1377 cat > $RPM_BUILD_ROOT%{_bindir}/%5 << 'EOF' \
1378 #!/bin/sh\
1379 #\
1380 # %{name} script\
1381 # JPackage Project <http://www.jpackage.org/>\
1382 \
1383 # Source functions library\
1384 . %{_javadir}-utils/java-functions\
1385 \
1386 # Source system prefs\
1387 if [ -f %{_sysconfdir}/java/%{name}.conf ]; then\
1388     . %{_sysconfdir}/java/%{name}.conf\
1389 fi\
1390 \
1391 # Source user prefs\
1392 if [ -f $HOME/.%{name}rc ]; then\
1393     . $HOME/.%{name}rc\
1394 fi\
1395 \
1396 # Configuration\
1397 MAIN_CLASS=%1\
1398 BASE_FLAGS=%2\
1399 BASE_OPTIONS=%3\
1400 BASE_JARS="%(echo %4 | tr ':' ' ')"\
1401 \
1402 # Set parameters\
1403 set_jvm\
1404 set_classpath $BASE_JARS\
1405 set_flags $BASE_FLAGS\
1406 set_options $BASE_OPTIONS\
1407 \
1408 # Let's start\
1409 run "$@"\
1410 EOF
1411
1412 # jpackage 1.7
1413 # Directory for maven depmaps
1414 #
1415 %_mavendepmapdir /etc/maven
1416 %_mavendepmapfragdir /etc/maven/fragments
1417
1418 #
1419 # add_to_depmap adds an entry to the depmap. The arguments are:
1420 #
1421 # %1 the original groupid
1422 # %2 the original artifact id
1423 # %3 the version
1424 # %4 the new groupid
1425 # %5 the new artifactid
1426 #
1427
1428 %add_to_maven_depmap() \
1429 install -dm 755 $RPM_BUILD_ROOT/%{_mavendepmapfragdir}\
1430 cat >>$RPM_BUILD_ROOT/%{_mavendepmapfragdir}/%{name}<< EOF\
1431 <dependency>\
1432     <maven>\
1433         <groupId>%1</groupId>\
1434         <artifactId>%2</artifactId>\
1435         <version>%3</version>\
1436     </maven>\
1437     <jpp>\
1438         <groupId>%4</groupId>\
1439         <artifactId>%5</artifactId>\
1440         <version>%3</version>\
1441     </jpp>\
1442 </dependency>\
1443 \
1444 EOF\
1445 %{nil}
1446
1447 #==============================================================================
1448 #
1449 # update_maven_depmap updates the main maven depmap
1450 #
1451 %update_maven_depmap() \
1452 echo -e "<dependencies>\\n" > %{_mavendepmapdir}/maven2-depmap.xml\
1453 if [ -d %{_mavendepmapfragdir} ] && [ -n "`find %{_mavendepmapfragdir} -type f`" ]; then\
1454 cat %{_mavendepmapfragdir}/* >> %{_mavendepmapdir}/maven2-depmap.xml\
1455 fi\
1456 echo -e "</dependencies>\\n" >> %{_mavendepmapdir}/maven2-depmap.xml
1457
1458 # JAVA macros specific for PLD
1459
1460 # Directory for tomcat context configuration files
1461 %_tomcatconfdir %{_sharedstatedir}/tomcat/conf/Catalina/localhost
1462
1463 # Tomcat cache path
1464 %_tomcatcachedir %{_sharedstatedir}/tomcat/work/Catalina/localhost
1465
1466 # Clear tomcat cache
1467 # Author: Paweł Zuzelski <pawelz@pld-linux.org>
1468 #
1469 # Usage:
1470 # %%tomcat_clear_cache appname
1471 #
1472 # Call this script in %postun scriptlet. It will remove compiled jsps related to
1473 # given app.
1474 #
1475 %tomcat_clear_cache() %{!?1:ERROR}%{?2:ERROR} %{__rm} -rf %{_tomcatcachedir}/%1
1476
1477 # PEAR install macros
1478 # Author: Elan Ruusamäe <glen@pld-linux.org>
1479 #
1480 # Usage:
1481 #       %%pear_package_setup ...
1482 #
1483 # -a #   - also unpack SOURCE#. for PEAR bootstrapping
1484 # -n FMT - create builddir with FMT, instead of default %%{pearname}-%%{version}
1485 # -z     - unpack pear package and let pear use package.xml (not tarball) for install. for PEAR bootstrapping
1486 # -D     - pass -D to %setup (so the build dir is not removed)
1487 # -c     - register channel from local channel.xml file
1488 # -d     - pass -d arg to pearcmd
1489 #
1490 # unpack PEAR package to %%{_builddir}/FMT. package is extracted with already
1491 # destination hierarchy. you should copy the tree to buildroot after
1492 # patching/reorganizing with %%pear_package_install.
1493 #
1494 # additionally BUILDROOT is stripped from files and files are converted to UNIX
1495 # line endings.
1496 #
1497 # the pear install process output is recorded to install.log, you should put it
1498 # to %%doc for later debug or just for information.
1499 #
1500 # additionally additional-packages.txt is produced if it was detected that the
1501 # package has optional dependencies. the file format is suitable of displaying
1502 # in %%post of a package. you should put this file to %%doc. noautocompressdoc is
1503 # automatically added for this file.
1504
1505
1506 # records install.log and transforms PEAR names to PLD Linux rpm package names.
1507 %__pear_install_log \
1508 tee install.log \
1509 # make post message of optional packages \
1510 grep -E 'can optionally use|Optional feature' install.log | sed -e 's,package "pear/,package "php-pear-,g;s,^pear/,php-pear-,;s,^pear/,php-pear-,' > optional-packages.txt \
1511 if [ -s optional-packages.txt ]; then \
1512         awk -F'"' '/use package/{print $2}' optional-packages.txt | sed -e "s,_,/,g;s,php-pear-, 'pear(,;s,$,.*)'," | tr -d '\\\n' > _noautoreq \
1513 else \
1514         rm -f optional-packages.txt \
1515 fi \
1516 %{nil}
1517
1518 # Command invoking PEAR CLI
1519 # Same as /usr/bin/pear, except we force GMT timezone
1520 %__pear %__php -doutput_buffering=1 -dopen_basedir="" -dmemory_limit=-1 -ddate.timezone=GMT /usr/share/pear/pearcmd.php
1521
1522 %pear_install(a:d:n:zD) \
1523 %__pear \\\
1524         -c %{builddir}/pearrc \\\
1525         -d doc_dir=/docs \\\
1526         -d temp_dir=/tmp \\\
1527         -d php_dir=%{-c:%{builddir}/}%{php_pear_dir} \\\
1528         -d bin_dir=%{_bindir} \\\
1529         -d data_dir=%{php_pear_dir}/data \\\
1530         -d test_dir=%{php_pear_dir}/tests \\\
1531         %{-d:%(echo "%{-d*}" | awk 'BEGIN{RS=","}{printf("-d %%s \\\\\\n\\t", $1)}')} \\\
1532         install \\\
1533         --packagingroot=%{builddir} \\\
1534         --offline \\\
1535         --nodeps \\\
1536         %{-f:--force} \\\
1537         %{!-z:%{S:%{-a*}%{!-a:0}}}%{-z:$_P} > .install.log || { c=$?; cat .install.log; exit $c; }; \
1538         %{-c:cp -a %{builddir}/%{builddir}/%{php_pear_dir} %{builddir}/%(dirname %{php_pear_dir}); rm -rf %{builddir}/%{builddir}; } \
1539 %{nil}
1540
1541 # The main macro.
1542 # using this macro will append optional-packages.txt to the nocompressdoc list
1543 # as it's displayed to user after package install. and adding additional gzip
1544 # dep is just waste ;)
1545 %pear_package_setup(a:d:n:zDc:) \
1546 %define srcdir %{-n*}%{!-n:%{?_pearname}%{!?_pearname:%{pearname}}-%{version}} \
1547 %define builddir %{_builddir}/%{srcdir} \
1548 %setup -q -c -T %{-D:-D} -n %{srcdir} \
1549 %{-z:%{__tar} zxf %{S:0}; %{-a:%{__tar} zxf %{S:%{-a*}}}} \
1550 %{-z:_P=package2.xml; [ -f $_P ] || _P=package.xml; _N=%{srcdir}; mv $_P $_N; cd $_N} \
1551 %{-c:%{__pear} -c pearrc config-set php_dir %{builddir}/%{php_pear_dir}; %__pear -c %{builddir}/pearrc channel-add %{-c*}} \
1552 %pear_install \
1553 %{-z:cd ..} \
1554 %{__tar} --wildcards -zvxf %{S:0} package*.xml \
1555 cat %{-z:$_N/}.install.log | %__pear_install_log \
1556 %undos -f php,html,js,xml \
1557 %{!?_noautocompressdoc:%global _noautocompressdoc %{nil}}%{expand:%%global _noautocompressdoc %{_noautocompressdoc} optional-packages.txt} \
1558 %{!?_noautoprov:%global _noautoprov %{nil}}%{expand:%%global _noautoprov %{_noautoprov} 'pear(tests/.*)'} \
1559 %{nil}
1560
1561 # Copies extracted PEAR package structure and PEAR registry to buildroot.
1562 # Author: Elan Ruusamäe <glen@pld-linux.org>
1563 %pear_package_install() \
1564 cp -a ./%{php_pear_dir}/{.registry,*} $RPM_BUILD_ROOT%{php_pear_dir} \
1565 # tests should not be packaged \
1566 %{__rm} -rf $RPM_BUILD_ROOT%{php_pear_dir}/tests \
1567 # cleanup backups \
1568 find $RPM_BUILD_ROOT%{php_pear_dir} '(' -name '*~' -o -name '*.orig' ')' | xargs -r rm -v \
1569 # help the developer out a little: \
1570 if [ -f _noautoreq ]; then \
1571         echo "AutoReqdep detected:" \
1572         echo "_noautoreq $(cat _noautoreq)" \
1573 fi \
1574 %{nil}
1575
1576 # Print optional package info for pear packages
1577 # Author: Elan Ruusamäe <glen@pld-linux.org>
1578 # Usage:
1579 #   %post -p <lua>
1580 #       %%pear_package_print_optionalpackages
1581 #
1582 # Requirements:
1583 # BuildRequires:        rpmbuild(macros) >= 1.571
1584 %pear_package_print_optionalpackages \
1585 f = io.open("%{_docdir}/%{name}-%{version}/optional-packages.txt", "r") \
1586 if f then \
1587         for l in f:lines() do print(l); end \
1588 end \
1589 %{nil}
1590
1591
1592 # Register OpenLDAP schema.
1593 # Author: Elan Ruusamäe <glen@pld-linux.org>
1594 #
1595 # Usage:
1596 #   %%openldap_schema_register [-d core,nis] %{schemadir}/horde.schema
1597 #
1598 #  -d specify dependant schemas, separated by comma
1599 #
1600 %openldap_schema_register(d:) \
1601 for schema in %*; do \
1602         if ! grep -q "$schema" /etc/openldap/slapd.conf; then \
1603                 %{__sed} -i -e " \
1604                         /^include.*local.schema/{ \
1605                                 iinclude\\t     $schema\
1606                         } \
1607                 " /etc/openldap/slapd.conf \
1608         fi \
1609 done \
1610 # enable dependant schemas \
1611 if [ "%{-d*}" ]; then \
1612         %{__sed} -i -e ' \
1613         /^#include.*\\(%(echo '%{-d*}' | %{__sed} -e 's/,/\\\\|/g')\\)\\.schema/{ \
1614                 s/^#// \
1615         }' /etc/openldap/slapd.conf \
1616 fi \
1617 %{nil}
1618
1619 # Unregister OpenLDAP schema.
1620 # Author: Elan Ruusamäe <glen@pld-linux.org>
1621 #
1622 # Usage:
1623 #   %%openldap_schema_unregister %{schemadir}/horde.schema
1624 #
1625 %openldap_schema_unregister() \
1626 for schema in %*; do \
1627         if grep -q "$schema" /etc/openldap/slapd.conf; then \
1628                 %{__sed} -i -e " \
1629                 /^include.*$(echo "$schema" | %{__sed} -e 's,/,\\\\/,g')/d \
1630                 # for symmetry it would be nice if we disable enabled schemas in post, \
1631                 # but we really can not do that, it would break something else. \
1632                 " /etc/openldap/slapd.conf \
1633         fi \
1634 done \
1635 %{nil}
1636
1637 %env_update [ ! -x /sbin/env-update ] || /sbin/env-update -u || :
1638
1639
1640 # Build modules for kernels 2.6
1641 # Author: Przemyslaw Iskra <sparky@pld-linux.org>
1642 #
1643 # Usage:
1644 #       %build_kernel_modules -m <modules> -C <directory>
1645 #
1646 #  remember that proper Makefile is still required
1647 # Options:
1648 #  -m <modules> (required) -- comma-separated list of modules to save,
1649 #               without .ko extension, may be placed in subdirectory
1650 #  -C <directory> -- change to <directory> before doing anything
1651 #  -p <arg>, -P <arg> -- arguments passeed to make scripts
1652 #  -c -- do not execute make clean
1653 #  <additional arguments> -- all additional arguments will be passed to
1654 #               make modules
1655 #
1656 # Additional patching supported via here document. Try:
1657 #       %build_kernel_modules -m module <<'EOF'
1658 #       your patch script here
1659 #       EOF
1660 # Don't use it unless patching depends on config options.
1661
1662 # Developer note: don't touch it unless you know how to handle '\'.
1663 # - \ in script expands to nothing
1664 # - \\\ in script expands to \
1665 # - \\\ inside definition expands to nothing
1666 # - \\\\\\\ inside definition expands to \
1667 # - in last line \ has to touch arguments so arguments passing
1668 #   in new lines (using \) will be supported
1669
1670 %build_kernel_modules(p:P:m:C:c)                                                                        \
1671 %{!?-m:%{error:%{0}: Required module name/list missing} exit 1}         \
1672                                                                                                                                         \
1673 %define Opts                                                                                                            \\\\\\\
1674 %if "%{_target_base_arch}" != "%{_host_base_arch}"                                      \\\
1675         %if "%{_host_base_arch}" == "x86_64" && "%{_target_base_arch}" == "i386" \\\
1676         CC="%{kgcc}" ARCH=%{_target_base_arch}                                                  \\\
1677         %else                                                                                                                   \\\
1678         ARCH=%{_target_base_arch} CROSS_COMPILE=%{_target_cpu}-pld-linux- \\\
1679         %endif                                                                                                                  \\\
1680 %else                                                                                                                           \\\
1681         CC="%{kgcc}"                                                                                                    \\\
1682 %endif                                                                                                                          \
1683 %define MakeOpts HOSTCC="%{kgcc}" SYSSRC=%{_kernelsrcdir} SYSOUT=$PWD/o \\\\\\\
1684                 O=$PWD/o %{?with_verbose:V=1} %{Opts}                                           \
1685                                                                                                                                         \
1686 %{?-C:cd %{-C*}}                                                                                                        \
1687 compile() {                                                                                                                     \
1688         local L="<" PATCH_SH;                                                                                   \
1689         [[ '%{*}' != *$L$L* ]] || PATCH_SH="set -x -e;$(cat)"                   \
1690         set -e -x                                                                                                               \
1691                                                                                                                                         \
1692         [ -r "%{_kernelsrcdir}/.config" ] || exit 1                                             \
1693         rm -rf o                                                                                                                \
1694         install -d o/include/linux o/include/generated o/arch/x86/include o/arch/powerpc/lib    \
1695         ln -sf %{_kernelsrcdir}/.config o/.config                                               \
1696         ln -sf %{_kernelsrcdir}/Module.symvers o/Module.symvers                 \
1697         if [ -f %{_kernelsrcdir}/include/generated/autoconf.h ]; then   \
1698                 ln -sf %{_kernelsrcdir}/include/generated/autoconf.h o/include/generated/autoconf.h \
1699                 ln -s ../generated/autoconf.h o/include/linux/autoconf.h        \
1700         else                                                                                                                    \
1701                 ln -sf %{_kernelsrcdir}/include/linux/autoconf.h o/include/linux/autoconf.h \
1702         fi                                                                                                                              \
1703         if [ -d %{_kernelsrcdir}/arch/x86/include/generated ]; then             \
1704                 ln -s %{_kernelsrcdir}/arch/x86/include/generated o/arch/x86/include    \
1705         fi                                                                                                                              \
1706                                                                                                                                         \
1707         set +x                                                                                                                  \
1708         [ -z "$PATCH_SH" ] || echo "$PATCH_SH" | %__spec_build_shell    \
1709         set -x                                                                                                                  \
1710                                                                                                                                         \
1711         install -d o/include/config                                                                             \
1712         touch o/include/config/MARKER                                                                   \
1713         ln -sf %{_kernelsrcdir}/include/config/auto.conf o/include/config/auto.conf     \
1714         ln -sf %{_kernelsrcdir}/scripts o/scripts                                               \
1715                                                                                                                                         \
1716         %{!?-c:%{__make} -C %{_kernelsrcdir} clean                                              \\\
1717                 RCS_FIND_IGNORE="-name '*.[ks]o' -o"                                            \\\
1718                 ${1+"$@"}                                                                                                       \\\
1719                 M=$PWD %{MakeOpts}}                                                                                     \
1720                                                                                                                                         \
1721         %{__make} -C %{_kernelsrcdir} modules                                                   \\\
1722                 ${1+"$@"}                                                                                                       \\\
1723                 M=$PWD CONSTIFY_PLUGIN="" %{MakeOpts}                                           \
1724 %{?-C:cd -}                                                                                                                     \
1725 }                                                                                                                                       \
1726 compile_old() {                                                                                                         \
1727         local L="<" PATCH_SH;                                                                                   \
1728         [[ '%{*}' != *$L$L* ]] || PATCH_SH="set -x -e;$(cat)"                   \
1729         set -e -x                                                                                                               \
1730         local cfgs='%{?with_dist_kernel:%{?with_smp: smp}%{?with_up: up}}%{!?with_dist_kernel: nondist}' \
1731                                                                                                                                         \
1732 for cfg in ${cfgs:-dist}; do                                        \
1733         [ -r "%{_kernelsrcdir}/config-$cfg" ] || exit 1                                 \
1734                                                                                                                                         \
1735         rm -rf o                                                                                                                \
1736         install -d o/include/linux o/include/generated o/arch/powerpc/lib       \
1737         ln -sf %{_kernelsrcdir}/config-$cfg o/.config                                   \
1738         ln -sf %{_kernelsrcdir}/Module.symvers-$cfg o/Module.symvers    \
1739         if [ -f %{_kernelsrcdir}/include/generated/autoconf-$cfg.h ]; then      \
1740                 ln -sf %{_kernelsrcdir}/include/generated/autoconf-$cfg.h o/include/generated/autoconf.h \
1741                 ln -s ../generated/autoconf.h o/include/linux/autoconf.h \
1742         else                                                                                                                    \
1743                 ln -sf %{_kernelsrcdir}/include/linux/autoconf-$cfg.h o/include/linux/autoconf.h \
1744         fi                                                                                                                              \
1745                                                                                                                                         \
1746         set +x                                                                                                                  \
1747         [ -z "$PATCH_SH" ] || echo "$PATCH_SH" | %__spec_build_shell    \
1748         set -x                                                                                                                  \
1749                                                                                                                                         \
1750         %if %{with dist_kernel} || %(test -f %{_kernelsrcdir}/scripts/bin2c ; echo $?)  \
1751                 %{__make} -j1 -C %{_kernelsrcdir} prepare scripts                       \\\
1752                         %{-p*} %{-P*}                                                                                   \\\
1753                         %{MakeOpts}                                                                                             \
1754         %else                                                                                                                   \
1755                 install -d o/include/config                                                                     \
1756                 touch o/include/config/MARKER                                                           \
1757                 ln -sf %{_kernelsrcdir}/include/config/auto-$cfg.conf o/include/config/auto.conf        \
1758                 ln -sf %{_kernelsrcdir}/scripts o/scripts                                       \
1759         %endif                                                                                                                  \
1760                                                                                                                                         \
1761         %{!?-c:%{__make} -C %{_kernelsrcdir} clean                                              \\\
1762                 RCS_FIND_IGNORE="-name '*.[ks]o' -o"                                                    \\\
1763                 ${1+"$@"}                                                                                                       \\\
1764                 M=$PWD %{MakeOpts}}                                                                                     \
1765                                                                                                                                         \
1766         %{__make} -C %{_kernelsrcdir} modules                                                   \\\
1767                 ${1+"$@"}                                                                                                       \\\
1768                 M=$PWD CONSTIFY_PLUGIN="" %{MakeOpts}                                           \
1769                                                                                                                                         \
1770         for MODULE in {%{-m*},}; do                                                                             \
1771                 [ -z "${MODULE}" ] || mv ${MODULE}{,-$cfg}.ko                           \
1772         done                                                                                                                    \
1773 done                                                                                                                            \
1774 %{?-C:cd -}                                                                                                                     \
1775 }                                                                                                                                       \
1776 if [ -r "%{_kernelsrcdir}/.config" ]; then      \
1777         compile %{*}                                                    \
1778 else                                                                            \
1779         compile_old %{*}                                                \
1780 fi                                                                                      \
1781 %{nil}
1782
1783
1784 # Install kernel modules built by %build_kernel_modules
1785 # Author: Przemyslaw Iskra <sparky@pld-linux.org>
1786 #
1787 # Usage:
1788 #       %install_kernel_modules -m <modules> -d <directory>
1789 #
1790 # Options:
1791 #  -m <modules> (required) -- comma-separated list of modules to install,
1792 #               without .ko extension, may be placed in subdirectory
1793 #  -d <directory> (required) -- in what subdirectory modules should be
1794 #               installed (eg. misc, kernel/drivers/net)
1795 #  -s <suffix> -- suffix to use when installing modules, useful when module
1796 #               with same name exists in kernel already
1797 #  -n <file> -- name of modprobe config file to use (without .conf extension)
1798 #               for defining aliases, only useful with -s
1799
1800 %install_kernel_modules(m:d:s:n:)                                                                       \
1801 %{!?-m:%{error:%{0}: Required module name (-m) missing}exit 1}          \
1802 %{!?-d:%{error:%{0}: Required module directory missing}exit 1}          \
1803 %{?-n:%{!?-s:%{error:%{0}: Modprobe .conf file requires module suffix}exit 1}} \
1804                                                                                                                                         \
1805 %define KernelD $RPM_BUILD_ROOT/lib/modules/%{_kernel_ver}                      \
1806 %define ModprobeD $RPM_BUILD_ROOT%{_sysconfdir}/modprobe.d/%{_kernel_ver} \
1807                                                                                                                                         \
1808 __install_kernel_modules() {                                                                            \
1809 %{!?debug:set +x;} \
1810                                                                                                                                         \
1811 for MODULE in {%{-m*},}; do                                                                                     \
1812         [ -n "${MODULE}" ] || continue                                                                  \
1813         MNAME=${MODULE##*/}                                                                                     \
1814         install -D ${MODULE}.ko %{KernelD}/%{-d*}/${MNAME}%{-s:-%{-s*}}.ko      \
1815         %{?-s:install -d %{ModprobeD}                                                   \
1816                 echo "alias ${MNAME} ${MNAME}-%{-s*}" >> %{ModprobeD}/%{-n*}.conf}      \
1817 done                                                                                                                            \
1818 }                                                                                                                                       \
1819 __install_kernel_modules_old() {                                                                        \
1820 %{!?debug:set +x;} \
1821 local cfgs='%{?with_dist_kernel:%{?with_smp: smp}%{?with_up: up}}%{!?with_dist_kernel: nondist}' \
1822                                                                                                                                         \
1823 for MODULE in {%{-m*},}; do                                                                                     \
1824         [ -n "${MODULE}" ] || continue                                                                  \
1825         for cfg in ${cfgs:-dist}; do                                    \
1826                 [ "$cfg" = smp ] && suf=smp || suf=                                                     \
1827                 MNAME=${MODULE##*/}                                                                                     \
1828                 install -D ${MODULE}-$cfg.ko                                                            \\\
1829                         %{KernelD}$suf/%{-d*}/${MNAME}%{-s:-%{-s*}}.ko                  \
1830                 %{?-s:install -d %{ModprobeD}$suf                                                       \
1831                         echo "alias ${MNAME} ${MNAME}-%{-s*}"                                   \\\
1832                         >> %{ModprobeD}$suf/%{-n*}.conf}                                                \
1833         done                                                                                                                    \
1834 done                                                                                                                            \
1835 }                                                                                                                                       \
1836 if [ -r "%{_kernelsrcdir}/.config" ]; then      \
1837         __install_kernel_modules                                \
1838 else                                                                            \
1839         __install_kernel_modules_old                    \
1840 fi                                                                                      \
1841 %{nil}
1842
1843 # patchset macros
1844 # Author: Elan Ruusamäe <glen@pld-linux.org>
1845 #
1846 # Usage:
1847 #   %patchset_source -f <seq(1) format> <start> [<end>]
1848 #   %patchset_patch <start> [<end>]
1849 #
1850 # If <end> is omited, it is assumed to be <start>.
1851 #
1852 # For example in preamble:
1853 #  %patchset_source -f ftp://ftp.vim.org/pub/editors/vim/patches/7.0/7.0.%03g 33 44
1854 # and in %prep:
1855 #  %patchset_patch 33 44
1856
1857 # generate SourceX urls from range START STOP
1858 # Format can be SINGLE format char of %e, %f, %g, see seq(1)
1859 # The sources start from 10000
1860 %patchset_source(f:b:) %(
1861         base=%{-b*}%{!-b*:10000};
1862         start=$(expr $base + %1);
1863         end=$(expr $base + %{?2}%{!?2:%{1}});
1864         # we need to call seq twice as it doesn't allow two formats
1865         seq -f 'Patch%g:' $start $end > %{tmpdir}/__ps1;
1866         seq -f '%{-f*}' %1 %{?2}%{!?2:%{1}} > %{tmpdir}/__ps2;
1867         paste %{tmpdir}/__ps{1,2};
1868         rm -f %{tmpdir}/__ps{1,2};
1869 ) \
1870 %{nil}
1871
1872 # apply sources from %patchset_source
1873 # -p specify -pX for %patch line
1874 # -b base offset: defaults to 10000
1875 %patchset_patch(f:p:b:) %(
1876         base=%{-b*}%{!-b*:10000};
1877         start=$(expr $base + %1);
1878         end=$(expr $base + %{?2}%{!?2:%{1}});
1879         echo ": patchset_patch %1%{?2: to %2}";
1880         seq -f 'patch%g %{-p*:-p%{-p*}}' $start $end | sed -e s,^,%%,;
1881 ) \
1882 %{nil}
1883
1884 # return EXPANDED source url N from current spec
1885 %sourceurl(n:) %(test "$IN_RPM" = 1 && exit 1; export IN_RPM=1; rpmbuild --nodigest --nosignature --nobuild -D "prep %%dump" %{_specdir}/%{name}.spec 2>&1 | awk '$2 ~ /^SOURCEURL%{-n*}/ {print $3}')
1886
1887 # browser plugins v2
1888 # Author: Elan Ruusamäe <glen@pld-linux.org>
1889 #
1890 # Usage:
1891 #       %browser_plugins_add_browser <name> -p <plugindir>
1892 #
1893 #  <name> (required) -- name of the browser. usually %{name}.
1894 #  -p <plugindir> (required) -- in what directory browser searches for its plugins.
1895 #  -b -- default blacklists
1896 #  -a <arch> override arch
1897 #
1898 # Example:
1899 #   %browser_plugins_add_browser %{name} -p %{_firefoxdir}/plugins
1900
1901 %_browserpluginsconfdir         /etc/browser-plugins
1902 %_browserpluginsdir                     %{_libdir}/browser-plugins
1903 %update_browser_plugins         /usr/sbin/update-browser-plugins || :
1904
1905 %browser_plugins_add_browser(p:b:a:) \
1906         browser=%1.%{!-a:%{_target_base_arch}}%{-a*} \
1907         install -d $RPM_BUILD_ROOT%{_browserpluginsconfdir}/{blacklist,browsers}.d \
1908         ln -s %{-p*} $RPM_BUILD_ROOT%{_browserpluginsconfdir}/browsers.d/$browser \
1909         blacklist_file=$RPM_BUILD_ROOT%{_browserpluginsconfdir}/blacklist.d/$browser.blacklist \
1910         echo '# This file format is shell globs at base dir of plugindir' > $blacklist_file \
1911         %{-b:cat >> $blacklist_file %{-b*}} \
1912 %{nil}
1913
1914 # Helper for LUA.
1915 # split string separated by space into quoted list
1916 #
1917 # Author: Elan Ruusamäe <glen@pld-linux.org>
1918 #
1919 # %__lua_split /bin/sh /bin/pdksh -> "/bin/sh", "/bin/pdksh"
1920 %__lua_split() %(echo "%*" | awk '{for (i=1;i<=NF;i++) printf("\\"%%s\\"%%s", $i, i == NF ? "" : ", ")}')
1921
1922 # adjust /etc/shells by adding and removing shells from there
1923 # Author: Elan Ruusamäe <glen@pld-linux.org>
1924 #
1925 # Usage:
1926 #   %post       -p <lua>
1927 #   %lua_add_etc_shells /bin/sh /bin/pdksh
1928 #
1929 #   %preun      -p <lua>
1930 #   if arg[2] == 0 then
1931 #       %lua_remove_etc_shells /bin/bash /bin/rbash
1932 #   end
1933 #
1934 # Requirements:
1935 # BuildRequires:        rpmbuild(macros) >= 1.462
1936 #
1937
1938 %lua_add_etc_shells() \
1939 t = {}\
1940 f = io.open("/etc/shells", "r")\
1941 if f then\
1942         for l in f:lines() do t[l]=l; end\
1943         f:close()\
1944 end\
1945 for _, s in ipairs({%{expand:%%__lua_split %*}}) do\
1946         if not t[s] then\
1947                 print("Adding "..s.." to /etc/shells")\
1948                 f = io.open("/etc/shells", "a"); f:write(s.."\\n"); f:close()\
1949         end\
1950 end\
1951 %{nil}
1952
1953 %lua_remove_etc_shells() \
1954 t = {}\
1955 f = io.open("/etc/shells", "r")\
1956 if f then\
1957         for l in f:lines() do t[l]=l; end\
1958         f:close()\
1959 end\
1960 for _, l in pairs({%{expand:%%__lua_split %*}}) do\
1961         print("Removing "..l.." from /etc/shells")\
1962         t[l] = nil\
1963 end\
1964 s=""\
1965 for _, l in pairs(t) do\
1966         s=s..l.."\\n"\
1967 end\
1968 io.open("/etc/shells", "w"):write(s)\
1969 %{nil}
1970
1971 # Backwards compat. Use of %lua_ prefixed macros is preferred as these are cleaner to read.
1972 #
1973 # Author: Elan Ruusamäe <glen@pld-linux.org>
1974 #
1975 # Usage:
1976 #   %post       -p %add_etc_shells -p /bin/sh /bin/pdksh
1977 #   %preun      -p %remove_etc_shells -p /bin/sh /bin/pdksh
1978 #
1979 #  -p (optional) -- specifies that result is embeded %post script (prepends <lua> as first line)
1980 #
1981 # Requirements:
1982 # BuildRequires:        rpmbuild(macros) >= 1.429
1983 #
1984 %add_etc_shells(p) %{-p:<lua>}\
1985 %{expand:%%lua_add_etc_shells %*}\
1986 %{nil}
1987
1988 %remove_etc_shells(p) %{-p:<lua>}\
1989 %{-p:if arg[2] == 0 then}\
1990 %{expand:%%lua_remove_etc_shells %*}\
1991 %{-p:end} \
1992 %{nil}
1993
1994 # Check syntax for Python files
1995 #
1996 # Author: Elan Ruusamäe <glen@pld-linux.org>
1997 # Author: Arkadiusz Miśkiewicz <arekm@pld-linux.org>
1998 #
1999 # Usage:
2000 #   %py_lint src
2001 #
2002 # Requirements:
2003 # BuildRequires:        python
2004 # BuildRequires:        rpmbuild(macros) >= 1.602
2005
2006 %py_lint() \
2007 __py_lint() { \
2008 %{!?debug:set +x;} \
2009 find "$@" -type f -name '*.py' | python -c ' \
2010 import sys \
2011 import compiler \
2012 \
2013 found = err = 0\
2014 for f in sys.stdin: \
2015         fd = open(f.rstrip()) \
2016         c = fd.read() \
2017         fd.close() \
2018         found = found + 1 \
2019         try: \
2020                 compiler.parse(c) \
2021         except SyntaxError, e: \
2022                 print "py_lint: %s: %s" % (f.rstrip(), e) \
2023                 err = err + 1\
2024 \
2025 if not found:\
2026         print >> sys.stderr, "\\npy_lint: ERROR: No files processed.\\n" \
2027         sys.exit(1) \
2028 elif err: \
2029         print >> sys.stderr, "\\npy_lint: ERROR: Syntax errors in %d files.\\n" % err \
2030         sys.exit(1) \
2031 else: \
2032         print >> sys.stderr,  "py_lint: %d files scanned, found no syntax errors." % found \
2033 ' \
2034 }; __py_lint %* \
2035 %{nil}
2036
2037 # Undos files
2038 #
2039 # Author: Paweł Zuzelski <pawelz@pld-linux.org>
2040 # Author: Elan Ruusamäe <glen@pld-linux.org>
2041 #
2042 # Usage:
2043 #   %undos list_of_files
2044 #   %undos -f EXT[,EXT]
2045 #   %undos -i -f EXT[,EXT]
2046 #
2047 #  -f EXT[,EXT] - find(1) files by extensions
2048 #  -i - case insensitive file search
2049 #
2050 # Example:
2051 #   Un-DOS all *.js, *.css files
2052 #   %undos -f js,css
2053 #   Un-DOS all *.js, *.JS files
2054 #   %undos -f js -i
2055 #   undos all Makefiles
2056 #   %{__find} -name Makefile | xargs %undos
2057 #
2058 # Requirements:
2059 # BuildRequires:        sed >= 4.0
2060 # BuildRequires:        rpmbuild(macros) >= 1.565
2061
2062 # NB: make sure this macro stays on one line
2063 # NB: make sure it includes newline escape
2064 %undos(f:i)     %{-f:%{__find} -regextype posix-extended -%{-i:i}regex '^.+\\.(%(echo %{-f*} | tr ',' '|'))$' -print0 | xargs -0} %{__sed} -i -e 's,\\r$,,' %* \
2065 %{nil}
2066
2067 # Hook to register nagios object based plugins in Nagios NRPE daemon config.
2068 #
2069 # Author: Elan Ruusamäe <glen@pld-linux.org>
2070 #
2071 # Usage:
2072 #  -a NAME  -- add command named NAME
2073 #  -d NAME  -- remove command named NAME
2074 #  -f FILE  -- specify plugin configuration FILE to extract command definition from
2075 #
2076 # Sample:
2077 # %triggerin -- nagios-nrpe
2078 # %nagios_nrpe -a %{plugin} -f %{_sysconfdir}/%{plugin}.cfg
2079 #
2080 # %triggerun -- nagios-nrpe
2081 # %nagios_nrpe -d %{plugin} -f %{_sysconfdir}/%{plugin}.cfg
2082 #
2083 # Requirements:
2084 # Requires:                     grep
2085 # Requires:                     sed >= 4.0
2086 # BuildRequires:        rpmbuild(macros) >= 1.552
2087 %nagios_nrpe(a:d:c:f:) {\
2088         m=$(md5sum < /etc/nagios/nrpe.cfg); \
2089         %{-a:# on -a and config exists \
2090         if [ -f /etc/nagios/nrpe.cfg ]; then \
2091                 if ! %{__grep} -q '^command\[%{-a*}\]' /etc/nagios/nrpe.cfg; then \
2092                                 %{__sed} -ne 's/^[ \t]*command_line[ \t]\+\(.\+\)/command[%{-a*}]=\1/p' %{-f*} >> /etc/nagios/nrpe.cfg; \
2093                 fi; \
2094         fi;} \
2095         %{-d:# on package remove, -d and config exists \
2096         if [ "$1" = "0" -a -f /etc/nagios/nrpe.cfg ]; then \
2097                 %{__sed} -i -e '/^[ \t]*command\[%{-d*}\]/d' /etc/nagios/nrpe.cfg; \
2098         fi;} \
2099         if [ "$m" != "$(md5sum < /etc/nagios/nrpe.cfg)" ]; then \
2100                 %service -q nrpe restart; \
2101         fi; \
2102 }%{nil}
2103
2104 # Import or update Cacti template.
2105 #
2106 # Author: Elan Ruusamäe <glen@pld-linux.org>
2107 #
2108 # Usage:
2109 # %cacti_import_template XMLFILE
2110 #  XMLFILE -- XML template to import
2111 #
2112 # Sample:
2113 # %post
2114 # %cacti_import_template %{resourcedir}/cacti_host_template_varnish.xml
2115 #
2116 # Requires:     cacti >= 0.8.7e-8
2117 # BuildRequires:        rpmbuild(macros) >= 1.630
2118 # Note: 1.1 (cacti-0.8.7h) adds requirement for --with-template-rras or --with-user-rras option
2119
2120 %cacti_import_template() {\
2121 v=$(%{__sed} -rne 's/.+Add Graphs Script ([0-9\.]+).+/\1/p' /usr/share/cacti/cli/import_template.php); \
2122 if [ "$v" != "1.0" ]; then \
2123         rra="--with-template-rras"; \
2124 fi; \
2125 /usr/share/cacti/cli/import_template.php --filename=%1 $rra || :; \
2126 }%{nil}
2127
2128 # pre/post script for -upstart subpackages
2129 #
2130 # Author: Jacek Konieczny <jajcus@jajcus.net>
2131 #
2132 # Usage:
2133 #       %upstart_post service_name
2134 #   %upstart_postun service_name
2135 #
2136 # Sample:
2137 # %post upstart
2138 # %upstart_post %{name}
2139 #
2140 # %postun upstart
2141 # %upstart_postun %{name}
2142 #
2143 # Requirements:
2144 # BuildRequires:        rpmbuild(macros) >= 1.560
2145 # Requires:                     rc-scripts >= 0.4.3
2146
2147 # migrate from init script to upstart job
2148 %upstart_post() \
2149         if [ -f /var/lock/subsys/%1 ]; then \
2150                 /sbin/service --no-upstart %1 stop \
2151                 /sbin/service %1 start \
2152         fi
2153
2154 # restart the job after upgrade or migrate to init script on removal
2155 # cannot be stopped with 'service' as /etc/init/$name.conf may be missing
2156 # at this point
2157 %upstart_postun() \
2158         if [ -x /sbin/initctl ] && /sbin/initctl status %1 2>/dev/null | grep -q 'running' ; then \
2159                 /sbin/initctl stop %1 >/dev/null 2>&1 \
2160                 [ -f /etc/rc.d/init.d/%1 -o -f /etc/init/%1.conf ] && { echo -n "Re-"; /sbin/service %1 start; }; \
2161         fi
2162
2163 # Haskell Macros
2164 # BuildRequires:  rpmbuild(macros) >= 1.608
2165 %ghcdir         ghc-%(/usr/bin/ghc --numeric-version 2>/dev/null || echo ERROR)
2166
2167 # update /usr/lib*/ghc-*/package.conf.d/package.cache
2168 # Requires: ghc
2169 # BuildRequires:  rpmbuild(macros) >= 1.607
2170 #
2171 %ghc_pkg_recache() {{ \
2172         umask 022; \
2173         /usr/bin/ghc-pkg recache; \
2174 };} \
2175 %{nil}
2176
2177
2178 # pre/post script for packages supporting systemd units
2179 #
2180 # Author: Bartlomiej Zimon <uzi18@o2.pl>
2181 #                 Jan Rękorajski <baggins@mimuw.edu.pl>
2182 #
2183 # Usage:
2184 # %systemd_reload
2185 # %systemd_service <unit command> service_name1.service service_name2.service
2186 # %systemd_service_enable service_name1.service service_name2.service
2187 # %systemd_service_disable service_name1.service service_name2.service
2188 # %systemd_service_start service_name1.service service_name2.service
2189 # %systemd_service_stop service_name1.service service_name2.service
2190 # %systemd_service_restart service_name1.service service_name2.service
2191 # %systemd_service_reload service_name1.service service_name2.service
2192 #
2193 # %systemd_post service_name1.service service_name2.service
2194 # %systemd_preun service_name1.service service_name2.service
2195 # %systemd_trigger service_name1.service service_name2.service
2196 #
2197 # Sample:
2198 # %post
2199 # %systemd_post %{name}.service
2200 #
2201 # %preun
2202 # %systemd_preun %{name}.service
2203 #
2204 # %postun
2205 # %systemd_reload
2206 #
2207 # %triggerpostun -- %{name} < first-version-with-systemd-units
2208 # %systemd_trigger %{name}.service
2209 #
2210 # Requirements:
2211 # BuildRequires:        rpmbuild(macros) >= 1.647
2212 # Requires:     systemd-units >= 38
2213
2214 %systemd_reload /bin/systemd_booted && SYSTEMD_LOG_LEVEL=warning SYSTEMD_LOG_TARGET=syslog /bin/systemctl --quiet daemon-reload || :
2215
2216 %systemd_service_enable() \
2217         export SYSTEMD_LOG_LEVEL=warning SYSTEMD_LOG_TARGET=syslog \
2218         /bin/systemctl --quiet enable %{*} || : \
2219         /bin/systemd_booted && echo 'Run "/bin/systemctl start %{*}" to start %{*}.' || : \
2220 %{nil}
2221
2222 %systemd_service_disable() \
2223         export SYSTEMD_LOG_LEVEL=warning SYSTEMD_LOG_TARGET=syslog \
2224         /bin/systemctl --quiet disable %{*} || : \
2225 %{nil}
2226
2227 %systemd_service() \
2228         export SYSTEMD_LOG_LEVEL=warning SYSTEMD_LOG_TARGET=syslog \
2229         /bin/systemd_booted && /bin/systemctl --quiet %{*} || : \
2230 %{nil}
2231
2232 %systemd_service_start() \
2233         export SYSTEMD_LOG_LEVEL=warning SYSTEMD_LOG_TARGET=syslog \
2234         /bin/systemd_booted && /bin/systemctl --quiet start %{*} || : \
2235 %{nil}
2236
2237 %systemd_service_stop() \
2238         export SYSTEMD_LOG_LEVEL=warning SYSTEMD_LOG_TARGET=syslog \
2239         /bin/systemd_booted && /bin/systemctl --quiet stop %{*} || : \
2240 %{nil}
2241
2242 %systemd_service_restart() \
2243         export SYSTEMD_LOG_LEVEL=warning SYSTEMD_LOG_TARGET=syslog \
2244         /bin/systemd_booted && /bin/systemctl --quiet try-restart %{*} || : \
2245 %{nil}
2246
2247 %systemd_service_reload() \
2248         export SYSTEMD_LOG_LEVEL=warning SYSTEMD_LOG_TARGET=syslog \
2249         /bin/systemd_booted && /bin/systemctl --quiet reload %{*} || : \
2250 %{nil}
2251
2252 %systemd_trigger() \
2253 want_enable_service() { \
2254         [ -f /etc/sysconfig/rpm ] && . /etc/sysconfig/rpm \
2255         [ ${RPM_ENABLE_SYSTEMD_SERVICE:-yes} = no ] && return 1 \
2256         /sbin/chkconfig --list ${1%.service} 2>/dev/null | grep -qsv "[0-6]:on" && return 1 \
2257         return 0 \
2258 }\
2259         export SYSTEMD_LOG_LEVEL=warning SYSTEMD_LOG_TARGET=syslog \
2260         for s in %{*}; do \
2261                 if want_enable_service $s; then \
2262                         /bin/systemctl --quiet enable $s || : \
2263                 fi \
2264         done \
2265 %{nil}
2266
2267 %systemd_post() \
2268         export SYSTEMD_LOG_LEVEL=warning SYSTEMD_LOG_TARGET=syslog \
2269         /bin/systemd_booted && /bin/systemctl --quiet daemon-reload || : \
2270         if [ $1 -eq 1 ]; then \
2271                 /bin/systemctl --quiet enable %{*} || : \
2272                 /bin/systemd_booted && echo 'Run "/bin/systemctl start %{*}" to start %{*}.' || : \
2273         elif [ -z "$NORESTART" ]; then \
2274                 /bin/systemd_booted && /bin/systemctl --quiet try-restart %{*} || : \
2275         else \
2276                 /bin/systemd_booted && echo 'Run "/bin/systemctl restart %{*}" to restart %{*}.' || : \
2277         fi \
2278 %{nil}
2279
2280 %systemd_preun() \
2281         if [ $1 -eq 0 ]; then \
2282                 export SYSTEMD_LOG_LEVEL=warning SYSTEMD_LOG_TARGET=syslog \
2283                 /bin/systemd_booted && /bin/systemctl --quiet stop %{*} || : \
2284                 /bin/systemctl --quiet disable %{*} || : \
2285         fi \
2286 %{nil}
2287
2288 %systemdunitdir /lib/systemd/system
2289 %systemdtmpfilesdir /usr/lib/tmpfiles.d
2290
2291 # EOF
This page took 0.175305 seconds and 2 git commands to generate.