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