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