]> git.pld-linux.org Git - packages/rpm.git/blob - rpm.macros
91c212d0ef2cbb8de3214f3b07a6a1d9936cb4bf
[packages/rpm.git] / rpm.macros
1 # $Revision$, $Date$
2 # PLD Linux rpm macros
3
4 %epoch          0
5 %x8664          x86_64 amd64 ia32e
6
7 # kernel compiler
8 %kgcc           %{__cc}
9 %kgcc_package   gcc
10
11 # Build system path macros.
12 #
13 %__autoconf             autoconf %{?debug:-Wall}
14 %__automake             automake -a -c -f --foreign
15 %__autopoint            autopoint --force
16
17 %__gettextize { \
18         if grep -qs 'AM_GNU_GETTEXT.*external' configure.{ac,in} ; then \
19                 gettextize --copy --force --no-changelog; \
20         else \
21                 gettextize --copy --force --no-changelog --intl; \
22         fi; \
23         if [ ! -f po/Makevars ]; then \
24                 cp -f po/Makevars{.template,}; \
25         fi; \
26 }
27
28 %__glib_gettextize      glib-gettextize --copy --force
29 %__gnome_doc_common     gnome-doc-common --copy
30 %__gnome_doc_prepare    gnome-doc-prepare --copy --force
31 %__gtkdocize            gtkdocize --copy
32 %__intltoolize          intltoolize --copy --force
33 %__libtoolize           libtoolize --copy --force
34
35 #       The number of cvs changelog entries kept when building package.
36 %_buildchangelogtruncate 20
37
38 %dependencytracking     %{nil}
39
40 #       Relations between package names that cause dependency loops
41 #       with legacy packages that cannot be fixed. Relations are
42 #       specified as
43 #               p>q
44 #       where package p has a Requires: on something that package q Provides:
45 #
46 # XXX   Note: that there cannot be any whitespace within the string "p>q",
47 #       and that both p and q are package names (i.e. no version/release).
48 %_dependency_whiteout   %{nil}
49
50
51 #-----------------------------------------------------------------
52 #
53 # (re)definition of %{rpm*flags} with %filterout_* support
54 # BuildRequires:        awk
55 # BuildRequires:        rpmbuild(macros) >= 1.315
56 #
57 # Flags specified in %filterout_* are removed from %rpm*flags, exactly:
58 # %rpmcflags    = %optflags - %filterout - %filterout_c   - %filterout_ld
59 # %rpmcxxflags  = %optflags - %filterout - %filterout_cxx - %filterout_ld
60 # %rpmldflags   = %optldflags - %filterout_ld
61 #
62 # Regular expressions are supported, but to avoid some character be treated
63 # as regular expression it must be escaped twice.
64
65 %filter_out                                             \
66         for (i = 1; i in I; i++) {      A=0;    \
67                 for (f in F) {                          \
68                         if (I[i] ~ "^" F[f] "$") A=1;   \
69                 };                                                      \
70                 if (!A) printf(I[i] FS);        \
71         }
72
73 %rpmcflags %(awk 'BEGIN {
74         split("%{?debug:%debugcflags}%{!?debug:%optflags}%{?debuginfocflags}",I);
75         split("%{?filterout} %{?filterout_c} %{?filterout_ld}",F);
76         %{filter_out}
77 }')
78
79 %rpmcxxflags %(awk 'BEGIN {
80         split("%{?debug:%debugcflags}%{!?debug:%optflags}%{?debuginfocflags}",I);
81         split("%{?filterout} %{?filterout_cxx} %{?filterout_ld}",F);
82         %{filter_out}
83 }')
84
85 %rpmldflags %(awk 'BEGIN {
86         split("%{?optldflags}",I);
87         split("%{?filterout_ld}",F)
88         %{filter_out}
89 }')
90
91 # rpmldflags with stripped -Wl, -- in the form flags have to be passed to 'ld'
92 # but, don't use it, better use gcc as linker
93 %ld_rpmldflags %(awk 'BEGIN {
94         split("%{rpmldflags}",F);
95         for (f in F) {
96                 s = F[f];
97                 if (s ~ /^-Wl,/) {
98                         s = substr(s,5);
99                         gsub(/,/," ",s);
100                 };
101                 printf(s FS);
102         };
103 }')
104
105 #-----------------------------------------------------------------
106 %configure2_13 { \
107  if [ -n "$LINGUAS" ]; then unset LINGUAS; fi; \
108  LDFLAGS="${LDFLAGS:-%rpmldflags}" ; export LDFLAGS ; \
109  CFLAGS="${CFLAGS:-%rpmcflags}" ; export CFLAGS ; \
110  CXXFLAGS="${CXXFLAGS:-%rpmcxxflags}" ; export CXXFLAGS ; \
111  FFLAGS="${FFLAGS:-%rpmcflags}" ; export FFLAGS ; \
112  FCFLAGS="${FCFLAGS:-%rpmcflags}" ; export FCFLAGS ; \
113  CPPFLAGS="${CPPFLAGS:-}" ; export CPPFLAGS ; \
114  %{?__cc:CC="%{__cc}" ; export CC ; } \
115  %{?__cxx:CXX="%{__cxx}" ; export CXX ; } \
116  %{?configuredir:%{configuredir}}%{!?configuredir:.}/configure \
117         --host=%{_target_platform} \
118         --prefix=%{_prefix} \
119         --exec-prefix=%{_exec_prefix} \
120         --bindir=%{_bindir} \
121         --sbindir=%{_sbindir} \
122         --sysconfdir=%{_sysconfdir} \
123         --datadir=%{_datadir} \
124         --includedir=%{_includedir} \
125         --libdir=%{_libdir} \
126         --libexecdir=%{_libexecdir} \
127         --localstatedir=%{_localstatedir} \
128         --sharedstatedir=%{_sharedstatedir} \
129         --mandir=%{_mandir} \
130         --infodir=%{_infodir} \
131         --x-libraries=%{?_x_libraries}%{!?_x_libraries:%{_libdir}} \
132         %{dependencytracking} \
133 }
134
135 # override __cmake to add -j4 in your ~/.rpmmacros for parallel make
136 %__cmake        /usr/bin/cmake
137 %cmake { \
138 CC="%{__cc}" \
139 CXX="%{__cxx}" \
140 CFLAGS="%{rpmcflags}" \
141 CXXFLAGS="%{rpmcxxflags}" \
142 %{__cmake} \
143 }
144
145 # override __scons to add -j4 in your ~/.rpmmacros for parallel make
146 %__scons        /usr/bin/scons
147 %scons { \
148 %{__scons} \
149         LDFLAGS="${LDFLAGS:-%rpmldflags}" \
150         CFLAGS="${CFLAGS:-%rpmcflags}" \
151         CXXFLAGS="${CXXFLAGS:-%rpmcxxflags}" \
152         FFLAGS="${FFLAGS:-%rpmcflags}" \
153         CPPFLAGS="${CPPFLAGS:-}" \
154         %{?__cc:CC="%{__cc}"} \
155         %{?__cxx:CXX="%{__cxx}"} \
156         libsuffix=%{_lib} \
157         prefix=%{_prefix} \
158 }
159
160 # waf. see waf.spec
161 # override __waf to add -j4 in your ~/.rpmmacros for parallel make
162 %__waf  /usr/bin/waf
163 %waf { \
164 CC="%{__cc}" \
165 CXX="%{__cxx}" \
166 CPP="%{__cpp}" \
167 CFLAGS="%{rpmcflags}" \
168 CXXFLAGS="%{rpmcxxflags}" \
169 %{__waf} \
170 }
171
172 #----------------------------------------------------------------
173 %global configure_cache 0
174 %configure_cache_file   %{buildroot}.configure.cache
175
176 %configure {./configure \
177         LDFLAGS="${LDFLAGS:-%rpmldflags}" \
178         CFLAGS="${CFLAGS:-%rpmcflags}" \
179         CXXFLAGS="${CXXFLAGS:-%rpmcxxflags}" \
180         FFLAGS="${FFLAGS:-%rpmcflags}" \
181         FCFLAGS="${FCFLAGS:-%rpmcflags}" \
182         CPPFLAGS="${CPPFLAGS:-}" \
183         %{?__cc:CC="%{__cc}"} \
184         %{?__cxx:CXX="%{__cxx}"} \
185         --host=%{_target_platform} \
186         --build=%{_target_platform} \
187         --prefix=%{_prefix} \
188         --exec-prefix=%{_exec_prefix} \
189         --bindir=%{_bindir} \
190         --sbindir=%{_sbindir} \
191         --sysconfdir=%{_sysconfdir} \
192         --datadir=%{_datadir} \
193         --includedir=%{_includedir} \
194         --libdir=%{_libdir} \
195         --libexecdir=%{_libexecdir} \
196         --localstatedir=%{_localstatedir} \
197         --sharedstatedir=%{_sharedstatedir} \
198         --mandir=%{_mandir} \
199         --infodir=%{_infodir} \
200         --x-libraries=%{?_x_libraries}%{!?_x_libraries:%{_libdir}} \
201         %{dependencytracking} \
202         %{?configure_cache:--cache-file=%{configure_cache_file:-%{buildroot}.configure.cache}} \
203 }
204
205 # ------------------------------------------------------------------------
206 # Overloading of some basic macros
207 %prep \
208 %%prep\
209 export LC_ALL=C\
210 export LANG=C\
211 unset LINGUAS ||:\
212 unset LANGUAGE ||:\
213 unset LC_MESSAGES ||:\
214 unset DISPLAY ||:\
215 %{nil}
216
217 %build %%build\
218 export LC_ALL=C\
219 export LANG=C\
220 unset LINGUAS ||:\
221 unset LANGUAGE ||:\
222 unset LC_MESSAGES ||:\
223 unset DISPLAY ||:\
224 %{nil}
225
226 %install \
227 %if 0%{?_enable_debug_packages}\
228 %{?buildsubdir:%{debug_package}}\
229 %endif\
230 %%install\
231 export LC_ALL=C\
232 export LANG=C\
233 unset LINGUAS ||:\
234 unset LANGUAGE ||:\
235 unset LC_MESSAGES ||:\
236 unset DISPLAY ||:\
237 %{nil}
238
239 # Location of autoconf macros
240 %_aclocaldir    %(aclocal --print-ac-dir)
241
242 # Location of omf files
243 %_omf_dest_dir  %(scrollkeeper-config --omfdir)
244
245 # Location of pkgconfig files
246 %_pkgconfigdir  /usr/%{_lib}/pkgconfig
247
248 # Location of desktop files
249 %_desktopdir    /usr/share/applications
250 %_applnkdir     ERROR:_applnkdir_is_obsolete_use_desktopdir_instead
251
252 # Location of pixmaps for applnk/desktop files
253 %_pixmapsdir    /usr/share/pixmaps
254
255 # Location of themable icons for applnk/desktop files
256 %_iconsdir      /usr/share/icons
257
258 # Location of fonts directories
259 %_fontsdir      /usr/share/fonts
260
261 # Location of Gtk and associated libraries documentation
262 %_gtkdocdir     %{_defaultdocdir}/gtk-doc/html
263
264 # Location of KDE documentation
265 %_kdedocdir     %{_defaultdocdir}/kde/HTML
266
267 # unsermake script
268 %__unsermake /usr/share/unsermake/unsermake
269
270 # Current date
271 %date           %(LC_ALL="C" date +"%a %b %d %Y")
272
273 # tmp directory
274 %tmpdir         %(echo "${TMPDIR:-/tmp}")
275
276 # Example files, programs, scripts...
277 %_examplesdir   /usr/src/examples
278
279 # Alternative kernel type/version
280 %_alt_kernel    %{nil}%{?alt_kernel:-%{?alt_kernel}}
281
282 # The directory holding Linux kernel sources
283 %_kernelsrcdir  /usr/src/linux%{_alt_kernel}
284
285 # If non-empty "debug" macro defined, add "dbg" suffix to release number
286 %_rpmfilename           %%{NAME}-%%{VERSION}-%%{RELEASE}%{?debug:dbg}.%%{ARCH}.rpm
287
288 # Requires name = version-release
289 %requires_releq()               %(echo '%*' | LC_ALL="C" xargs -r rpm -q --qf 'Requires: %%{name} = %%{epoch}:%%{version}-%%{release}\\n' | sed -e 's/ (none):/ /' | grep -v "is not")
290
291 %releq_kernel()         %((LC_ALL="C" rpm -qf --qf '%%{name} = %%{epoch}:%%{version}-%%{release}\\n' %{_kernelsrcdir}/include/linux/version.h 2>/dev/null || echo ERROR) | sed -e 's/ (none):/ /' | sed -e 's:-headers::' | grep -vE "(is not|no such)")
292 %requires_releq_kernel(s:)      Requires%{-s:(%{-s*})}: %releq_kernel
293
294 %requires_eq()          %(echo '%*' | LC_ALL="C" xargs -r rpm -q --qf 'Requires: %%{name} = %%{epoch}:%%{version}\\n' | sed -e 's/ (none):/ /' -e 's/ 0:/ /' | grep -v "is not")
295 %requires_eq_to() %(LC_ALL="C" rpm -q --qf 'Requires: %1 = %%{epoch}:%%{version}\\n' %2 | sed -e 's/ (none):/ /' | grep -v "is not")
296
297 %apache_modules_api %(awk '/#define MODULE_MAGIC_NUMBER_MAJOR/ {print $3}' /usr/include/apache/ap_mmn.h 2>/dev/null || echo ERROR)
298
299 # kernel version-release handling
300 %__kernel_ver   %( VER_H=%{_kernelsrcdir}/include/linux/utsrelease.h; [ -f $VER_H ] || VER_H=%{_kernelsrcdir}/include/linux/version.h; [ -f $VER_H ] && (grep UTS_RELEASE $VER_H 2>/dev/null | head -n 1 | cut -d'"' -f2) || (awk '/^VERSION/ { ver = $0; gsub(/VERSION.*=/, NIL, ver); } /^PATCHLEVEL/ { plev = $0; gsub(/PATCHLEVEL.*=/, NIL, plev); } /^SUBLEVEL/ { slev = $0; gsub(/SUBLEVEL.*=/, NIL, slev); } /^EXTRAVERSION/ { ever = $0; gsub(/EXTRAVERSION.*=/, NIL, ever); gsub(/ /, NIL, ever); } END { printf("%d.%d.%d%s", ver, plev, slev, ever); }' %{_kernelsrcdir}/Makefile 2> /dev/null))
301 %__kernel_rel   %(LC_ALL="C" rpm -qf %{_kernelsrcdir}/include/linux/fs.h 2>/dev/null --qf "%{RELEASE}" | grep -v "is not")
302 %__kernel_rpmvr %(LC_ALL="C" rpm -qf %{_kernelsrcdir}/include/linux/fs.h 2>/dev/null --qf "%{VERSION}-%{RELEASE}" | grep -v "is not")
303 %_kernel_ver    %{__kernel_ver}%{?with_dist_kernel:%(echo %{__kernel_ver} | grep -q -e - || echo -%{__kernel_rel})}
304 %_kernel_ver_str %(echo %{!?_without_dist_kernel:%{__kernel_rpmvr}}%{?_without_dist_kernel:%{__kernel_ver}} | sed -e 's/-/_/g')
305
306 # sgml macros
307 %xmlcat_add()           /usr/bin/xmlcatalog --noout --add nextCatalog \"\" %1 /etc/xml/catalog ;
308 %xmlcat_del()           /usr/bin/xmlcatalog --noout --del %1 /etc/xml/catalog ;
309 %xmlcat_add_rewrite     /usr/bin/xmlcatalog --noout --add rewriteSystem
310 %xmlcat_create()        /usr/bin/xmlcatalog --noout --create %1 ;
311 %sgmlcat_add()          /usr/bin/install-catalog --add %1 %2 > /dev/null ;
312 %sgmlcat_del()          /usr/bin/install-catalog --remove %1 %2 > /dev/null ;
313 %docbook_sgmlcat_fix() { for l in \
314 '' \
315 '  -- default decl --' \
316 'DTDDECL "-//OASIS//DTD DocBook XML V%2//EN" "../../xml.dcl"' \
317 '  -- hacks for opensp --' \
318 'SYSTEM "file://%{_datadir}/sgml/docbook/xml-dtd-%2/docbookx.dtd" "%{_datadir}/sgml/docbook/xml-dtd-%2/docbookx.dtd"' \
319 'SYSTEM "http://www.oasis-open.org/docbook/xml/%2/docbookx.dtd"                  "%{_datadir}/sgml/docbook/xml-dtd-%2/docbookx.dtd"' \
320 '' \
321 ; do echo $l; done >> %1 \
322 }
323
324 # vim - "
325
326 # minimum file size needed for compressed documents.
327 # just smaller files than this get larger when compressed.
328 # some stats:
329 # - 0 byte file compressed was 25 bytes .gz
330 # - 39 byte file was compressed as 57
331 # - with test/test.spec@man 158 byte file was compressed also 158
332 %_min_compress_bytes    159
333
334 #-----------------------------------------------------------------
335 # find and gzip all files in %{_mandir} and %{infodir}
336 #
337 # Requires: xargs, find
338 #
339 #%no_install_post_compress_docs 1
340 %__spec_install_post_compress_docs { \
341 %{!?no_install_post_compress_docs:__spec_install_post_compress_docs() { \
342         for i in /usr/share/man /usr/X11R6/man; do \
343                 if [ -d "$RPM_BUILD_ROOT$i" ]; then \
344                         echo "Compress man pages: $i"; \
345                         find "$RPM_BUILD_ROOT$i" -name '*.bz2' -print | xargs -r %{__bzip2} -df; \
346                         find "$RPM_BUILD_ROOT$i" -name '*.gz' -print | xargs -r %{__gzip} -dnf; \
347                         find "$RPM_BUILD_ROOT$i" -type f -size +%{_min_compress_bytes}c -print | xargs -r %{__gzip} -9nf; \
348                 fi; \
349         done; \
350         if [ -d "$RPM_BUILD_ROOT%{_infodir}" ]; then \
351                 echo "Compress info pages: %{_infodir}"; \
352                 find "$RPM_BUILD_ROOT%{_infodir}" -name '*.bz2' -print | xargs -r %{__bzip2} -df; \
353                 find "$RPM_BUILD_ROOT%{_infodir}" -name '*.gz' -print | xargs -r %{__gzip} -dnf; \
354                 find "$RPM_BUILD_ROOT%{_infodir}" -name '*.info*' -type f -size +%{_min_compress_bytes}c -print | xargs -r %{__gzip} -9nf; \
355         fi; \
356 }; __spec_install_post_compress_docs } }
357
358 #-----------------------------------------------------------------
359 # Strip executable binaries and shared object files
360 #
361 # Requires: find, awk, strip, cut, xargs
362 #
363 #%no_install_post_strip 1
364 %__spec_install_post_strip {%{!?debug: \
365 %{!?no_install_post_strip:__spec_install_post_strip() { \
366 if [ -d "$RPM_BUILD_ROOT" ]; then \
367         if [ -d $RPM_BUILD_ROOT/lib/modules ]; then \
368                 modulelist=$(find $RPM_BUILD_ROOT/lib/modules -name '*o' -type f -print); \
369                 printf "Stripping %d kernel modules..." $(echo "$modulelist" | wc -l); \
370                 echo "$modulelist" | xargs -l512 chmod u+w; \
371                 echo "$modulelist" | xargs -l512 %{__strip} --strip-unneeded --remove-section=.comment --remove-section=.note.GNU-stack; \
372                 echo "DONE"; \
373         fi; \
374         filelist=`find $RPM_BUILD_ROOT -type f ! -regex ".*ld-[0-9.]*so.*" ! -regex ".*/usr/lib[0-9]*/debug/.*\.debug" ! -regex ".*%{_docdir}/.*" ! -regex ".*%{_includedir}/.*" %{?_noautostrip:! -regex "%{_noautostrip}"}`; \
375         # vim - " \
376         if [ -z "$filelist" ]; then \
377                 return; \
378         fi; \
379         filetypes=`echo "$filelist" | xargs -r -d'\\n' file`; \
380         elfexelist=`echo "$filetypes" | awk -F: '/ELF.*executable/ {print $1}'`; \
381         elfsharedlist=`echo "$filetypes" | awk -F: '/LF.*shared object/ {print $1}'`; \
382         archiveslist=`echo "$filetypes" | awk -F '/current ar archive/ {print $1}'`; \
383         if [ -n "$elfexelist" ]; then \
384                 printf "Stripping %d ELF executables..." $(echo "$elfexelist" | wc -l); \
385                 chmod u+w $elfexelist; \
386                 %{__strip} --remove-section=.note --remove-section=.comment $elfexelist; \
387                 echo "DONE"; \
388         fi; \
389         if [ -n "$elfsharedlist" ]; then \
390                 printf "Stripping %d ELF shared libraries..." $(echo "$elfsharedlist" | wc -l); \
391                 chmod u+w $elfsharedlist; \
392                 %{__strip} --strip-unneeded --remove-section=.note --remove-section=.comment $elfsharedlist; \
393                 echo "DONE"; \
394         fi; \
395         if [ -n "$archiveslist" ]; then \
396                 printf "Stripping %d ar archives..." $(echo "$elfsharedlist" | wc -l); \
397                 chmod u+w $archiveslist; \
398                 %{__strip} --strip-debug --remove-section=.note --remove-section=.comment $archiveslist; \
399                 echo "DONE"; \
400         fi; \
401 fi; }; __spec_install_post_strip } } }
402
403 #-----------------------------------------------------------------
404 # remove all RPATH from executable binaries and shared object files
405 #
406 # Requires: find, awk, cut, xargs, chrpath, uname
407 #
408 #%no_install_post_chrpath       1
409 %__spec_install_post_chrpath {%{!?debug: \
410 %{!?no_install_post_chrpath: __spec_install_post_chrpath() { \
411 if [ -d "$RPM_BUILD_ROOT" ]; then \
412         files=`find $RPM_BUILD_ROOT -type f ! -regex ".*ld-[0-9.]*so.*" ! -regex ".*/usr/lib[0-9]*/debug/.*" ! -regex ".*%{_docdir}/.*" ! -regex ".*%{_includedir}/.*"  %{?_noautochrpath:! -regex "%{_noautochrpath}"}`; \
413         if [ -n "$files" ]; then \
414                 objs=`echo "$files" | xargs -r -d'\\n' file | awk -F: '/ELF.*(executable.*dynamically linked|shared object)/ {print $1}'`; \
415         fi
416         #"
417         if [ -n "$objs" ]; then \
418                 printf "Remove RPATH from %d executable binaries and shared object files.\n" $(echo "$objs" | wc -l); \
419                 echo "$objs" | \
420                 while read file; do \
421                         rpath= ; \
422                         chmod u+w "$file"; \
423                         for dir in `chrpath -l "$file" | \
424                                         awk '/RPATH=/ { gsub(/.*RPATH=/,""); gsub(/:/," "); print $0 }'` ; do \
425                                         case $dir in \
426                                         /home/* | /tmp/* | /usr/lib | /usr/lib64 | /lib | /lib64 | /usr/local/lib | /usr/local/lib64 | /usr/X11R6/lib | /usr/X11R6/lib64 ) \
427                                                 echo "remove-rpath: $dir in $file"; \
428                                                 ;; \
429                                         * ) \
430                                                 if [ "$rpath" = "" ] ; then rpath="$dir" ; \
431                                                 else rpath="$rpath:$dir" ; fi ; \
432                                                 ;; \
433                                         esac ; \
434                         done ; \
435                         if [ "$rpath" = "" ] ; then chrpath -d "$file" > /dev/null ; \
436                         else chrpath -r "$rpath" "$file" > /dev/null ; fi ; \
437                 done; \
438         fi; \
439 fi; }; __spec_install_post_chrpath } } }
440
441 #-----------------------------------------------------------------
442 # Find and gzip all kernel modules
443 #
444 # Requires: find
445 #
446 #%no_install_post_compress_modules      1
447 %__spec_install_post_compress_modules { \
448 %{!?no_install_post_compress_modules: __spec_install_post_compress_modules() { \
449         if [ -d $RPM_BUILD_ROOT/lib/modules ]; then \
450                 echo "Compress kernel modules"; \
451                 q=$(find $RPM_BUILD_ROOT/lib/modules -name '*o' -type f -print); \
452                 echo "$q" | xargs -r %{__gzip} -9nf; \
453                 printf "%d modules compressed\n" $(echo "$q" | wc -l); \
454                 find $RPM_BUILD_ROOT/lib/modules -name '*o' -type l -printf "%p %l\n" | \
455                 while read a b; do ln -sf $b.gz $a.gz; rm -f $a; done; \
456         fi; \
457 }; __spec_install_post_compress_modules } }
458
459 # Remove common Perl files we don't package
460 %__spec_install_post_perl_clean {\
461 %{!?no_install_post_perl_clean: \
462 %{?pdir:rm -f $RPM_BUILD_ROOT{%{perl_archlib}/perllocal.pod,%{perl_vendorarch}/auto/%{pdir}%{?pnam:/%(echo %{pnam} | tr - /)}/.packlist}} \
463 } }
464
465 #-----------------------------------------------------------------
466 # Update GConf2 schemas
467 #
468 # Requires: GConf2
469 #
470 %gconf_schema_install() \
471         umask 022; \
472         GCONF_CONFIG_SOURCE="xml:readwrite:/etc/gconf/gconf.xml.defaults" /usr/bin/gconftool-2 --makefile-install-rule /etc/gconf/schemas/%{?1}%{!?1:*.schemas} > /dev/null \
473         %{nil}
474
475 %gconf_schema_uninstall() \
476 if [ $1 = 0 ]; then \
477         umask 022; \
478         GCONF_CONFIG_SOURCE="xml:readwrite:/etc/gconf/gconf.xml.defaults" /usr/bin/gconftool-2 --makefile-uninstall-rule /etc/gconf/schemas/%{?1} > /dev/null \
479 fi \
480 %{nil}
481
482 #-----------------------------------------------------------------
483 # Update desktop MIME database
484 # requires: desktop-file-utils
485 #
486 %update_desktop_database_post() {{ \
487         umask 022; \
488         /usr/bin/update-desktop-database -q; \
489 }}
490
491 %update_desktop_database_postun() {{ \
492 if [ $1 = 0 ]; then \
493         umask 022; \
494         /usr/bin/update-desktop-database -q; \
495 fi \
496 }}
497
498 #-----------------------------------------------------------------
499 # Update shared MIME info database
500 # requires: shared-mime-info
501 #
502 %update_mime_database() {{ \
503         umask 022; \
504         /usr/bin/update-mime-database %{_datadir}/mime; \
505 }}
506
507 #-----------------------------------------------------------------
508 # Update icon cache
509 # requires: gtk+
510 #
511 %update_icon_cache() {{ \
512         umask 022; \
513         /usr/bin/gtk-update-icon-cache -qf %{_datadir}/icons/%1; \
514 }}
515
516 #-----------------------------------------------------------------
517 # Update scrollkeeper database
518 # requires: scrollkeeper
519 #
520 %scrollkeeper_update_post() \
521         /usr/bin/scrollkeeper-update -q; \
522         %{nil}
523
524 %scrollkeeper_update_postun() \
525 if [ $1 = 0 ]; then \
526         /usr/bin/scrollkeeper-update -q; \
527 fi \
528 %{nil}
529
530 #-----------------------------------------------------------------
531 # post %install sequence:
532 # - autodeps exceptions
533 # - compress all man and info pages,
534 # - strip all ELF executables and ELF shared objects if not %debug.
535 # - compress kernel modules if any
536
537 ###################################################################
538 # Requires/Provides automation
539 # exceptions system by Jacek Konieczny <jajcus@pld.org.pl>
540 #
541 %__noautoreqfiles       %(sed -e s'/#.*//' /etc/rpm/noautoreqfiles)%{?_noautoreqfiles: %{_noautoreqfiles}}
542 %__noautoprovfiles      %(sed -e s'/#.*//' /etc/rpm/noautoprovfiles)%{?_noautoprovfiles: %{_noautoprovfiles}}
543 %__noautoreq            %(sed -e s'/#.*//' /etc/rpm/noautoreq)%{?_noautoreq: %{_noautoreq}}
544 %__noautoreqdep         %(sed -e s'/#.*//' /etc/rpm/noautoreqdep)%{?_noautoreqdep: %{_noautoreqdep}}
545 %__noautoprov           %(sed -e s'/#.*//' /etc/rpm/noautoprov)%{?_noautoprov: %{_noautoprov}}
546 #%_noautocompressdoc    %{nil}
547 #
548 %_missing_doc_files_terminate_build     1%{nil}
549 %_unpackaged_files_terminate_build      %{nil}
550 # (X)emacs support
551 %___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;}'
552 %_emacs_lispdir %(emacs %___emacs_lispdir_helper)
553 %_xemacs_lispdir %(xemacs %___emacs_lispdir_helper)
554
555 %__php_provides %{nil}
556 %__php_requires %{nil}
557 %__perl_provides %{nil}
558 %__perl_requires %{nil}
559 %__mono_provides %{nil}
560 %__mono_requires %{nil}
561
562 # Perl specific macro definitions.
563 %perl_privlib           %(eval "`%{__perl} -V:installprivlib`"; echo $installprivlib)
564 %perl_archlib           %(eval "`%{__perl} -V:installarchlib`"; echo $installarchlib)
565 %perl_vendorlib         %(eval "`%{__perl} -V:installvendorlib`"; echo $installvendorlib)
566 %perl_vendorarch        %(eval "`%{__perl} -V:installvendorarch`"; echo $installvendorarch)
567 %perl_sitelib           %(eval "`%{__perl} -V:installsitelib`"; echo $installsitelib)
568 %perl_sitearch          %(eval "`%{__perl} -V:installsitearch`"; echo $installsitearch)
569
570 # Ruby
571 %ruby_archdir           %(ruby -r rbconfig -e 'print Config::CONFIG["archdir"]' 2>/dev/null || echo ERROR)
572 %ruby_ridir                     %(ruby -r rbconfig -e 'include Config; print File.join(CONFIG["datadir"], "ri", CONFIG["ruby_version"], "system")' 2>/dev/null || echo ERROR)
573 %ruby_rubylibdir        %(ruby -r rbconfig -e 'print Config::CONFIG["rubylibdir"]' 2>/dev/null || echo ERROR)
574 %ruby_sitearchdir       %(ruby -r rbconfig -e 'print Config::CONFIG["sitearchdir"]' 2>/dev/null || echo ERROR)
575 %ruby_sitelibdir        %(ruby -r rbconfig -e 'print Config::CONFIG["sitelibdir"]' 2>/dev/null || echo ERROR)
576 %ruby_version           %(ruby -r rbconfig -e 'print Config::CONFIG["ruby_version"]' 2>/dev/null || echo ERROR)
577 %ruby_ver_requires_eq   Requires:       ruby(ver) = %ruby_version
578 %ruby_mod_ver_requires_eq       Requires:       ruby-modules(ver) = %ruby_version
579
580 %php_pear_dir           /usr/share/pear
581 %php_extensiondir       %(php-config --extension-dir 2>/dev/null || echo ERROR)
582 %php_sysconfdir         %(php-config --sysconfdir 2>/dev/null || echo ERROR)
583
584 # directory where php includes are installed on system.
585 %__php_includedir               /usr/include/php
586 # extract php/zend api versions
587 %php_major_version              %(awk '/#define PHP_MAJOR_VERSION/{print $3}' %{__php_includedir}/main/php_version.h 2>/dev/null || echo ERROR)
588 %php_api_version                %(awk '/#define PHP_API_VERSION/{print $3}' %{__php_includedir}/main/php.h 2>/dev/null || echo ERROR)
589 %php_pdo_api_version    %(awk '/#define PDO_DRIVER_API/{print $3}' %{__php_includedir}/ext/pdo/php_pdo_driver.h 2>/dev/null || echo ERROR)
590 %php_debug                              %(awk '/#define ZEND_DEBUG/{print $3}' %{__php_includedir}/main/php_config.h 2>/dev/null || echo ERROR)
591 %zend_module_api                %(awk '/#define ZEND_MODULE_API_NO/{print $3}' %{__php_includedir}/Zend/zend_modules.h 2>/dev/null || echo ERROR)
592 %zend_extension_api             %(awk '/#define ZEND_EXTENSION_API_NO/{print $3}' %{__php_includedir}/Zend/zend_extensions.h 2>/dev/null || echo ERROR)
593 %zend_zts                               %(Z=$(grep -sc '^#define ZTS 1' %{__php_includedir}/main/php_config.h); echo ${Z:-ERROR})
594
595 # helper macro
596 %__php_api_requires(v:) Requires: php%{-v*}(%{expand:%1}) = %{expand:%{%{!?2:%{1}}%{?2}}}
597
598 # macros for public use
599 # for php extensions (php-pecl)
600 %requires_php_extension %{__php_api_requires modules_api php_api_version} \
601 %{__php_api_requires zend_module_api} \
602 %{__php_api_requires -v %php_major_version debug php_debug} \
603 %{__php_api_requires -v %php_major_version thread-safety zend_zts}
604
605 # for zend extensions
606 %requires_zend_extension %{__php_api_requires zend_module_api} \
607 %{__php_api_requires zend_extension_api} \
608 %{__php_api_requires -v %php_major_version debug php_debug} \
609 %{__php_api_requires -v %php_major_version thread-safety zend_zts}
610
611 # for php pdo modules (php-pecl-PDO_*)
612 %requires_php_pdo_module %{__php_api_requires PDO_API php_pdo_api_version}
613
614 # for using PHP post scripts. for PHP >= 5.0
615 %php_webserver_restart \
616 [ ! -f /etc/apache/conf.d/??_mod_php.conf ] || %service -q apache restart \
617 [ ! -f /etc/httpd/conf.d/??_mod_php.conf ] || %service -q httpd restart \
618 if [ -f /etc/rc.d/init.d/php-fcgi ]; then \
619         PHP_FCGI_BINARY=; . /etc/sysconfig/php-fcgi 2>/dev/null \
620         if [[ ${PHP_FCGI_BINARY:-php.fcgi} = *php.fcgi* ]]; then \
621                 %service -q php-fcgi restart \
622         fi \
623 fi \
624 %{nil}
625
626 # for using php post scripts. for PHP >= 4.0 && PHP < 5.0
627 %php4_webserver_restart \
628 [ ! -f /etc/apache/conf.d/??_mod_php4.conf ] || %service -q apache restart \
629 [ ! -f /etc/httpd/conf.d/??_mod_php4.conf ] || %service -q httpd restart \
630 if [ -f /etc/rc.d/init.d/php-fcgi ]; then \
631         PHP_FCGI_BINARY=; . /etc/sysconfig/php-fcgi 2>/dev/null \
632         if [[ ${PHP_FCGI_BINARY:-php.fcgi} = *php4.fcgi* ]]; then \
633                 %service -q php-fcgi restart \
634         fi \
635 fi \
636 %{nil}
637
638 # Python specific macro definitions.
639 # python main version
640 %py_ver                 %(python -c "import sys; print sys.version[:3]")
641
642 # directories
643 %py_prefix              %(python -c "import sys; print sys.prefix")
644 %py_libdir              %{py_prefix}/%{_lib}/python%{py_ver}
645 %py_scriptdir   %{py_prefix}/share/python%{py_ver}
646 %py_incdir              /usr/include/python%{py_ver}
647 %py_sitedir             %{py_libdir}/site-packages
648 %py_sitescriptdir %{py_scriptdir}/site-packages
649 %py_dyndir              %{py_libdir}/lib-dynload
650
651 # pure python modules compilation
652 %py_comp                python -c "import compileall; import sys; compileall.compile_dir(sys.argv[1], ddir=sys.argv[1][len('$RPM_BUILD_ROOT'):])"
653
654 %py_ocomp               python -O -c "import compileall; import sys; compileall.compile_dir(sys.argv[1], ddir=sys.argv[1][len('$RPM_BUILD_ROOT'):])"
655
656 # Software written in Python language require Python with main version
657 %pyrequires_eq() Requires:      %1
658
659 # Hardlink binary identical .pyc and .pyo files
660 # (idea by glen <at> pld-linux <dot> org)
661 %__spec_install_post_py_hardlink {\
662 %{!?no_install_post_py_hardlink: __spec_install_post_py_hardlink() { \
663 [ ! -d "$RPM_BUILD_ROOT" ] || find "$RPM_BUILD_ROOT" -name '*.pyc' | while read a; do \
664         b="$(echo $a|sed -e 's/.pyc$/.pyo/')"; \
665         if cmp -s "$a" "$b"; then \
666                 ln -f "$a" "$b"; \
667         fi; \
668 done \
669 }; __spec_install_post_py_hardlink } }
670
671 # remove python sources, so that check-files won't complain
672 # (idea by glen <at> pld-linux <dot> org)
673 %py_postclean() \
674 for d in %{py_sitescriptdir} %{py_sitedir} %*; do \
675  [ ! -d "$RPM_BUILD_ROOT$d" ] || find "$RPM_BUILD_ROOT$d" -name '*.py' -print0 | xargs -0r -l512 rm;\
676 done \
677 %{nil}
678
679 # depmod macro
680 %depmod() { \
681 umask 022; \
682 if [ -e /boot/System.map-%1 ]; then \
683         /sbin/depmod -a -F /boot/System.map-%1 %1; \
684 else \
685         if [ -e /boot/System.map ]; then \
686                 /sbin/depmod -a -F /boot/System.map %1; \
687         else \
688                 /sbin/depmod -a %1; \
689         fi \
690 fi; \
691 }
692
693 # XMMS specific macros
694 %xmms_prefix                    %(xmms-config --prefix 2>/dev/null)
695 %xmms_exec_prefix               %(xmms-config --exec-prefix 2>/dev/null)
696 %xmms_version                   %(xmms-config --version 2>/dev/null)
697 %xmms_datadir                   %(xmms-config --data-dir 2>/dev/null)
698 %xmms_plugindir                 %(xmms-config --plugin-dir 2>/dev/null)
699 %xmms_visualization_plugindir   %(xmms-config --visualization-plugin-dir 2>/dev/null)
700 %xmms_input_plugindir           %(xmms-config --input-plugin-dir 2>/dev/null)
701 %xmms_output_plugindir          %(xmms-config --output-plugin-dir 2>/dev/null)
702 %xmms_effect_plugindir          %(xmms-config --effect-plugin-dir 2>/dev/null)
703 %xmms_general_plugindir         %(xmms-config --general-plugin-dir 2>/dev/null)
704
705 %_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/')
706
707 # user/group checking macros
708 #
709 # Usage:
710 #       %userremove myuser
711 #
712 %userremove     /usr/lib/rpm/user_group.sh user del
713 %groupremove    /usr/lib/rpm/user_group.sh group del
714 #
715 # Usage:
716 #       if %usertestrm myuser; then
717 #               /usr/sbin/userdel -r myuser
718 # Note:
719 #       use these macros only if you need to call userdel/groupdel with
720 #       a non-standard option or take an extra action; otherwise use the
721 #       %userremove/%groupremove macros
722 #
723 %usertestrm     /usr/lib/rpm/user_group.sh user testrm
724 %grouptestrm    /usr/lib/rpm/user_group.sh group testrm
725 # user group membership management macros
726 #
727 # Usage:
728 #       %addusertogroup myuser agroup
729 #
730 %addusertogroup /usr/lib/rpm/user_group.sh user addtogroup
731
732 # banner support (useful in {pre,post}{,un} and triggers)
733 #
734 # Usage:
735 #       %banner name [-a] [-e] [-n] [-tn] <<EOF
736 # the banner text, the banner text
737 # the banner text, and following line
738 #EOF
739 # You can use any form of here-document, <<'EOF' <<-EOT will do.
740 # NOTE: if your use "<<-EOF", then You can actually indent inside here-document.
741 #
742 # -a   - append to the banner
743 # -e   - send to stderr instead of stdout
744 # -n   - no show banner (overrides -t)
745 # -t   - show only, if RPM_SCRIPTVERBOSITY >= n; default n=5
746 %banner(aent:)  \
747 RPM_SCRIPTVERBOSITY=5 \
748 [ -r /etc/sysconfig/rpm ] && . /etc/sysconfig/rpm \
749 if [ -x /usr/bin/banner.sh ]; then \
750         CMD="/usr/bin/banner.sh %{-e:--stderr} %{!-n:$([ $RPM_SCRIPTVERBOSITY -ge %{-t:%{-t*}}%{!-t:5} ] && echo -s)} %{!-a:-m}%{-a:-M} %1" \
751 else \
752         CMD="cat%{-e: >&2}" \
753 fi \
754 eval $CMD %2%{?3: %3} \
755 %nil
756
757 # useradd/groupadd macros
758 # Author: Elan Ruusamäe <glen@pld-linux.org>
759 #
760 # Usage:
761 #   %useradd [-P package] [-u uid] [-d home_dir] [-s shell] [-c comment]
762 #   [-g initial_group] [-G group[,...]] login
763 #
764 #  -u uid. REQUIRED
765 #  -g gid/group. REQUIRED
766 #  -s defaults to /bin/false
767 #  -d defaults to /usr/share/empty
768 #  -c No default
769 #  -r is accepted but ignored (it's always set)
770 #  -k skeleton dir. defaults to /usr/share/empty
771 # rpm specific flags
772 #  -P package name. defaults to %{name}
773 #
774 %useradd(c:d:e:f:g:G:Mmk:op:s:u:rP:) \
775 %{!-u:%{error:useradd: Required argument -u missing}} \
776 %{!-g:%{error:useradd: Required argument -g missing}} \
777 %{!?1:%{error:useradd: Required parameter login missing}} \
778 if [ -n "`/bin/id -u %{expand:%{%{#}}} 2>/dev/null`" ]; then \
779         if [ "`/bin/id -u %{expand:%{%{#}}}`" != "%{-u*}" ]; then \
780                 echo "Error: user %{expand:%{%{#}}} doesn't have uid=%{-u*}. Correct this before installing %{-P*}%{!?-P:%{name}}." 1>&2 \
781                 exit 1 \
782         fi \
783 else \
784         echo "Adding user %{expand:%{%{#}}} UID=%{-u*}." \
785         /usr/sbin/useradd \\\
786                 %{-m:-m -k %{-k*}%{!-k:/usr/share/empty}} \\\
787                 -u %{-u*} \\\
788                 -r \\\
789                 -d %{-d*}%{!-d:/usr/share/empty} \\\
790                 -s %{-s*}%{!-s:/bin/false} \\\
791                 %{-c:-c "%(set -- %{-c*} %{*}; echo $1)"}\\\
792                 -g %{-g*} \\\
793                 %{-M} \\\
794                 %{-G:-G %{-G*}} \\\
795                 %{expand:%{%{#}}} 1>&2 || exit $? \
796         [ ! -x /usr/sbin/nscd ] || /usr/sbin/nscd -i passwd || : \
797 fi;
798
799 # Usage:
800 #   %groupadd [-P package] [-g gid] group
801 #
802 # -g gid. REQUIRED
803 #
804 # Sample:
805 #   %groupadd -P %{name}-base -g %{gid} %{name}
806
807 %groupadd(g:P:rfo)      \
808 %{!-g:%{error:groupadd: Required argument -g missing}} \
809 %{!?1:%{error:groupadd: Required parameter group missing}} \
810 if [ -n "`/usr/bin/getgid %{1}`" ]; then \
811         if [ "`/usr/bin/getgid %{1}`" != "%{-g*}" ]; then \
812                 echo "Error: group %{1} doesn't have gid=%{-g*}. Correct this before installing %{-P*}%{!?-P:%{name}}." 1>&2 \
813                 exit 1 \
814         fi \
815 else \
816         echo "Adding group %{1} GID=%{-g*}." \
817         /usr/sbin/groupadd -g %{-g*} -r %{1} 1>&2 || exit $? \
818         [ ! -x /usr/sbin/nscd ] || /usr/sbin/nscd -i group || : \
819 fi;
820
821 # apache_config_{install/uninstall} macros *DEPRECATED*
822 # Author: Elan Ruusamäe <glen@pld-linux.org>
823 #
824 # You should use webapp macros instead. these are here until single piece of
825 # them is gone from specs ;)
826 #
827 # The config is installed/removed inside trigger, this means that you can any
828 # time install apache1 or apache package and the configuration file is updated.
829 # if you don't need the config for various reason for specific apache, just
830 # remove the symlink from apache config directory. the trigger will not put the
831 # config again to that version of apache. In other words the config is linked
832 # to apache config directory on first install of PACKAGE or apache.
833 #
834 # should be called in trigger body:
835 #  %triggerin -- apache1 >= 1.3.33-2
836 #  %apache_config_install -v 1
837 #
838 # Add package's apache config to apache config.
839 #
840 # Usage:
841 #   %apache_config_install -v {1|2} -c %{_sysconfdir}/apache-%{name}.conf -n 99
842 #
843 #  -v REQUIRED: specify apache version. can be 1 or 2.
844 #  -c OPTIONAL: specify full path to PACKAGE's config. Defaults to %{_sysconfdir}/apache-%{name}.conf.
845 #  -n OPTIONAL: specify config "slot". defaults to 99
846 #  -f OPTIONAL: force symlink creation regardless if package was upraded. useful in triggers
847 #
848 # Internal macros. don't use ;).
849 # expands apache config dir by apache version at build time.
850 %__apache_confdir() %(if [ %{1} = 1 ]; then echo /etc/apache/conf.d; elif [ %{1} = 2 ]; then echo /etc/httpd/httpd.conf; else echo >&2 Unknown apache version specified; fi)
851 # expands apache service name by apache version at build time.
852 %__apache_svcname() %(if [ %{1} = 1 ]; then echo apache; elif [ %{1} = 2 ]; then echo httpd; else echo >&2 Unknown apache version specified; fi)
853
854 %apache_config_install(fv:c:n:) \
855 %{!-v:%{error:apache_config_install: Required argument -v missing}} \
856 %{?debug:set -x; echo "apache_config_install:%{-v*} %{name}-%{version}-%{release} 1:[$1]; 2:[$2]"} \
857 if [ -n "%{-f:1}" ] || ([ "$1" = "1" ] && [ "$2" = "1" ]) && [ -d %{__apache_confdir %{-v*}} ]; then\
858         ln -sf %{-c*}%{!-c:%{_sysconfdir}/apache-%{name}.conf} %{__apache_confdir %{-v*}}/%{-n*}%{!-n:99}_%{name}.conf\
859 fi\
860 # reload apache if the config symlink is there\
861 if [ -L %{__apache_confdir %{-v*}}/%{-n*}%{!-n:99}_%{name}.conf ]; then\
862         # additionally don't reload if target package (the webserver) is upgraded, as webserver is restarted anyway in %post \
863         if [ "$2" != "2" ] && [ -f /var/lock/subsys/%{__apache_svcname %{-v*}} ]; then\
864                 /etc/rc.d/init.d/%{__apache_svcname %{-v*}} reload 1>&2\
865         fi\
866 fi\
867 %{nil}
868
869 # Remove package's apache config from apache config.
870 #
871 # Usage:
872 #   %apache_config_uninstall -v {1|2} -n 99
873 #
874 #  -v REQUIRED: specify apache version. can be 1 or 2.
875 #  -n OPTIONAL: specify config "slot". defaults to 99
876 %apache_config_uninstall(v:n:) \
877 %{!-v:%{error:apache_config_uninstall: Required argument -v missing}} \
878 %{?debug:set -x; echo "apache_config_uninstall:%{-v*} %{name}-%{version}-%{release}: 1:[$1]; 2:[$2]"} \
879 # remove link if either of the packages are gone \
880 if [ "$1" = "0" ] || [ "$2" = "0" ]; then \
881         if [ -L %{__apache_confdir %{-v*}}/%{-n*}%{!-n:99}_%{name}.conf ]; then \
882                 rm -f %{__apache_confdir %{-v*}}/%{-n*}%{!-n:99}_%{name}.conf \
883                 if [ -f /var/lock/subsys/%{__apache_svcname %{-v*}} ]; then \
884                         /etc/rc.d/init.d/%{__apache_svcname %{-v*}} reload 1>&2 \
885                 fi \
886         fi \
887 fi \
888 %{nil}
889
890 # webapp macros
891 # Author: Elan Ruusamäe <glen@pld-linux.org>
892 #
893 # The config is installed/removed inside trigger, this means that you can any
894 # time install apache1/apache/lighttpd package and the configuration file is
895 # updated. if you don't need the config for various reason for specific
896 # webserver, just remove the symlink from config directory using webapp
897 # program. the trigger will not recreate the symlink on upgrades. In other
898 # words the config is linked to webserver config directory on first install of
899 # PACKAGE or WEBSERVER.
900 #
901 # Add package's webserver config to webserver webapps dir.
902 # Usage:
903 #   %webapp_register WEBSERVER WEBAPP
904 #
905 %webapp_register() \
906 %{?debug:set -x; echo "webapp_register: %{name}-%{version}-%{release} 1:[$1]; 2:[$2]"} \
907 if [ "$1" = "1" ] && [ "$2" = "1" ]; then\
908         /usr/sbin/webapp register %1 %2\
909 fi\
910 # reload webserver if the config symlink is there and skip reload if webserver is upgraded\
911 if [ -L /etc/%1/webapps.d/%(echo "%2" | tr '/' '-').conf ] && [ "$2" -lt "2" ]; then\
912         %{expand:%service -q %%1 reload}\
913 fi\
914 %{nil}
915
916 # Remove package's config from webserver webapps dir.
917 # Usage:
918 #   %webapp_register [-f] WEBSERVER WEBAPP
919 %webapp_unregister(f) \
920 %{?debug:set -x; echo "webapp_unregister: %{name}-%{version}-%{release}: 1:[$1]; 2:[$2]"} \
921 # remove link if either of the packages are gone \
922 if [ -n "%{-f:1}" ] || [ "$1" = "0" ] || [ "$2" = "0" ] && [ -L /etc/%1/webapps.d/%(echo "%2" | tr '/' '-').conf ]; then \
923         /usr/sbin/webapp unregister %1 %2\
924         %{expand:%service -q %%1 reload}\
925 fi \
926 %{nil}
927
928 # see browser-plugins.spec / template-browser-plugin.spec
929 # Author: Elan Ruusamäe <glen@pld-linux.org>
930 %nsplugin_install(d:f) { \
931 # create link if it's first install of either of the packages \
932 if [ -n "%{-f:1}" ] || ([ "$1" = "1" ] && [ "$2" = "1" ] && [ -d %{-d*} ]); then \
933 ( \
934 %( \
935         for file in %{*}; do \
936                 echo echo Installing $file to %{-d*}; \
937                 echo "ln -sf %{_libdir}/browser-plugins/$file %{-d*};"; \
938         done ) \
939 ) | ( %banner -t 5 -e %{name}-in ); fi; \
940 }
941
942 %nsplugin_uninstall(d:) { \
943 # remove link if either of the packages are gone \
944 if [ "$1" = "0" ] || [ "$2" = "0" ]; then \
945 ( \
946 %( \
947         for file in %{*}; do \
948                 echo echo Removing $file from %{-d*}; \
949                 echo "rm -f %{-d*}/$file;"; \
950         done ) \
951 ) | ( %banner -t 5 -e %{name}-un ); fi; \
952 }
953
954 # service macro.
955 # Author: Elan Ruusamäe <glen@pld-linux.org>
956 #
957 # calls usual service restart on package %post, but skips the restart if
958 # administrator has disabled automatic service restarts in either global
959 # /etc/sysconfig/rpm or per service /etc/sysconfig/SERVICE file.
960 #
961 # Usage:
962 #   %service [-q] SERVICE ACTION ["SERVICE NICE DESCRIPTION"]
963 #
964 #  -q be silent when service isn't started (for scriplets restaring other package's services)
965 #
966 %service(q) {{%(export quiet=%{-q:1}; /usr/lib/rpm/service_generator.sh %{*}) };}
967
968
969 # Java macros. based on jpackage macros.java
970 #
971 # Root directory where all Java VMs/SDK/JREs are installed.
972 %_jvmdir                %{_libdir}/jvm
973
974 # Root directory where all Java VMs/SDK/JREs expose their jars
975 %_jvmjardir             %{_libdir}/jvm-exports
976
977 # Root directory for all Java VM/SDK/JRE's private things.
978 %_jvmprivdir    %{_libdir}/jvm-private
979
980 # Root directory for all architecture dependent parts of Java VM/SDK/JRE's
981 %_jvmlibdir             %{_libdir}/jvm
982
983 # Root directory for all architecture independent parts of Java VM/SDK/JRE's
984 %_jvmdatadir    %{_datadir}/jvm
985
986 # Root directory for all configurations parts of Java VM/SDK/JRE's
987 %_jvmsysconfdir %{_sysconfdir}/jvm
988
989 # Root directory for all common architecture dependent parts of Java VM/SDK/JRE's
990 %_jvmcommonlibdir       %{_libdir}/jvm-common
991
992 # Root directory for all common architecture independent parts of Java VM/SDK/JRE's
993 %_jvmcommondatadir      %{_datadir}/jvm-common
994
995 # Root directory for all common configurations parts of Java VM/SDK/JRE's
996 %_jvmcommonsysconfdir   %{_sysconfdir}/jvm-common
997
998 # Directory where arch-specific (JNI) version-independent jars are installed.
999 %_jnidir                %{_libdir}/java
1000
1001
1002 %java_home              %([ -f %{_javadir}-utils/java-functions ] || { echo ERROR; exit 0; }; unset JAVA_HOME; . %{_javadir}-utils/java-functions; set_jvm; echo ${JAVA_HOME:-ERROR})
1003
1004 %ant                    JAVA_HOME=%{java_home} ant
1005 %jar                    %{java_home}/bin/jar
1006 %java                   %([ -f %{_javadir}-utils/java-functions ] || { echo ERROR; exit 0; }; unset JAVACMD; . %{_javadir}-utils/java-functions; set_javacmd; echo $JAVACMD)
1007 %javac                  %{java_home}/bin/javac
1008 %javadoc                %{java_home}/bin/javadoc
1009
1010 %add_jvm_extension      JAVA_LIBDIR=%{buildroot}/%{_javadir}    %{_bindir}/jvmjar -l
1011
1012 %jpackage_script() \
1013 install -d $RPM_BUILD_ROOT%{_bindir}\
1014 cat > $RPM_BUILD_ROOT%{_bindir}/%5 << 'EOF' \
1015 #!/bin/sh\
1016 #\
1017 # %{name} script\
1018 # JPackage Project <http://www.jpackage.org/>\
1019 \
1020 # Source functions library\
1021 . %{_javadir}-utils/java-functions\
1022 \
1023 # Source system prefs\
1024 if [ -f %{_sysconfdir}/java/%{name}.conf ]; then\
1025     . %{_sysconfdir}/java/%{name}.conf\
1026 fi\
1027 \
1028 # Source user prefs\
1029 if [ -f $HOME/.%{name}rc ]; then\
1030     . $HOME/.%{name}rc\
1031 fi\
1032 \
1033 # Configuration\
1034 MAIN_CLASS=%1\
1035 BASE_FLAGS=%2\
1036 BASE_OPTIONS=%3\
1037 BASE_JARS="%(echo %4 | tr ':' ' ')"\
1038 \
1039 # Set parameters\
1040 set_jvm\
1041 set_classpath $BASE_JARS\
1042 set_flags $BASE_FLAGS\
1043 set_options $BASE_OPTIONS\
1044 \
1045 # Let's start\
1046 run "$@"\
1047 EOF
1048
1049 # PEAR install macros
1050 # Author: Elan Ruusamäe <glen@pld-linux.org>
1051 #
1052 # Usage:
1053 #       %%pear_package_setup [-a #] [-n FMT]
1054 #
1055 # -a #   - also unpack SOURCE#. for PEAR bootstrapping
1056 # -n FMT - create builddir with FMT, instead of default %%{_pearname}-%%{version}
1057 # -z     - unpack pear package and let pear use package.xml (not tarball) for install. for PEAR bootstrapping
1058 #
1059 # unpack PEAR package to %%{_builddir}/FMT. package is extracted with already
1060 # destination hierarchy. you should copy the tree to buildroot after
1061 # patching/reorganizing with %%pear_package_install.
1062 #
1063 # additionally BUILDROOT is stripped from files and files are converted to UNIX
1064 # line endings.
1065 #
1066 # the pear install process output is recorded to install.log, you should put it
1067 # to %%doc for later debug or just for information.
1068 #
1069 # additionally additional-packages.txt is produced if it was detected that the
1070 # package has optional dependencies. the file format is suitable of displaying
1071 # in %%post of a package. you should put this file to %%doc. noautocompressdoc is
1072 # automatically added for this file.
1073
1074
1075 # records install.log and transforms PEAR names to PLD Linux rpm package names.
1076 %__pear_install_log \
1077 tee install.log \
1078 # make post message of optional packages \
1079 grep 'can optionally use' install.log | sed -e 's,package "pear/,package "php-pear-,g;s,^pear/,php-pear-,' > optional-packages.txt \
1080 if [ -s optional-packages.txt ]; then \
1081         awk -F'"' '/use package/{print $2}' optional-packages.txt | sed -e "s,_,/,g;s,php-pear-, 'pear(,;s,$,.*)'," | tr -d '\\\n' > _noautoreq \
1082 else \
1083         rm -f optional-packages.txt \
1084 fi \
1085 %{nil}
1086
1087 # command invoking pear cli
1088 %__pear /usr/bin/pear
1089
1090 %pear_install(a:n:zD) \
1091 %__pear \\\
1092         -c pearrc \\\
1093         -d doc_dir=/docs \\\
1094         -d php_dir=%{php_pear_dir} \\\
1095         -d bin_dir=%{_bindir} \\\
1096         -d data_dir=%{php_pear_dir}/data \\\
1097         -d test_dir=%{php_pear_dir}/tests \\\
1098         install \\\
1099         --packagingroot=%{builddir} \\\
1100         --offline \\\
1101         --nodeps \\\
1102         %{-f:--force} \\\
1103         %{!-z:%{S:%{-a*}%{!-a:0}}}%{-z:$_P} > .install.log || { c=$?; cat .install.log; exit $c; }; \
1104 %{nil}
1105
1106 # The main macro.
1107 # using this macro will append optional-packages.txt to the nocompressdoc list
1108 # as it's displayed to user after package install. and adding additional gzip
1109 # dep is just waste ;)
1110 %pear_package_setup(a:n:zD) \
1111 %define srcdir %{-n*}%{!-n:%{_pearname}-%{version}} \
1112 %define builddir %{_builddir}/%{srcdir} \
1113 %setup -q -c -T %{-D:-D} -n %{srcdir} \
1114 %{-z:tar zxf %{S:0}; %{-a:tar zxf %{S:%{-a*}}}} \
1115 %{-z:_P=package2.xml; [ -f $_P ] || _P=package.xml; _N=%{srcdir}; mv $_P $_N; cd $_N} \
1116 %pear_install \
1117 %{-z:cd ..} \
1118 cat %{-z:$_N/}.install.log | %__pear_install_log \
1119 \
1120 # undos sources \
1121 find . -type f -print0 | xargs -0 sed -i -e 's,\\r$,,' \
1122 %{!?_noautocompressdoc:%global _noautocompressdoc %{nil}}%{expand:%%global _noautocompressdoc %{_noautocompressdoc} optional-packages.txt} \
1123 %{!?_noautoprov:%global _noautoprov %{nil}}%{expand:%%global _noautoprov %{_noautoprov} 'pear(tests/.*)'} \
1124 %{nil}
1125
1126 # Copies exctracted PEAR package structure and PEAR registry to buildroot.
1127 # Author: Elan Ruusamäe <glen@pld-linux.org>
1128 %pear_package_install() \
1129 cp -a ./%{php_pear_dir}/{.registry,*} $RPM_BUILD_ROOT%{php_pear_dir} \
1130 find $RPM_BUILD_ROOT%{php_pear_dir} '(' -name '*~' -o -name '*.orig' ')' | xargs -r rm -v \
1131 # help the developer out a little: \
1132 if [ -f _noautoreq ]; then \
1133         echo "AutoReqdep detected:" \
1134         echo "_noautoreq $(cat _noautoreq)" \
1135 fi \
1136 %{nil}
1137
1138
1139 # Register OpenLDAP schema.
1140 # Author: Elan Ruusamäe <glen@pld-linux.org>
1141 #
1142 # Usage:
1143 #   %%openldap_schema_register [-d core,nis] %{schemadir}/horde.schema
1144 #
1145 #  -d specify dependant schemas, separated by comma
1146 #
1147 %openldap_schema_register(d:) \
1148 for schema in %*; do \
1149         if ! grep -q "$schema" /etc/openldap/slapd.conf; then \
1150                 %{__sed} -i -e " \
1151                         /^include.*local.schema/{ \
1152                                 iinclude\\t     $schema\
1153                         } \
1154                 " /etc/openldap/slapd.conf \
1155         fi \
1156 done \
1157 # enable dependant schemas \
1158 if [ "%{-d*}" ]; then \
1159         %{__sed} -i -e ' \
1160         /^#include.*\\(%(echo '%{-d*}' | %{__sed} -e 's/,/\\\\|/g')\\)\\.schema/{ \
1161                 s/^#// \
1162         }' /etc/openldap/slapd.conf \
1163 fi \
1164 %{nil}
1165
1166 # Unregister OpenLDAP schema.
1167 # Author: Elan Ruusamäe <glen@pld-linux.org>
1168 #
1169 # Usage:
1170 #   %%openldap_schema_unregister %{schemadir}/horde.schema
1171 #
1172 %openldap_schema_unregister() \
1173 for schema in %*; do \
1174         if grep -q "$schema" /etc/openldap/slapd.conf; then \
1175                 %{__sed} -i -e " \
1176                 /^include.*$(echo "$schema" | %{__sed} -e 's,/,\\\\/,g')/d \
1177                 # for symmetry it would be nice if we disable enabled schemas in post, \
1178                 # but we really can not do that, it would break something else. \
1179                 " /etc/openldap/slapd.conf \
1180         fi \
1181 done \
1182 %{nil}
1183
1184 %env_update [ ! -x /sbin/env-update ] || /sbin/env-update -u || :
1185
1186
1187 # Build modules for kernels 2.6
1188 # Author: Przemyslaw Iskra <sparky@pld-linux.org>
1189 #
1190 # Usage:
1191 #       %build_kernel_modules -m <modules> -C <directory>
1192 #
1193 #  remember that proper Makefile is still required
1194 # Options:
1195 #  -m <modules> (required) -- comma-separated list of modules to save,
1196 #               without .ko extension, may be placed in subdirectory
1197 #  -C <directory> -- change to <directory> before doing anything
1198 #  -p <arg>, -P <arg> -- arguments passeed to make scripts
1199 #  -c -- do not execute make clean
1200 #  <additional arguments> -- all additional arguments will be passed to
1201 #               make modules
1202 #
1203 # Additional patching supported via here document. Try:
1204 #       %build_kernel_modules -m module <<'EOF'
1205 #       your patch script here
1206 #       EOF
1207 # Don't use it unless patching depends on config options.
1208
1209 # Developer note: don't touch it unless you know how to handle '\'.
1210 # - \ in script expands to nothing
1211 # - \\\ in script expands to \
1212 # - \\\ inside definition expands to nothing
1213 # - \\\\\\\ inside definition expands to \
1214 # - in last line \ has to touch arguments so arguments passing
1215 #   in new lines (using \) will be supported
1216
1217 %build_kernel_modules(p:P:m:C:c)                                                                        \
1218 %{!?-m:%{error:%{0}: Required module name/list missing} exit 1}         \
1219                                                                                                                                         \
1220 %define Opts                                                                                                            \\\\\\\
1221 %if "%{_target_base_arch}" != "%{_arch}"                                                        \\\
1222         %if "%{_arch}" == "x86_64" && "%{_target_base_arch}" == "i386"  \\\
1223         CC="%{__cc}" CPP="%{__cpp}" ARCH=%{_target_base_arch}                   \\\
1224         %else                                                                                                                   \\\
1225         ARCH=%{_target_base_arch} CROSS_COMPILE=%{_target_cpu}-pld-linux- \\\
1226         %endif                                                                                                                  \\\
1227 %else                                                                                                                           \\\
1228         CC="%{__cc}" CPP="%{__cpp}"                                                                             \\\
1229 %endif                                                                                                                          \
1230 %define MakeOpts HOSTCC="%{__cc}" SYSSRC=%{_kernelsrcdir} SYSOUT=$PWD/o \\\\\\\
1231                 O=$PWD/o %{?with_verbose:V=1} %{Opts}                                           \
1232                                                                                                                                         \
1233 %{?-C:cd %{-C*}}                                                                                                        \
1234 compile() {                                                                                                                     \
1235         L="<"; [[ '%{*}' != *$L$L* ]] || PATCH_SH="set -x -e;$(cat)"    \
1236         set -e -x                                                                                                               \
1237                                                                                                                                         \
1238 for cfg in %{?with_dist_kernel:dist}%{!?with_dist_kernel:nondist}; do \
1239         [ -r "%{_kernelsrcdir}/config-$cfg" ] || exit 1                                 \
1240                                                                                                                                         \
1241         rm -rf o                                                                                                                \
1242         install -d o/include/linux                                                                              \
1243         ln -sf %{_kernelsrcdir}/config-$cfg o/.config                                   \
1244         ln -sf %{_kernelsrcdir}/Module.symvers-$cfg o/Module.symvers    \
1245         ln -sf %{_kernelsrcdir}/include/linux/autoconf-$cfg.h o/include/linux/autoconf.h \
1246 %ifarch ppc ppc64                                                                                                       \
1247         install -d o/include/asm                                                                                \
1248         [ ! -d %{_kernelsrcdir}/include/asm-%{_target_base_arch} ] || ln -sf %{_kernelsrcdir}/include/asm-%{_target_base_arch}/* o/include/asm \
1249         [ ! -d %{_kernelsrcdir}/include/asm-powerpc ] || ln -snf %{_kernelsrcdir}/include/asm-powerpc/* o/include/asm   \
1250 %else                                                                                                                           \
1251         ln -sf %{_kernelsrcdir}/include/asm-%{_target_base_arch} o/include/asm \
1252 %endif                                                                                                                          \
1253                                                                                                                                         \
1254         set +x                                                                                                                  \
1255         [ -z "$PATCH_SH" ] || echo "$PATCH_SH" | %__spec_build_shell    \
1256         set -x                                                                                                                  \
1257                                                                                                                                         \
1258         %if %{with dist_kernel}                                                                                 \
1259                 %{__make} -j1 -C %{_kernelsrcdir} prepare scripts                       \\\
1260                         %{-p*} %{-P*}                                                                                   \\\
1261                         %{MakeOpts}                                                                                             \
1262         %else                                                                                                                   \
1263                 install -d o/include/config                                                                     \
1264                 touch o/include/config/MARKER                                                           \
1265                 ln -sf %{_kernelsrcdir}/scripts o/scripts                                       \
1266         %endif                                                                                                                  \
1267                                                                                                                                         \
1268         %{!?-c:%{__make} -C %{_kernelsrcdir} clean                                              \\\
1269                 RCS_FIND_IGNORE="-name '*.ko' -o"                                                       \\\
1270                 M=$PWD %{MakeOpts}}                                                                                     \
1271         %{__make} -C %{_kernelsrcdir} modules                                                   \\\
1272                 ${1+"$@"}                                                                                                       \\\
1273                 M=$PWD %{MakeOpts}                                                                                      \
1274                                                                                                                                         \
1275         for MODULE in {%{-m*},}; do                                                                             \
1276                 [ -z "${MODULE}" ] || mv ${MODULE}{,-$cfg}.ko                           \
1277         done                                                                                                                    \
1278 done                                                                                                                            \
1279 %{?-C:cd -}                                                                                                                     \
1280 }                                                                                                                                       \
1281 compile %{*}\
1282 %{nil}
1283
1284
1285 # Install kernel modules built by %build_kernel_modules
1286 # Author: Przemyslaw Iskra <sparky@pld-linux.org>
1287 #
1288 # Usage:
1289 #       %install_kernel_modules -m <modules> -d <directory>
1290 #
1291 # Options:
1292 #  -m <modules> (required) -- comma-separated list of modules to install,
1293 #               without .ko extension, may be placed in subdirectory
1294 #  -d <directory> (required) -- in what subdirectory modules should be
1295 #               installed (eg. misc, kernel/drivers/net)
1296 #  -s <suffix> -- suffix to use when installing modules, useful when module
1297 #               with same name exists in kernel already
1298 #  -n <file> -- name of modprobe config file to use (without .conf extension)
1299 #               for definig aliases, only useful with -s
1300
1301 %install_kernel_modules(m:d:s:n:)                                                                       \
1302 %{!?-m:%{error:%{0}: Required module name (-m) missing}exit 1}          \
1303 %{!?-d:%{error:%{0}: Required module directory missing}exit 1}          \
1304 %{?-n:%{!?-s:%{error:%{0}: Modprobe .conf file requires module suffix}exit 1}} \
1305                                                                                                                                         \
1306 %define KernelD $RPM_BUILD_ROOT/lib/modules/%{_kernel_ver}                      \
1307 %define ModprobeD $RPM_BUILD_ROOT%{_sysconfdir}/modprobe.d/%{_kernel_ver} \
1308                                                                                                                                         \
1309 install -d %{KernelD}/%{-d*}                                                                    \
1310 %{?-s:install -d %{ModprobeD}}                                                          \
1311                                                                                                                                         \
1312 for MODULE in {%{-m*},}; do                                                                                     \
1313         [ -n "${MODULE}" ] || continue                                                                  \
1314         MNAME=${MODULE##*/}                                                                                             \
1315         %if %{without dist_kernel}                                                                              \
1316                 install ${MODULE}-nondist.ko                                                            \\\
1317                         %{KernelD}/%{-d*}/${MNAME}%{-s:-%{-s*}}.ko                              \
1318                 %{?-s:echo "alias ${MNAME} ${MNAME}-%{-s*}"                                     \\\
1319                         >> %{ModprobeD}/%{-n*}.conf}                                                    \
1320         %else                                                                                                                   \
1321                 install ${MODULE}-dist.ko                                                                               \\\
1322                         %{KernelD}/%{-d*}/${MNAME}%{-s:-%{-s*}}.ko                              \
1323                 %{?-s:echo "alias ${MNAME} ${MNAME}-%{-s*}"                                     \\\
1324                         >> %{ModprobeD}/%{-n*}.conf}                                                    \
1325         %endif                                                                                                                  \
1326 done                                                                                                                            \
1327 %{nil}
1328
1329 # patchset macros
1330 # Author: Elan Ruusamäe <glen@pld-linux.org>
1331 #
1332 # Usage:
1333 #   %patchset_source -f <seq(1) format> <start> [<end>]
1334 #   %patchset_patch <start> [<end>]
1335 #
1336 # If <end> is omited, it is assumed to be <start>.
1337 #
1338 # For example in preamble:
1339 #  %patchset_source -f ftp://ftp.vim.org/pub/editors/vim/patches/7.0/7.0.%03g 33 44
1340 # and in %prep:
1341 #  %patchset_patch 33 44
1342
1343 # generate SourceX urls from range START STOP
1344 # Format can be SINGLE format char of %e, %f, %g, see seq(1)
1345 # The sources start from 10000
1346 %patchset_source(f:b:) %(
1347         base=%{-b*}%{!-b*:10000};
1348         start=$(expr $base + %1);
1349         end=$(expr $base + %{?2}%{!?2:%{1}});
1350         # we need to call seq twice as it doesn't allow two formats
1351         seq -f 'Patch%g:' $start $end > %{tmpdir}/__ps1;
1352         seq -f '%{-f*}' %1 %{?2}%{!?2:%{1}} > %{tmpdir}/__ps2;
1353         paste %{tmpdir}/__ps{1,2};
1354         rm -f %{tmpdir}/__ps{1,2};
1355 ) \
1356 %{nil}
1357
1358 # apply sources from %patchset_source
1359 # -p specify -pX for %patch line
1360 # -b base offset: defaults to 10000
1361 %patchset_patch(f:p:b:) %(
1362         base=%{-b*}%{!-b*:10000};
1363         start=$(expr $base + %1);
1364         end=$(expr $base + %{?2}%{!?2:%{1}});
1365         echo ": patchset_patch %1%{?2: to %2}";
1366         seq -f 'patch%g %{-p*:-p%{-p*}}' $start $end | sed -e s,^,%%,;
1367 ) \
1368 %{nil}
1369
1370 # browser plugins v2
1371 # Author: Elan Ruusamäe <glen@pld-linux.org>
1372 #
1373 # Usage:
1374 #       %browser_plugins_add_browser <name> -p <plugindir>
1375 #
1376 #  <name> (required) -- name of the browser. usually %{name}.
1377 #  -p <plugindir> (required) -- in what directory browser searches for its plugins.
1378 #  -b -- default blacklists
1379 #  -a <arch> override arch
1380 #
1381 # Example:
1382 #   %browser_plugins_add_browser %{name} -p %{_firefoxdir}/plugins
1383
1384 %_browserpluginsconfdir         /etc/browser-plugins
1385 %_browserpluginsdir                     %{_libdir}/browser-plugins
1386 %update_browser_plugins         /usr/sbin/update-browser-plugins || :
1387
1388 %browser_plugins_add_browser(p:b:a:) \
1389         browser=%1.%{!-a:%{_target_base_arch}}%{-a*} \
1390         install -d $RPM_BUILD_ROOT%{_browserpluginsconfdir}/{blacklist,browsers}.d \
1391         ln -s %{-p*} $RPM_BUILD_ROOT%{_browserpluginsconfdir}/browsers.d/$browser \
1392         blacklist_file=$RPM_BUILD_ROOT%{_browserpluginsconfdir}/blacklist.d/$browser.blacklist \
1393         echo '# This file format is shell globs at base dir of plugindir' > $blacklist_file \
1394         %{-b:cat >> $blacklist_file %{-b*}} \
1395 %{nil}
1396
1397 # vim:ts=4 sw=4 noet syn=spec
This page took 0.275564 seconds and 2 git commands to generate.