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