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