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