Add macro %isu_package to generate ISU Package
[platform/upstream/rpm.git] / macros.in
1 #/*! \page config_macros Default configuration: @RPMCONFIGDIR@/macros
2 # \verbatim
3 #
4 # This is a global RPM configuration file. All changes made here will
5 # be lost when the rpm package is upgraded. Any per-system configuration
6 # should be added to /etc/rpm/macros, while per-user configuration should
7 # be added to ~/.rpmmacros.
8 #
9 #==============================================================================
10 # Macro naming conventions (preliminary):
11 #
12 #       Macros that begin with an underscore are "local" in the sense that
13 #       they (if used) will not be exported in rpm headers. Some macros
14 #       that don't start with an underscore (but look like they should)
15 #       are compatible with macros generated by rpm-2.5.x and will be made
16 #       more consistent in a future release.
17 #
18
19 #==============================================================================
20 # ---- A macro that expands to nothing.
21 #
22 %nil                    %{!?nil}
23
24 #==============================================================================
25 # ---- filesystem macros.
26 #
27 %_usr                   @prefix@
28 %_usrsrc                %{_usr}/src
29 %_var                   @localstatedir@
30
31 #==============================================================================
32 # ---- Generally useful path macros.
33 #
34 %__7zip                 @__7ZIP@
35 %__awk                  @AWK@
36 %__bzip2                @__BZIP2@
37 %__cat                  @__CAT@
38 %__chgrp                @__CHGRP@
39 %__chmod                @__CHMOD@
40 %__chown                @__CHOWN@
41 %__cp                   @__CP@
42 %__cpio                 @__CPIO@
43 %__file                 @__FILE@
44 %__gpg                  @__GPG@
45 %__grep                 @__GREP@
46 %__gzip                 @__GZIP@
47 %__id                   @__ID@
48 %__id_u                 %{__id} -u
49 %__install              @__INSTALL@
50 %__ln_s                 @LN_S@
51 %__lrzip                @__LRZIP@
52 %__lzip                 @__LZIP@
53 # Deprecated, use %__xz instead.
54 %__lzma                 %__xz --format=lzma
55 %__xz                   @__XZ@
56 %__make                 @__MAKE@
57 %__mkdir                @__MKDIR@
58 %__mkdir_p              @__MKDIR_P@
59 %__mv                   @__MV@
60 %__patch                @__PATCH@
61 %__perl                 @__PERL@
62 %__python               @__PYTHON@
63 %__restorecon           @__RESTORECON@
64 %__rm                   @__RM@
65 %__rsh                  @__RSH@
66 %__sed                  @__SED@
67 %__semodule             @__SEMODULE@
68 %__ssh                  @__SSH@
69 %__tar                  @__TAR@
70 %__unzip                @__UNZIP@
71 %__git                  @__GIT@
72 %__hg                   @__HG@
73 %__bzr                  @__BZR@
74 %__quilt                @__QUILT@
75
76 #==============================================================================
77 # ---- Build system path macros.
78 #
79 %__ar                   @AR@
80 %__as                   @AS@
81 %__cc                   @__CC@
82 %__cpp                  @CPP@
83 %__cxx                  @CXX@
84 %__ld                   @__LD@
85 %__nm                   @__NM@
86 %__objcopy              @__OBJCOPY@
87 %__objdump              @__OBJDUMP@
88 %__ranlib               @RANLIB@
89 %__remsh                %{__rsh}
90 %__strip                @__STRIP@
91
92 # XXX avoid failures if tools are not installed when rpm is built.
93 %__libtoolize           libtoolize
94 %__aclocal              aclocal
95 %__autoheader           autoheader
96 %__automake             automake
97 %__autoconf             autoconf
98
99 #==============================================================================
100 # Conditional build stuff.
101
102 # Check if symbol is defined.
103 # Example usage: %if %{defined with_foo} && %{undefined with_bar} ...
104 %defined()      %{expand:%%{?%{1}:1}%%{!?%{1}:0}}
105 %undefined()    %{expand:%%{?%{1}:0}%%{!?%{1}:1}}
106
107 # Shorthand for %{defined with_...}
108 %with()         %{expand:%%{?with_%{1}:1}%%{!?with_%{1}:0}}
109 %without()      %{expand:%%{?with_%{1}:0}%%{!?with_%{1}:1}}
110
111 # Handle conditional builds. %bcond_with is for case when feature is
112 # default off and needs to be activated with --with ... command line
113 # switch. %bcond_without is for the dual case.
114 #
115 # %bcond_with foo defines symbol with_foo if --with foo was specified on
116 # command line.
117 # %bcond_without foo defines symbol with_foo if --without foo was *not*
118 # specified on command line.
119 #
120 # For example (spec file):
121 #
122 # (at the beginning)
123 # %bcond_with extra_fonts
124 # %bcond_without static
125 # (and later)
126 # %if %{with extra_fonts}
127 # ...
128 # %else
129 # ...
130 # %endif
131 # %if ! %{with static}
132 # ...
133 # %endif
134 # %ifdef %{with static}
135 # ...
136 # %endif
137 # %{?with_static: ... }
138 # %{!?with_static: ... }
139 # %{?with_extra_fonts: ... }
140 # %{!?with_extra_fonts: ... }
141
142 #
143 # The bottom line: never use without_foo, _with_foo nor _without_foo, only
144 # with_foo. This way changing default set of bconds for given spec is just
145 # a matter of changing single line in it and syntax is more readable.
146 %bcond_with()           %{expand:%%{?_with_%{1}:%%global with_%{1} 1}}
147 %bcond_without()        %{expand:%%{!?_without_%{1}:%%global with_%{1} 1}}
148 #
149 #==============================================================================
150 # ---- Required rpmrc macros.
151 #       Macros that used to be initialized as a side effect of rpmrc parsing.
152 #       These are the default values that can be overridden by other
153 #       (e.g. per-platform, per-system, per-packager, per-package) macros.
154 #
155 #       The directory where rpm's configuration and scripts live
156 %_rpmconfigdir          %{getconfdir}
157
158 #       The directory where sources/patches will be unpacked and built.
159 %_builddir              %{_topdir}/BUILD
160
161 #       The interpreter used for build scriptlets.
162 %_buildshell            /bin/sh
163
164 #       The path to the bzip2 executable (legacy, use %{__bzip2} instead).
165 %_bzip2bin              %{__bzip2}
166
167 #       The location of the rpm database file(s).
168 %_dbpath                %{_var}/lib/rpm
169
170 #       The location of the rpm database file(s) after "rpm --rebuilddb".
171 %_dbpath_rebuild        %{_dbpath}
172
173 %_keyringpath           %{_dbpath}/pubkeys/
174
175 #
176 #       Path to script that creates debug symbols in a /usr/lib/debug
177 #       shadow tree.
178 #
179 #       A spec file can %%define _find_debuginfo_opts to pass options to
180 #       the script.  See the script for details.
181 #
182
183 %_find_debuginfo_opts %{?_rpm_strip_disable:--strip-disable}
184 %_find_debuginfo_strip_opts %{?_rpm_strip_option:\'--strip-option=%{_rpm_strip_option}\'}
185 %_find_debuginfo_ko_strip_opts %{?_rpm_ko_strip_option:\'--strip-ko-option=%{_rpm_ko_strip_option}\'}
186
187 %__debug_install_post   \
188    %{_rpmconfigdir}/find-debuginfo.sh %{?_missing_build_ids_terminate_build:--strict-build-id} %{?_find_debuginfo_opts} %{?_find_debuginfo_strip_opts} %{?_find_debuginfo_ko_strip_opts} "%{_builddir}/%{?buildsubdir}" %{?_install_debug_manifest} \
189 %{nil}
190
191 #       Template for debug information sub-package.
192 %debug_package \
193 %global __debug_package 1\
194 %package debugsource\
195 Summary: Debug sources for package %{name}\
196 Group: Development/Debug\
197 AutoReqProv: 0\
198 %description debugsource\
199 This package provides debug sources for package %{name}.\
200 Debug sources are useful when developing applications that use this\
201 package or when debugging this package.\
202 %files debugsource -f debugsources.list\
203 %defattr(-,root,root)\
204 %manifest %{name}-debugsource.manifest \
205 %{nil}
206
207 %_defaultdocdir         %{_datadir}/doc/packages
208 %_defaultlicensedir     %{_datadir}/licenses
209 %_docdir_fmt          %%{NAME}
210
211 #       The path to the gzip executable (legacy, use %{__gzip} instead).
212 %_gzipbin               %{__gzip}
213
214 #       The Unix time of the latest kept changelog entry in binary packages.
215 #       Any older entry is not packaged in binary packages.
216 %_changelog_trimtime    0
217
218 #       The directory where newly built binary packages will be written.
219 %_rpmdir                %{_topdir}/RPMS
220
221 #       A template used to generate the output binary package file name
222 #       (legacy).
223 %_rpmfilename           %{_build_name_fmt}
224
225 #       The directory where sources/patches from a source package will be
226 #       installed. This is also where sources/patches are found when building.
227 %_sourcedir             %{_topdir}/SOURCES
228
229 #       The directory where the spec file from a source package will be
230 #       installed.
231 %_specdir               %{_topdir}/SPECS
232
233 #       The directory where newly built source packages will be written.
234 %_srcrpmdir             %{_topdir}/SRPMS
235
236 #       The directory where buildroots will be created.
237 %_buildrootdir          %{_topdir}/BUILDROOT
238
239 #       Build root path, where %install installs the package during build.
240 %buildroot              %{_buildrootdir}/%{name}-%{version}-%{release}.%{_arch}
241
242 #       Directory where temporaray files can be created.
243 %_tmppath               %{_var}/tmp
244
245 #       Path to top of build area.
246 %_topdir                %{expand:%%global _topdir %{lua:if posix.access(rpm.expand("%{_usrsrc}/packages"), "w") then print "%{_usrsrc}/packages" else print "%{getenv:HOME}/rpmbuild" end} \
247 }%_topdir
248
249 #       The path to the unzip executable (legacy, use %{__unzip} instead).
250 %_unzipbin              %{__unzip}
251
252 #==============================================================================
253 # ---- Optional rpmrc macros.
254 #       Macros that are initialized as a side effect of rpmrc and/or spec
255 #       file parsing.
256 #
257 #       The sub-directory (relative to %{_builddir}) where sources are compiled.
258 #       This macro is set after processing %setup, either explicitly from the
259 #       value given to -n or the default name-version.
260 #
261 #%buildsubdir
262
263 #       Configurable distribution information, same as Distribution: tag in a
264 #       specfile.
265 #
266 #%distribution
267
268 #       Configurable distribution URL, same as DistURL: tag in a specfile.
269 #       The URL will be used to supply reliable information to tools like
270 #       rpmfind.
271 #
272 # Note: You should not configure with disturl (or build packages with
273 # the DistURL: tag) unless you are willing to supply content in a
274 # yet-to-be-determined format at the URL specified.
275 #
276 #%disturl
277
278 #       Configurable bug URL, same as BugURL: tag in a specfile.
279 #       The URL will be used to supply reliable information to where
280 #       to file bugs.
281 #
282 #%bugurl
283
284 #       Boolean (i.e. 1 == "yes", 0 == "no") that controls whether files
285 #       marked as %doc should be installed.
286 #%_excludedocs
287
288 #       The port and machine name of a FTP proxy host running TIS firewall.
289 #
290 #%_ftpport
291 #%_ftpproxy
292
293 #       The signature to use and the location of configuration files for
294 #       signing packages with GNU gpg.
295 #
296 #%_gpg_name
297 #%_gpg_path
298
299 #       The port and machine name of an HTTP proxy host.
300 #
301 #%_httpport
302 #%_httpproxy
303
304 #       The PATH put into the environment before running %pre/%post et al.
305 #
306 %_install_script_path   /sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin
307
308 #       A colon separated list of desired locales to be installed;
309 #       "all" means install all locale specific files.
310 #       
311 %_install_langs all
312
313 #       The value of CLASSPATH in build scriptlets (iff configured).
314 #       
315 #%_javaclasspath        all
316
317 #       Import packaging conventions from jpackage.org (prefixed with _
318 #       to avoid name collisions).
319 #       
320 %_javadir      %{_datadir}/java
321 %_javadocdir   %{_datadir}/javadoc
322
323 #       A colon separated list of paths where files should *not* be installed.
324 #       Usually, these are network file system mount points.
325 #
326 #%_netsharedpath
327
328 #       (experimental)
329 #       The type of pattern match used on rpmdb iterator selectors:
330 #       "default"       simple glob-like regex, periods will be escaped,
331 #                       splats will have period prepended, full "^...$" match
332 #                       required. Also, file path tags will use glob(7).
333 #       "strcmp"        compare strings
334 #       "regex"         regex(7) patterns using regcomp(3)/regexec(3)
335 #       "glob"          glob(7) patterns using fnmatch(3)
336 #
337 %_query_selector_match  default
338
339 #       Configurable packager information, same as Packager: in a specfile.
340 #
341 #%packager
342
343 #       Compression type and level for source/binary package payloads.
344 #               "w9.gzdio"      gzip level 9 (default).
345 #               "w9.bzdio"      bzip2 level 9.
346 #               "w6.xzdio"      xz level 6, xz's default.
347 #               "w6.lzdio"      lzma-alone level 6, lzma's default
348 #
349 #%_source_payload       w9.gzdio
350 %_binary_payload        w5.lzdio
351
352 #       Algorithm to use for generating file checksum digests on build.
353 #       If not specified or 0, MD5 is used.
354 #       WARNING: non-MD5 is backwards incompatible, don't enable lightly!
355 #       The supported algorithms may depend on NSS version, as of NSS
356 #       3.11.99.5 the following are supported:
357 #       1       MD5 (default)
358 #       2       SHA1
359 #       8       SHA256
360 #       9       SHA384
361 #       10      SHA512
362 #
363 #%_source_filedigest_algorithm  1
364 #%_binary_filedigest_algorithm  1
365
366 #       Configurable vendor information, same as Vendor: in a specfile.
367 #
368 #%vendor
369
370 #       Default fuzz level for %patch in spec file.
371 %_default_patch_fuzz    0
372
373 #       Default patch flags
374 #%_default_patch_flags  -s
375
376 #==============================================================================
377 # ---- Build configuration macros.
378 #
379 # Script gets packaged file list on input and buildroot as first parameter.
380 # Returns list of unpackaged files, i.e. files in $RPM_BUILD_ROOT not packaged.
381 #
382 # Note: Disable (by commenting out) for legacy compatibility.
383 %__check_files         %{_rpmconfigdir}/check-files %{buildroot}
384
385 #
386 # Should unpackaged files in a build root terminate a build?
387 #
388 # Note: The default value should be 0 for legacy compatibility.
389 %_unpackaged_files_terminate_build      1
390
391 #
392 # Should missing %doc files in the build directory terminate a build?
393 #
394 # Note: The default value should be 0 for legacy compatibility.
395 %_missing_doc_files_terminate_build     1
396
397 #
398 # Should binaries in noarch packages terminate a build?
399 %_binaries_in_noarch_packages_terminate_build   1
400
401 #
402 # Should rpm try to download missing sources at build-time?
403 # Enabling this is dangerous as long as rpm has no means to validate
404 # the integrity of the download with a digest or signature.
405 %_disable_source_fetch 1
406
407 #
408 # Program to call for each successfully built and written binary package.
409 # The package name is passed to the program as a command-line argument.
410 #
411 #%_build_pkgcheck       %{_bindir}/rpmlint
412
413 #
414 # Program to call for the whole binary package set after build.
415 # The package set is passed to the program via command-line arguments.
416 #
417 #%_build_pkgcheck_set   %{_bindir}/rpmlint
418
419 #
420 # Program to call for successfully built and written SRPM.
421 # The package name is passed to the program as a command-line argument.
422 #
423 #%_build_pkgcheck_srpm  %{_bindir}/rpmlint
424
425 #
426 # Should the build of packages fail if package checker (if defined) returns
427 # non-zero exit status?
428 #
429 #%_nonzero_exit_pkgcheck_terminate_build        1
430
431 #
432 # Should an ELF file processed by find-debuginfo.sh having no build ID
433 # terminate a build?  This is left undefined to disable it and defined to
434 # enable.
435 #
436 #%_missing_build_ids_terminate_build    1
437
438 #
439 # Use internal dependency generator rather than external helpers?
440 %_use_internal_dependency_generator     1
441
442 #
443 # Filter GLIBC_PRIVATE Provides: and Requires:
444 %_filter_GLIBC_PRIVATE                  0
445
446 # Directories whose contents should be considered as documentation.
447 %__docdir_path %{_datadir}/doc:%{_datadir}/man:%{_datadir}/info:%{_datadir}/gtk-doc/html:%{?_docdir}:%{?_mandir}:%{?_infodir}:%{?_javadocdir}:/usr/doc:/usr/man:/usr/info:/usr/X11R6/man
448
449 # maxnum,cuttime,minnum
450 # 2009/03/01 (SLES11 GA)
451 %_binarychangelogtrim 0,1235862000,10
452
453 #
454 # Path to scripts to autogenerate package dependencies,
455 #
456 %__set_helper_env %{lua:
457 posix.setenv("RPMBUILD_SPECFILE",rpm.expand("%?_specfile"));
458 posix.setenv("RPMBUILD_SOURCEDIR",rpm.expand("%?_sourcedir"));
459 }
460 # Note: Used iff _use_internal_dependency_generator is zero.
461 #%__find_provides       %{_rpmconfigdir}/rpmdeps --provides
462 #%__find_requires       %{_rpmconfigdir}/rpmdeps --requires
463 %__find_provides        %{__set_helper_env}%{_rpmconfigdir}/find-provides %name
464 %__find_requires        %{__set_helper_env}%{_rpmconfigdir}/find-requires %name
465 #%__find_conflicts      ???
466 #%__find_obsoletes      ???
467 %__find_supplements     %{__set_helper_env}%{_rpmconfigdir}/find-supplements %name
468 #%__find_enhances       ???
469
470
471 # Path to file attribute classifications for automatic dependency 
472 # extraction, used when _use_internal_dependency_generator
473 # is used (on by default). Files can have any number of attributes
474 # attached to them, and dependencies are separately extracted for
475 # each attribute.
476
477 # To define a new file attribute called "myattr", add a file named
478 # "myattr" to this directory, defining the requires and/or provides
479 # finder script(s) + magic and/or path pattern regex(es).
480 # provides finder and 
481 # %__myattr_requires    path + args to requires finder script for <myattr>
482 # %__myattr_provides    path + args to provides finder script for <myattr>
483 # %__myattr_magic       libmagic classification match regex
484 # %__myattr_path        path based classification match regex
485 # %__myattr_flags       flags to control behavior (just "exeonly" for now)
486 # %__myattr_exclude_magic       exclude by magic regex
487 # %__myattr_exclude_path        exclude by path regex
488 #
489 %_fileattrsdir          %{_rpmconfigdir}/fileattrs
490
491 #==============================================================================
492 # ---- Database configuration macros.
493 #       Macros used to configure Berkley db parameters.
494 #
495 # rpmdb macro configuration values are a colon (or white space) separated
496 # list of tokens, with an optional '!' negation to explicitly disable bit
497 # values, or a "=value" if a parameter. A per-tag value is used (e.g.
498 # %_dbi_config_Packages) if defined, otherwise a per-rpmdb default
499 # (e.g. %_dbi_config).
500 #
501 # Here's a short list of the tokens, with a guess of whether the option is
502 # useful:
503 #       (nothing)       currently used in rpm, known to work.
504 #       "+++"           under development, will be supported in rpm eventually.
505 #       "???"           I have no clue, you're mostly on your own.
506 #
507 # If you do find yourself inclined to fiddle, here's what I see (shrug):
508 # 1) Only the value of mp_size has any serious impact on overall performance,
509 #    and you will need ~256Kb to handle a typical machine install.
510 # 2) Only the Packages hash, because of the size of the values (i.e. headers),
511 #    will ever need tuning. Diddle the pagesize if you're interested, although
512 #    I believe that you will find pagesize=512 "best".
513 # 3) Adding nofsync increases speed, but risks total data loss. Fiddle shared
514 #    and/or mp_size instead.
515 #
516 #   token       works?  Berkeley db flag or value
517 #==================================================
518 #---------------------- DBENV tunable values:
519 #   mmapsize=16Mb       DBENV->set_mp_mmapsize
520 #   cachesize=1Mb       DBENV->set_cachesize, DB->set_cachesize
521 #---------------------- DB->open bits:
522 #   nommap      ???     DB_NOMMAP
523 #----------------------- rpmdb specific configuration:
524 #   lockdbfd            (always on for Packages) Use fcntl(2) locking ?
525 #   nofsync             Disable fsync(2) call performed after db3 writes?
526 #
527
528 # Misc BDB tuning options
529 %__dbi_other                    mp_mmapsize=128Mb mp_size=1Mb
530
531 %_dbi_config                    %{?__dbi_other} nofsync
532
533 # "Packages" should have shared/exclusive fcntl(2) lock using "lockdbfd".
534 %_dbi_config_Packages           %{?__dbi_other} lockdbfd
535
536 #==============================================================================
537 # ---- GPG/PGP/PGP5 signature macros.
538 #       Macro(s) to hold the arguments passed to GPG/PGP for package
539 #       signing and verification.
540 #
541 %__gpg_check_password_cmd       %{__gpg} \
542         gpg --batch --no-verbose --passphrase-fd 3 -u "%{_gpg_name}" -so -
543
544 %__gpg_sign_cmd                 %{__gpg} \
545         gpg --batch --no-verbose --no-armor --passphrase-fd 3 \
546         %{?_gpg_digest_algo:--digest-algo %{_gpg_digest_algo}} \
547         --no-secmem-warning \
548         -u "%{_gpg_name}" -sbo %{__signature_filename} %{__plaintext_filename}
549
550 # XXX rpm >= 4.1 verifies signatures internally
551 #%__gpg_verify_cmd              %{__gpg} \
552 #       gpg --batch --no-verbose --verify --no-secmem-warning \
553 #       %{__signature_filename} %{__plaintext_filename}
554 #
555 # XXX rpm-4.1 verifies prelinked libraries using a prelink undo helper.
556 #       Normally this macro is defined in /etc/rpm/macros.prelink, installed
557 #       with the prelink package. If the macro is undefined, then prelinked
558 #       shared libraries contents are MD5 digest verified (as usual), rather
559 #       than MD5 verifying the output of the prelink undo helper.
560 #
561 #       Note: The 2nd token is used as argv[0] and "library" is a
562 #       placeholder that will be deleted and replaced with the appropriate
563 #       library file path.
564 #%__prelink_undo_cmd     /usr/sbin/prelink prelink -y library
565
566 # Horowitz Key Protocol server configuration
567 #
568 %_hkp_keyserver         http://pgp.mit.edu
569 %_hkp_keyserver_query   %{_hkp_keyserver}:11371/pks/lookup?op=get&search=0x
570
571 #==============================================================================
572 # ---- Transaction macros.
573 #       Macro(s) used to parameterize transactions.
574 #
575 #       The output binary package file name template used when building
576 #       binary packages.
577 #
578 # XXX   Note: escaped %% for use in headerSprintf()
579 %_build_name_fmt        %%{ARCH}/%%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm
580
581 #       Verify digest/signature flags for various rpm modes:
582 #       0x30300 (_RPMVSF_NODIGESTS)    --nohdrchk      if set, don't check digest(s)
583 #       0xc0c00 (_RPMVSF_NOSIGNATURES) --nosignature   if set, don't check signature(s)
584 #       0xf0000 (_RPMVSF_NOPAYLOAD)    --nolegacy      if set, check header+payload (if possible)
585 #       0x00f00 (_RPMVSF_NOHEADER)     --nohdrchk      if set, don't check rpmdb headers
586 #
587 #       For example, the value 0xf0c00 (=0xf0000+0xc0c00) disables legacy
588 #       digest/signature checking, disables signature checking, but attempts
589 #       digest checking, also when retrieving headers from the database.
590 #
591 #       You also can do:
592 #        >>> hex(rpm._RPMVSF_NOSIGNATURES)
593 #        '0xc0c00'
594 #       or:
595 #        >>> hex(rpm._RPMVSF_NOSIGNATURES|rpm._RPMVSF_NOPAYLOAD)
596 #        '0xf0c00'
597 #       at the python prompt for example, after "import rpm".
598 #
599 #       The checking overhead is ~11ms per header for digests/signatures;
600 #       each header from the database is checked only when first encountered
601 #       for each database open.
602 #
603 #       Note: the %_vsflags_erase applies to --upgrade/--freshen modes as
604 #       well as --erase.
605 #
606 %__vsflags              0xf0000
607 %_vsflags_build         %{__vsflags}
608 %_vsflags_erase         %{__vsflags}
609 %_vsflags_install       %{__vsflags}
610 %_vsflags_query         %{__vsflags}
611 %_vsflags_rebuilddb     0xc0c00
612 %_vsflags_verify        %{__vsflags}
613
614 #
615 # Default output format string for rpm -qa
616 #
617 # XXX   Note: escaped %% for use in headerFormat()
618 %_query_all_fmt         %%{nvra}
619
620 #
621 # Default path to the file used for transaction fcntl lock.
622 %_rpmlock_path  %{_dbpath}/.rpm.lock
623
624 #
625 # ISA dependency marker, none for noarch and name-bitness for others
626 %_isa                   %{?__isa:(%{__isa})}%{!?__isa:%{nil}}
627
628 #
629 # Define per-arch and per-os defaults. Normally overridden by per-target macros.
630 %__arch_install_post    %{nil}
631 %__os_install_post      %{___build_post}
632
633 # Macro to fix broken permissions in sources
634 %_fixperms      %{__chmod} -Rf @FIXPERMS@
635
636 #==============================================================================
637 # ---- Scriptlet template templates.
638 #       Global defaults used for building scriptlet templates.
639 #
640
641 %___build_shell         %{?_buildshell:%{_buildshell}}%{!?_buildshell:/bin/sh}
642 %___build_args          -e
643 %___build_cmd           %{?_sudo:%{_sudo} }%{?_remsh:%{_remsh} %{_remhost} }%{?_remsudo:%{_remsudo} }%{?_remchroot:%{_remchroot} %{_remroot} }%{___build_shell} %{___build_args}
644 %___build_pre   \
645   RPM_SOURCE_DIR=\"%{u2p:%{_sourcedir}}\"\
646   RPM_BUILD_DIR=\"%{u2p:%{_builddir}}\"\
647   RPM_OPT_FLAGS=\"%{optflags}\"\
648   RPM_ARCH=\"%{_arch}\"\
649   RPM_OS=\"%{_os}\"\
650   export RPM_SOURCE_DIR RPM_BUILD_DIR RPM_OPT_FLAGS RPM_ARCH RPM_OS\
651   RPM_DOC_DIR=\"%{_docdir}\"\
652   export RPM_DOC_DIR\
653   RPM_PACKAGE_NAME=\"%{name}\"\
654   RPM_PACKAGE_VERSION=\"%{version}\"\
655   RPM_PACKAGE_RELEASE=\"%{release}\"\
656   export RPM_PACKAGE_NAME RPM_PACKAGE_VERSION RPM_PACKAGE_RELEASE\
657   LANG=C\
658   export LANG\
659   unset CDPATH DISPLAY ||:\
660   %{?buildroot:RPM_BUILD_ROOT=\"%{u2p:%{buildroot}}\"\
661   export RPM_BUILD_ROOT}\
662   %{?_javaclasspath:CLASSPATH=\"%{_javaclasspath}\"\
663   export CLASSPATH}\
664   \
665   %{verbose:set -x}%{!verbose:exec > /dev/null}\
666   umask 022\
667   cd \"%{u2p:%{_builddir}}\"\
668
669
670 #%___build_body         %{nil}
671 %___build_post          exit 0
672
673 %___build_template      #!%{___build_shell}\
674 %{___build_pre}\
675 %{nil}
676
677 #%{___build_body}\
678 #%{___build_post}\
679 #%{nil}
680
681 #==============================================================================
682 # ---- Scriptlet templates.
683 #       Macro(s) that expand to a command and script that is executed.
684 #       CAVEAT: All macro expansions must fit in a BUFSIZ (8192 byte) buffer.
685 #
686 %__spec_prep_shell      %{___build_shell}
687 %__spec_prep_args       %{___build_args}
688 %__spec_prep_cmd        %{___build_cmd}
689 %__spec_prep_pre        %{___build_pre}
690 %__spec_prep_body       %{___build_body}
691 %__spec_prep_post       %{___build_post}
692 %__spec_prep_template   #!%{__spec_prep_shell}\
693 %{__spec_prep_pre}\
694 %{nil}
695
696 #%{__spec_prep_body}\
697 #%{__spec_prep_post}\
698 #%{nil}
699
700 %__spec_build_shell     %{___build_shell}
701 %__spec_build_args      %{___build_args}
702 %__spec_build_cmd       %{___build_cmd}
703 %__spec_build_pre       %{___build_pre}
704 %__spec_build_body      %{___build_body}
705 %__spec_build_post      %{___build_post}
706 %__spec_build_template  #!%{__spec_build_shell}\
707 %{__spec_build_pre}\
708 %{nil}
709
710 #%{__spec_build_body}\
711 #%{__spec_build_post}\
712 #%{nil}
713
714 %__spec_install_shell   %{___build_shell}
715 %__spec_install_args    %{___build_args}
716 %__spec_install_cmd     %{___build_cmd}
717 %__spec_install_pre     %{___build_pre}
718 %__spec_install_body    %{___build_body}
719 %__spec_install_post\
720 %{?__debug_package:%{__debug_install_post}}\
721 %{__arch_install_post}\
722 %{__os_install_post}\
723 %{nil}
724 %__spec_install_template        #!%{__spec_install_shell}\
725 %{__spec_install_pre}\
726 %{nil}
727
728 #%{__spec_install_body}\
729 #%{__spec_install_post}\
730 #%{nil}
731
732 %__spec_check_shell     %{___build_shell}
733 %__spec_check_args      %{___build_args}
734 %__spec_check_cmd       %{___build_cmd}
735 %__spec_check_pre       %{___build_pre}
736 %__spec_check_body      %{___build_body}
737 %__spec_check_post      %{___build_post}
738 %__spec_check_template  #!%{__spec_check_shell}\
739 %{__spec_check_pre}\
740 %{nil}
741
742 #%{__spec_check_body}\
743 #%{__spec_check_post}\
744 #%{nil}
745
746 #%__spec_autodep_shell  %{___build_shell}
747 #%__spec_autodep_args   %{___build_args}
748 #%__spec_autodep_cmd    %{___build_cmd}
749 #%__spec_autodep_pre    %{___build_pre}
750 #%__spec_autodep_body   %{___build_body}
751 #%__spec_autodep_post   %{___build_post}
752 #%__spec_autodep_template       #!%{__spec_autodep_shell}\
753 #%{__spec_autodep_pre}\
754 #%{nil}
755
756 #%{__spec_autodep_body}\
757 #%{__spec_autodep_post}\
758 #%{nil}
759
760 %__spec_clean_shell     %{___build_shell}
761 %__spec_clean_args      %{___build_args}
762 %__spec_clean_cmd       %{___build_cmd}
763 %__spec_clean_pre       %{___build_pre}
764 %__spec_clean_body      %{___build_body}
765 %__spec_clean_post      %{___build_post}
766 %__spec_clean_template  #!%{__spec_clean_shell}\
767 %{__spec_clean_pre}\
768 %{nil}
769
770 #%{__spec_clean_body}\
771 #%{__spec_clean_post}\
772 #%{nil}
773
774 %__spec_rmbuild_shell   %{___build_shell}
775 %__spec_rmbuild_args    %{___build_args}
776 %__spec_rmbuild_cmd     %{___build_cmd}
777 %__spec_rmbuild_pre     %{___build_pre}
778 %__spec_rmbuild_body    %{___build_body}
779 %__spec_rmbuild_post    %{___build_post}
780 %__spec_rmbuild_template        #!%{__spec_rmbuild_shell}\
781 %{__spec_rmbuild_pre}\
782 %{nil}
783
784 #%{__spec_rmbuild_body}\
785 #%{__spec_rmbuild_post}\
786 #%{nil}
787
788 # XXX We don't expand pre/post install scriptlets (yet).
789 #%__spec_pre_pre                %{nil}
790 #%__spec_pre_post               %{nil}
791 #%__spec_post_pre               %{nil}
792 #%__spec_post_post              %{nil}
793 #%__spec_preun_pre              %{nil}
794 #%__spec_preun_post             %{nil}
795 #%__spec_postun_pre             %{nil}
796 #%__spec_postun_post            %{nil}
797 #%__spec_triggerpostun_pre      %{nil}
798 #%__spec_triggerpostun_post     %{nil}
799 #%__spec_triggerun_pre          %{nil}
800 #%__spec_triggerun_post         %{nil}
801 #%__spec_triggerin_pre          %{nil}
802 #%__spec_triggerin_post         %{nil}
803
804 #==============================================================================
805 # ---- configure macros.
806 #       Macro(s) slavishly copied from autoconf's config.status.
807 #
808 %_prefix                @prefix@
809 %_exec_prefix           %{_prefix}
810 %_bindir                %{_exec_prefix}/bin
811 %_sbindir               %{_exec_prefix}/sbin
812 %_libexecdir            %{_exec_prefix}/libexec
813 %_datadir               %{_prefix}/share
814 %_sysconfdir            /etc
815 %_sharedstatedir        %{_prefix}/com
816 %_localstatedir         %{_prefix}/var
817 %_lib                   lib
818 %_libdir                %{_exec_prefix}/%{_lib}
819 %_includedir            %{_prefix}/include
820 %_infodir               %{_datadir}/info
821 %_mandir                %{_datadir}/man
822
823 #==============================================================================
824 # ---- config.guess platform macros.
825 #       Macro(s) similar to the tokens used by configure.
826 #
827 %_build                 %{_host}
828 %_build_alias           %{_host_alias}
829 %_build_cpu             %{_host_cpu}
830 %_build_vendor          %{_host_vendor}
831 %_build_os              %{_host_os}
832 %_host                  @host@
833 %_host_alias            @host@%{nil}
834 %_host_cpu              @host_cpu@
835 %_host_vendor           @host_vendor@
836 %_host_os               @host_os@
837 %_target                %{_host}
838 %_target_alias          %{_host_alias}
839 %_target_cpu            %{_host_cpu}
840 %_target_vendor         %{_host_vendor}
841 %_target_os             %{_host_os}
842
843 #==============================================================================
844 # ---- specfile macros.
845 #       Macro(s) here can be used reliably for reproducible builds.
846 #       (Note: Above is the goal, below are the macros under development)
847 #
848 # The configure macro runs autoconf configure script with platform specific
849 # directory structure (--prefix, --libdir etc) and compiler flags
850 # such as CFLAGS.
851 #
852 # The configure macro should be invoked as %configure (rather than %{configure})
853 # because the rest of the arguments will be expanded using %*.
854 #
855 %_configure ./configure
856 %configure \
857   CFLAGS="${CFLAGS:-%optflags}" ; export CFLAGS ; \
858   CXXFLAGS="${CXXFLAGS:-%optflags}" ; export CXXFLAGS ; \
859   FFLAGS="${FFLAGS:-%optflags}" ; export FFLAGS ; \
860   %{_configure} --host=%{_host} --build=%{_build} \\\
861         --program-prefix=%{?_program_prefix} \\\
862         --disable-dependency-tracking \\\
863         --prefix=%{_prefix} \\\
864         --exec-prefix=%{_exec_prefix} \\\
865         --bindir=%{_bindir} \\\
866         --sbindir=%{_sbindir} \\\
867         --sysconfdir=%{_sysconfdir} \\\
868         --datadir=%{_datadir} \\\
869         --includedir=%{_includedir} \\\
870         --libdir=%{_libdir} \\\
871         --libexecdir=%{_libexecdir} \\\
872         --localstatedir=%{_localstatedir} \\\
873         --sharedstatedir=%{_sharedstatedir} \\\
874         --mandir=%{_mandir} \\\
875         --infodir=%{_infodir} \\\
876         --disable-dependency-tracking
877
878 #------------------------------------------------------------------------------
879 # The make install analogue of %configure for modern autotools:
880 %make_install %{__make} install DESTDIR=%{?buildroot}
881
882 #------------------------------------------------------------------------------
883 # Former make install analogue, kept for compatibility and for old/broken
884 #  packages that don't support DESTDIR properly.
885 %makeinstall \
886   %{__make} \\\
887         prefix=%{?buildroot:%{buildroot}}%{_prefix} \\\
888         exec_prefix=%{?buildroot:%{buildroot}}%{_exec_prefix} \\\
889         bindir=%{?buildroot:%{buildroot}}%{_bindir} \\\
890         sbindir=%{?buildroot:%{buildroot}}%{_sbindir} \\\
891         sysconfdir=%{?buildroot:%{buildroot}}%{_sysconfdir} \\\
892         datadir=%{?buildroot:%{buildroot}}%{_datadir} \\\
893         includedir=%{?buildroot:%{buildroot}}%{_includedir} \\\
894         libdir=%{?buildroot:%{buildroot}}%{_libdir} \\\
895         libexecdir=%{?buildroot:%{buildroot}}%{_libexecdir} \\\
896         localstatedir=%{?buildroot:%{buildroot}}%{_localstatedir} \\\
897         sharedstatedir=%{?buildroot:%{buildroot}}%{_sharedstatedir} \\\
898         mandir=%{?buildroot:%{buildroot}}%{_mandir} \\\
899         infodir=%{?buildroot:%{buildroot}}%{_infodir} \\\
900   install
901
902 #------------------------------------------------------------------------------
903 # The GNUconfigure macro does the following:
904 #       update config.guess and config.sub.
905 #       regenerate all autoconf/automake files
906 #       optionally change to a directory (make the directory if requested).
907 #       run configure with correct prefix, platform, and CFLAGS.
908 #       optionally restore current directory.
909 #
910 # Based on autogen.sh from GNOME and orginal GNUconfigure
911 #
912 %GNUconfigure(MCs:)      \
913   CFLAGS="${CFLAGS:-%optflags}" ; export CFLAGS; \
914   LDFLAGS="${LDFLAGS:-%{-s:-s}}"  ; export LDFLAGS; \
915   %{-C:_mydir="`pwd`"; %{-M: %{__mkdir} -p %{-C*};} cd %{-C*}} \
916   dirs="`find ${_mydir} -name configure.in -print`"; export dirs; \
917     for coin in `echo ${dirs}` \
918 do \
919   dr=`dirname ${coin}`; \
920 if test -f ${dr}/NO-AUTO-GEN; then \
921  : \
922 else \
923      macrodirs=`sed -n -e 's,AM_ACLOCAL_INCLUDE(\(.*\)),\1,gp' < ${coin}`; \
924     ( cd ${dr}; \
925       aclocalinclude="${ACLOCAL_FLAGS}"; \
926       for k in ${macrodirs}; do \
927         if test -d ${k}; then \
928           aclocalinclude="${aclocalinclude} -I ${k}"; \
929         ##else \
930         ##  echo "**Warning**: No such directory \`${k}'.  Ignored." \
931         fi \
932       done \
933       if grep "^AM_GNU_GETTEXT" configure.in >/dev/null; then \
934         if grep "sed.*POTFILES" configure.in >/dev/null; then \
935           : do nothing -- we still have an old unmodified configure.in \
936         else \
937           test -r ${dr}/aclocal.m4 || touch ${dr}/aclocal.m4; \
938           echo "no" | gettextize --force --copy; \
939           test -r ${dr}/aclocal.m4 && %{__chmod} u+w ${dr}/aclocal.m4; \
940         fi \
941       fi \
942       if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then \
943         %{__libtoolize} --force --copy; \
944       fi \
945       aclocal ${aclocalinclude}; \
946       if grep "^AM_CONFIG_HEADER" configure.in >/dev/null; then \
947         %{__autoheader}; \
948       fi \
949       echo "Running automake --gnu ${am_opt} ..."; \
950       %{__automake} --add-missing --gnu ${am_opt}; \
951       %{__autoconf}; \
952     ); \
953   fi \
954 done \
955   %{-C:${_mydir}}%{!-C:.}/configure --prefix=%{_prefix} --exec-prefix=%{_exec_prefix} --bindir=%{_bindir} --sbindir=%{_sbindir} --sysconfdir=%{_sysconfdir} --datadir=%{_datadir} --includedir=%{_includedir} --libdir=%{_libdir} --libexecdir=%{_libexecdir} --localstatedir=%{_localstatedir} --sharedstatedir=%{_sharedstatedir} --mandir=%{_mandir} --infodir=%{_infodir} %* ; \
956   %{-C:cd ${_mydir}; unset _mydir}
957
958 %patches %{lua: for i, p in ipairs(patches) do print(p.." ") end}
959 %sources %{lua: for i, s in ipairs(sources) do print(s.." ") end}
960
961 #------------------------------------------------------------------------------
962 # Useful perl macros (from Artur Frysiak <wiget@t17.ds.pwr.wroc.pl>)
963 #
964 # For example, these can be used as (from ImageMagick.spec from PLD site)
965 #       [...]
966 #       BuildPrereq: perl
967 #       [...]
968 #       %package perl
969 #       Summary: libraries and modules for access to ImageMagick from perl
970 #       Group: Development/Languages/Perl
971 #       Requires: %{name} = %{version}
972 #       %requires_eq    perl
973 #       [...]
974 #       %install
975 #       rm -fr $RPM_BUILD_ROOT
976 #       install -d $RPM_BUILD_ROOT/%{perl_sitearch}
977 #       [...]
978 #       %files perl
979 #       %defattr(644,root,root,755)
980 #       %{perl_sitearch}/Image
981 #       %dir %{perl_sitearch}/auto/Image
982 #
983 %requires_eq()  %(LC_ALL="C" echo '%*' | xargs -r rpm -q --qf 'Requires: %%{name} = %%{epoch}:%%{version}\\n' | sed -e 's/ (none):/ /' -e 's/ 0:/ /' | grep -v "is not")
984 %perl_sitearch  %(eval "`%{__perl} -V:installsitearch`"; echo $installsitearch)
985 %perl_sitelib   %(eval "`%{__perl} -V:installsitelib`"; echo $installsitelib)
986 %perl_vendorarch %(eval "`%{__perl} -V:installvendorarch`"; echo $installvendorarch)
987 %perl_vendorlib  %(eval "`%{__perl} -V:installvendorlib`"; echo $installvendorlib)
988 %perl_archlib   %(eval "`%{__perl} -V:installarchlib`"; echo $installarchlib)
989 %perl_privlib   %(eval "`%{__perl} -V:installprivlib`"; echo $installprivlib)
990
991 #------------------------------------------------------------------------------
992 # Useful python macros for determining python version and paths
993 #
994 %python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; import sys; sys.stdout.write(get_python_lib())")
995 %python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; import sys; sys.stdout.write(get_python_lib(1))")
996 %python_version %(%{__python} -c "import sys; sys.stdout.write(sys.version[:3])")
997
998 # More useful perl macros (from Raul Dias <rsd@swi.com.br>)
999 #
1000 %perl_version           %(perl -V:version | sed "s!.*='!!;s!'.*!!")
1001 %perl_man1ext           %(perl -V:man1ext | sed "s!.*='!!;s!'.*!!")
1002 %perl_man3ext           %(perl -V:man3ext | sed "s!.*='!!;s!'.*!!")
1003 %perl_man1dir           %(perl -V:man1dir | sed "s!.*='!!;s!'.*!!")
1004 %perl_man3dir           %(perl -V:man3dir | sed "s!.*='!!;s!'.*!!")
1005 %perl_installman1dir    %(perl -V:installman1dir | sed "s!.*='!!;s!'.*!!")
1006 %perl_installman3dir    %(perl -V:installman3dir | sed "s!.*='!!;s!'.*!!")
1007 %perl_installarchlib    %(perl -V:installarchlib | sed "s!.*='!!;s!'.*!!")
1008 %perl_prefix            %{buildroot}
1009
1010 #------------------------------------------------------------------------------
1011 # Python specific macro definitions (originally from PLD).
1012 #
1013 %py_ver                 %(python -c "import sys; v=sys.version_info[:2]; print '%%d.%%d'%%v" 2>/dev/null || echo PYTHON-NOT-FOUND)
1014 %py_prefix              %(python -c "import sys; print sys.prefix" 2>/dev/null || echo PYTHON-NOT-FOUND)
1015 %py_libdir              %{py_prefix}/%{_lib}/python%{py_ver}
1016 %py_incdir              %{py_prefix}/include/python%{py_ver}
1017 %py_sitedir             %{py_libdir}/site-packages
1018 %py_compile(O)  \
1019 find %1 -name '*.pyc' -exec rm -f {} \\; \
1020 python -c "import sys, os, compileall; br='%{buildroot}'; compileall.compile_dir(sys.argv[1], ddir=br and (sys.argv[1][len(os.path.abspath(br)):]+'/') or None)" %1 \
1021 %{-O: \
1022 find %1 -name '*.pyo' -exec rm -f {} \\; \
1023 python -O -c "import sys, os, compileall; br='%{buildroot}'; compileall.compile_dir(sys.argv[1], ddir=br and (sys.argv[1][len(os.path.abspath(br)):]+'/') or None)" %1 \
1024 }
1025 %py_requires(d) \
1026 %define minver %py_ver \
1027 %define maxver %(python -c "import sys; a,b=sys.version_info[:2]; print '%%d.%%d'%%(a,b+1)" 2>/dev/null || echo PYTHON-NOT-FOUND) \
1028 BuildRequires: python %{-d:python-devel} \
1029 PreReq: python >= %minver, python < %maxver
1030
1031
1032 #------------------------------------------------------------------------------
1033 # arch macro for all Intel i?86 compatibile processors
1034 #  (Note: This macro (and it's analogues) will probably be obsoleted when
1035 #   rpm can use regular expressions against target platforms in macro
1036 #   conditionals.
1037 #
1038 %ix86   i386 i486 i586 i686 pentium3 pentium4 athlon geode
1039
1040 #------------------------------------------------------------------------------
1041 # arch macro for all supported ARM processors
1042 %arm    armv3l armv4b armv4l armv4tl armv5b armv5l armv5teb armv5tel armv5tejl armv6l armv7l armv7hl
1043 %arml   armv3l armv4l armv5l armv5tel armv6l armv7l armv7hl
1044 %armb   armv4b armv5b armv5teb
1045
1046 #------------------------------------------------------------------------------
1047 # arch macro for all supported Sparc processors
1048 %sparc sparc sparcv8 sparcv9 sparcv9v sparc64 sparc64v
1049
1050 #------------------------------------------------------------------------------
1051 # arch macro for all supported Alpha processors
1052 %alpha  alpha alphaev56 alphaev6 alphaev67
1053
1054 #------------------------------------------------------------------------------
1055 # arch macro for all supported PowerPC 64 processors
1056 %power64        ppc64 ppc64p7
1057
1058 #------------------------------------------------------------------------
1059 # Use in %install to generate locale specific file lists. For example,
1060 #
1061 # %install
1062 # ...
1063 # %find_lang %{name}
1064 # ...
1065 # %files -f %{name}.lang
1066 #
1067 %find_lang      %{_rpmconfigdir}/find-lang.sh %{buildroot}
1068 %no_lang_C  --without-C
1069
1070
1071 # Commands + opts to use for retrieving remote files
1072 # Proxy opts can be set through --httpproxy/--httpport popt aliases,
1073 # for any special local needs use %__urlhelper_localopts in system-wide
1074 # or per-user macro configuration.
1075 %__urlhelpercmd         @__CURL@
1076 %__urlhelperopts        --silent --show-error --fail --location -o
1077 %__urlhelper_proxyopts   %{?_httpproxy:--proxy %{_httpproxy}%{?_httpport::%{_httpport}}}%{!?_httpproxy:%{nil}}
1078 %_urlhelper             %{__urlhelpercmd} %{?__urlhelper_localopts} %{?__urlhelper_proxyopts} %{__urlhelperopts}
1079
1080 #------------------------------------------------------------------------------
1081 # Collection specific macros
1082 %__plugindir            %{_libdir}/rpm-plugins
1083 %__collection_font      %{__plugindir}/exec.so /usr/bin/fc-cache
1084 %__collection_java      %{__plugindir}/exec.so /usr/bin/rebuild-gcj-db
1085 %__collection_sepolicy          %{__plugindir}/sepolicy.so
1086 %__collection_sepolicy_flags    1
1087
1088 #------------------------------------------------------------------------------
1089 # transaction specific macros
1090 #%__transaction_plugins     msm
1091 #%__plugindir                           %{_libdir}/rpm-plugins
1092 #%__transaction_msm                     %{__plugindir}/msm.so
1093 #%__transaction_msm_default_policy      %{_libdir}/rpm-plugins/msm-device-sec-policy
1094 #------------------------------------------------------------------------------
1095 # Macros for further automated spec %setup and patch application
1096
1097 # default to plain patch
1098 %__scm patch
1099 # meh, figure something saner
1100 %__scm_username rpm-build
1101 %__scm_usermail <rpm-build>
1102 %__scm_author %{__scm_username} %{__scm_usermail}
1103
1104 # Plain patch (-m is unused)
1105 %__scm_setup_patch(q) %{nil}
1106 %__scm_apply_patch(qp:m:)\
1107 %{__patch} %{-p:-p%{-p*}} %{-q:-s}
1108
1109 # Mercurial (aka hg)
1110 %__scm_setup_hg(q)\
1111 %{__hg} init %{-q} .\
1112 %{__hg} add %{-q} .\
1113 %{__hg} commit %{-q} --user "%{__scm_author}" -m "%{name}-%{version} base"
1114
1115 %__scm_apply_hg(qp:m:)\
1116 %{__hg} import - %{-p:-p%{-p*}} %{-q} -m %{-m*} --user "%{__scm_author}"
1117
1118 # Git
1119 %__scm_setup_git(q)\
1120 %{__git} init %{-q}\
1121 %{__git} config user.name "%{__scm_username}"\
1122 %{__git} config user.email "%{__scm_usermail}"\
1123 %{__git} add .\
1124 %{__git} commit %{-q} -a\\\
1125         --author "%{__scm_author}" -m "%{name}-%{version} base"
1126
1127 %__scm_apply_git(qp:m:)\
1128 %{__git} apply %{-p:-p%{-p*}} -\
1129 %{__git} commit %{-q} -a -m %{-m*} --author "%{__scm_author}"
1130
1131 # Quilt
1132 %__scm_setup_quilt(q) %{nil}
1133 %__scm_apply_quilt(qp:m:)\
1134 %{__quilt} import %{-p:-p%{-p*}} %{1} && %{__quilt} push
1135
1136 # Bzr
1137 %__scm_setup_bzr(q)\
1138 %{__bzr} init %{-q}\
1139 %{__bzr} whoami --branch "%{__scm_author}"\
1140 %{__bzr} add .\
1141 %{__bzr} commit %{-q} -m "%{name}-%{version} base"
1142
1143 # bzr doesn't seem to have its own command to apply patches?
1144 %__scm_apply_bzr(qp:m:)\
1145 %{__patch} %{-p:-p%{-p*}} %{-q:-s}\
1146 %{__bzr} commit %{-q} -m %{-m*}
1147
1148 # Single patch application
1149 %apply_patch(qp:m:)\
1150 %{uncompress:%{1}} | %{expand:%__scm_apply_%{__scm} %{-q} %{-p:-p%{-p*}} %{-m:-m%{-m*}}}
1151
1152 # Automatically apply all patches
1153 %autopatch(vp:)\
1154 %{lua:\
1155 for i, p in ipairs(patches) do\
1156     print(rpm.expand("%apply_patch -m %{basename:"..p.."}  "..rpm.expand("%{!-v:-q} %{-p:-p%{-p*}} ")..p.."\\n"))\
1157 end}
1158
1159 # One macro to (optionally) do it all.
1160 # -S<scm name>  Sets the used patch application style, eg '-S git' enables
1161 #               usage of git repository and per-patch commits.
1162 # -N            Disable automatic patch application
1163 # -p<num>       Use -p<num> for patch application       
1164 %autosetup(a:b:cDn:TvNS:p:)\
1165 %setup %{-a} %{-b} %{-c} %{-D} %{-n} %{-T} %{!-v:-q}\
1166 %{-S:%global __scm %{-S*}}\
1167 %{-S:%{expand:%__scm_setup_%{-S*} %{!-v:-q}}}\
1168 %{!-N:%autopatch %{-v} %{-p:-p%{-p*}}}
1169
1170 # \endverbatim
1171 #*/
1172
1173
1174 #------------------------------------------------------------------------
1175 # standard build service macros
1176 #
1177 %ext_info .gz
1178 %ext_man .gz
1179
1180 %info_add() test -x /sbin/install-info -a -f %{?2}%{?!2:%{_infodir}}/%{1}%ext_info && /sbin/install-info --info-dir=%{?2}%{?!2:%{_infodir}} %{?2}%{?!2:%{_infodir}}/%{1}%ext_info \
1181 %{nil}
1182
1183 %info_del() test -x /sbin/install-info -a ! -f %{?2}%{?!2:%{_infodir}}/%{1}%ext_info && /sbin/install-info --quiet --delete --info-dir=%{?2}%{?!2:%{_infodir}} %{?2}%{?!2:%{_infodir}}/%{1}%ext_info \
1184 %{nil}
1185
1186 %user_group_add() \
1187 /usr/sbin/groupadd -o -r %{1} 2>/dev/null || :\
1188 /usr/sbin/useradd -o -r -g %{1} -d %{2} -s %{3} -c %{4} %{1} 2>/dev/null || :\
1189 %{nil}