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