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