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