1 #/*! \page config_macros Default configuration: @RPMCONFIGDIR@/macros
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.
9 #==============================================================================
10 # Macro naming conventions (preliminary):
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.
19 #==============================================================================
20 # ---- A macro that expands to nothing.
24 #==============================================================================
25 # ---- filesystem macros.
31 #==============================================================================
32 # ---- Generally useful path macros.
49 %__install @__INSTALL@
53 # Deprecated, use %__xz instead.
54 %__lzma %__xz --format=lzma
58 %__mkdir_p @__MKDIR_P@
63 %__restorecon @__RESTORECON@
67 %__semodule @__SEMODULE@
76 #==============================================================================
77 # ---- Build system path macros.
86 %__objcopy @__OBJCOPY@
87 %__objdump @__OBJDUMP@
92 # XXX avoid failures if tools are not installed when rpm is built.
93 %__libtoolize libtoolize
95 %__autoheader autoheader
99 #==============================================================================
100 # Conditional build stuff.
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}}
107 # Shorthand for %{defined with_...}
108 %with() %{expand:%%{?with_%{1}:1}%%{!?with_%{1}:0}}
109 %without() %{expand:%%{?with_%{1}:0}%%{!?with_%{1}:1}}
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.
115 # %bcond_with foo defines symbol with_foo if --with foo was specified on
117 # %bcond_without foo defines symbol with_foo if --without foo was *not*
118 # specified on command line.
120 # For example (spec file):
123 # %bcond_with extra_fonts
124 # %bcond_without static
126 # %if %{with extra_fonts}
131 # %if ! %{with static}
134 # %ifdef %{with static}
137 # %{?with_static: ... }
138 # %{!?with_static: ... }
139 # %{?with_extra_fonts: ... }
140 # %{!?with_extra_fonts: ... }
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}}
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.
155 # The directory where rpm's configuration and scripts live
156 %_rpmconfigdir %{getconfdir}
158 # The directory where sources/patches will be unpacked and built.
159 %_builddir %{_topdir}/BUILD
161 # The interpreter used for build scriptlets.
164 # The path to the bzip2 executable (legacy, use %{__bzip2} instead).
165 %_bzip2bin %{__bzip2}
167 # The location of the rpm database file(s).
168 %_dbpath %{_var}/lib/rpm
170 # The location of the rpm database file(s) after "rpm --rebuilddb".
171 %_dbpath_rebuild %{_dbpath}
173 %_keyringpath %{_dbpath}/pubkeys/
176 # Path to script that creates debug symbols in a /usr/lib/debug
179 # A spec file can %%define _find_debuginfo_opts to pass options to
180 # the script. See the script for details.
183 %_find_debuginfo_opts %{?_rpm_strip_disable:--strip-disable}
184 %_find_debuginfo_strip_opts %{?_rpm_strip_option:\'--strip-option=%{_rpm_strip_option}\'}
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}"\
190 # Template for debug information sub-package.
192 %global __debug_package 1\
193 %package debugsource\
194 Summary: Debug sources for package %{name}\
195 Group: Development/Debug\
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)\
205 %_defaultdocdir %{_datadir}/doc/packages
206 %_defaultlicensedir %{_datadir}/licenses
207 %_docdir_fmt %%{NAME}
209 # The path to the gzip executable (legacy, use %{__gzip} instead).
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
216 # The directory where newly built binary packages will be written.
217 %_rpmdir %{_topdir}/RPMS
219 # A template used to generate the output binary package file name
221 %_rpmfilename %{_build_name_fmt}
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
227 # The directory where the spec file from a source package will be
229 %_specdir %{_topdir}/SPECS
231 # The directory where newly built source packages will be written.
232 %_srcrpmdir %{_topdir}/SRPMS
234 # The directory where buildroots will be created.
235 %_buildrootdir %{_topdir}/BUILDROOT
237 # Build root path, where %install installs the package during build.
238 %buildroot %{_buildrootdir}/%{name}-%{version}-%{release}.%{_arch}
240 # Directory where temporaray files can be created.
241 %_tmppath %{_var}/tmp
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} \
247 # The path to the unzip executable (legacy, use %{__unzip} instead).
248 %_unzipbin %{__unzip}
250 #==============================================================================
251 # ---- Optional rpmrc macros.
252 # Macros that are initialized as a side effect of rpmrc and/or spec
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.
261 # Configurable distribution information, same as Distribution: tag in a
266 # Configurable distribution URL, same as DistURL: tag in a specfile.
267 # The URL will be used to supply reliable information to tools like
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.
276 # Configurable bug URL, same as BugURL: tag in a specfile.
277 # The URL will be used to supply reliable information to where
282 # Boolean (i.e. 1 == "yes", 0 == "no") that controls whether files
283 # marked as %doc should be installed.
286 # The port and machine name of a FTP proxy host running TIS firewall.
291 # The signature to use and the location of configuration files for
292 # signing packages with GNU gpg.
297 # The port and machine name of an HTTP proxy host.
302 # The PATH put into the environment before running %pre/%post et al.
304 %_install_script_path /sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin
306 # A colon separated list of desired locales to be installed;
307 # "all" means install all locale specific files.
311 # The value of CLASSPATH in build scriptlets (iff configured).
315 # Import packaging conventions from jpackage.org (prefixed with _
316 # to avoid name collisions).
318 %_javadir %{_datadir}/java
319 %_javadocdir %{_datadir}/javadoc
321 # A colon separated list of paths where files should *not* be installed.
322 # Usually, these are network file system mount points.
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)
335 %_query_selector_match default
337 # Configurable packager information, same as Packager: in a specfile.
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
347 #%_source_payload w9.gzdio
348 %_binary_payload w5.lzdio
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:
361 #%_source_filedigest_algorithm 1
362 #%_binary_filedigest_algorithm 1
364 # Configurable vendor information, same as Vendor: in a specfile.
368 # Default fuzz level for %patch in spec file.
369 %_default_patch_fuzz 0
371 # Default patch flags
372 #%_default_patch_flags -s
374 #==============================================================================
375 # ---- Build configuration macros.
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.
380 # Note: Disable (by commenting out) for legacy compatibility.
381 %__check_files %{_rpmconfigdir}/check-files %{buildroot}
384 # Should unpackaged files in a build root terminate a build?
386 # Note: The default value should be 0 for legacy compatibility.
387 %_unpackaged_files_terminate_build 1
390 # Should missing %doc files in the build directory terminate a build?
392 # Note: The default value should be 0 for legacy compatibility.
393 %_missing_doc_files_terminate_build 1
396 # Should binaries in noarch packages terminate a build?
397 %_binaries_in_noarch_packages_terminate_build 1
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
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.
409 #%_build_pkgcheck %{_bindir}/rpmlint
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.
415 #%_build_pkgcheck_set %{_bindir}/rpmlint
418 # Program to call for successfully built and written SRPM.
419 # The package name is passed to the program as a command-line argument.
421 #%_build_pkgcheck_srpm %{_bindir}/rpmlint
424 # Should the build of packages fail if package checker (if defined) returns
425 # non-zero exit status?
427 #%_nonzero_exit_pkgcheck_terminate_build 1
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
434 #%_missing_build_ids_terminate_build 1
437 # Use internal dependency generator rather than external helpers?
438 %_use_internal_dependency_generator 1
441 # Filter GLIBC_PRIVATE Provides: and Requires:
442 %_filter_GLIBC_PRIVATE 0
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
447 # maxnum,cuttime,minnum
448 # 2009/03/01 (SLES11 GA)
449 %_binarychangelogtrim 0,1235862000,10
452 # Path to scripts to autogenerate package dependencies,
454 %__set_helper_env %{lua:
455 posix.setenv("RPMBUILD_SPECFILE",rpm.expand("%?_specfile"));
456 posix.setenv("RPMBUILD_SOURCEDIR",rpm.expand("%?_sourcedir"));
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 ???
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
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
487 %_fileattrsdir %{_rpmconfigdir}/fileattrs
489 #==============================================================================
490 # ---- Database configuration macros.
491 # Macros used to configure Berkley db parameters.
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).
499 # Here's a short list of the tokens, with a guess of whether the option is
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.
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.
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?
526 # Misc BDB tuning options
527 %__dbi_other mp_mmapsize=128Mb mp_size=1Mb
529 %_dbi_config %{?__dbi_other} nofsync
531 # "Packages" should have shared/exclusive fcntl(2) lock using "lockdbfd".
532 %_dbi_config_Packages %{?__dbi_other} lockdbfd
534 #==============================================================================
535 # ---- GPG/PGP/PGP5 signature macros.
536 # Macro(s) to hold the arguments passed to GPG/PGP for package
537 # signing and verification.
539 %__gpg_check_password_cmd %{__gpg} \
540 gpg --batch --no-verbose --passphrase-fd 3 -u "%{_gpg_name}" -so -
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}
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}
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.
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
562 #%__prelink_undo_cmd /usr/sbin/prelink prelink -y library
564 # Horowitz Key Protocol server configuration
566 %_hkp_keyserver http://pgp.mit.edu
567 %_hkp_keyserver_query %{_hkp_keyserver}:11371/pks/lookup?op=get&search=0x
569 #==============================================================================
570 # ---- Transaction macros.
571 # Macro(s) used to parameterize transactions.
573 # The output binary package file name template used when building
576 # XXX Note: escaped %% for use in headerSprintf()
577 %_build_name_fmt %%{ARCH}/%%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm
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
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.
590 # >>> hex(rpm._RPMVSF_NOSIGNATURES)
593 # >>> hex(rpm._RPMVSF_NOSIGNATURES|rpm._RPMVSF_NOPAYLOAD)
595 # at the python prompt for example, after "import rpm".
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.
601 # Note: the %_vsflags_erase applies to --upgrade/--freshen modes as
605 %_vsflags_build %{__vsflags}
606 %_vsflags_erase %{__vsflags}
607 %_vsflags_install %{__vsflags}
608 %_vsflags_query %{__vsflags}
609 %_vsflags_rebuilddb 0xc0c00
610 %_vsflags_verify %{__vsflags}
613 # Default output format string for rpm -qa
615 # XXX Note: escaped %% for use in headerFormat()
616 %_query_all_fmt %%{nvra}
619 # Default path to the file used for transaction fcntl lock.
620 %_rpmlock_path %{_dbpath}/.rpm.lock
623 # ISA dependency marker, none for noarch and name-bitness for others
624 %_isa %{?__isa:(%{__isa})}%{!?__isa:%{nil}}
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}
631 # Macro to fix broken permissions in sources
632 %_fixperms %{__chmod} -Rf @FIXPERMS@
634 #==============================================================================
635 # ---- Scriptlet template templates.
636 # Global defaults used for building scriptlet templates.
639 %___build_shell %{?_buildshell:%{_buildshell}}%{!?_buildshell:/bin/sh}
641 %___build_cmd %{?_sudo:%{_sudo} }%{?_remsh:%{_remsh} %{_remhost} }%{?_remsudo:%{_remsudo} }%{?_remchroot:%{_remchroot} %{_remroot} }%{___build_shell} %{___build_args}
643 RPM_SOURCE_DIR=\"%{u2p:%{_sourcedir}}\"\
644 RPM_BUILD_DIR=\"%{u2p:%{_builddir}}\"\
645 RPM_OPT_FLAGS=\"%{optflags}\"\
646 RPM_ARCH=\"%{_arch}\"\
648 export RPM_SOURCE_DIR RPM_BUILD_DIR RPM_OPT_FLAGS RPM_ARCH RPM_OS\
649 RPM_DOC_DIR=\"%{_docdir}\"\
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\
657 unset CDPATH DISPLAY ||:\
658 %{?buildroot:RPM_BUILD_ROOT=\"%{u2p:%{buildroot}}\"\
659 export RPM_BUILD_ROOT}\
660 %{?_javaclasspath:CLASSPATH=\"%{_javaclasspath}\"\
663 %{verbose:set -x}%{!verbose:exec > /dev/null}\
665 cd \"%{u2p:%{_builddir}}\"\
668 #%___build_body %{nil}
669 %___build_post exit 0
671 %___build_template #!%{___build_shell}\
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.
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}\
694 #%{__spec_prep_body}\
695 #%{__spec_prep_post}\
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}\
708 #%{__spec_build_body}\
709 #%{__spec_build_post}\
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}\
722 %__spec_install_template #!%{__spec_install_shell}\
723 %{__spec_install_pre}\
726 #%{__spec_install_body}\
727 #%{__spec_install_post}\
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}\
740 #%{__spec_check_body}\
741 #%{__spec_check_post}\
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}\
754 #%{__spec_autodep_body}\
755 #%{__spec_autodep_post}\
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}\
768 #%{__spec_clean_body}\
769 #%{__spec_clean_post}\
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}\
782 #%{__spec_rmbuild_body}\
783 #%{__spec_rmbuild_post}\
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}
802 #==============================================================================
803 # ---- configure macros.
804 # Macro(s) slavishly copied from autoconf's config.status.
807 %_exec_prefix %{_prefix}
808 %_bindir %{_exec_prefix}/bin
809 %_sbindir %{_exec_prefix}/sbin
810 %_libexecdir %{_exec_prefix}/libexec
811 %_datadir %{_prefix}/share
813 %_sharedstatedir %{_prefix}/com
814 %_localstatedir %{_prefix}/var
816 %_libdir %{_exec_prefix}/%{_lib}
817 %_includedir %{_prefix}/include
818 %_infodir %{_datadir}/info
819 %_mandir %{_datadir}/man
821 #==============================================================================
822 # ---- config.guess platform macros.
823 # Macro(s) similar to the tokens used by configure.
826 %_build_alias %{_host_alias}
827 %_build_cpu %{_host_cpu}
828 %_build_vendor %{_host_vendor}
829 %_build_os %{_host_os}
831 %_host_alias @host@%{nil}
832 %_host_cpu @host_cpu@
833 %_host_vendor @host_vendor@
836 %_target_alias %{_host_alias}
837 %_target_cpu %{_host_cpu}
838 %_target_vendor %{_host_vendor}
839 %_target_os %{_host_os}
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)
846 # The configure macro runs autoconf configure script with platform specific
847 # directory structure (--prefix, --libdir etc) and compiler flags
850 # The configure macro should be invoked as %configure (rather than %{configure})
851 # because the rest of the arguments will be expanded using %*.
853 %_configure ./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
876 #------------------------------------------------------------------------------
877 # The make install analogue of %configure for modern autotools:
878 %make_install %{__make} install DESTDIR=%{?buildroot}
880 #------------------------------------------------------------------------------
881 # Former make install analogue, kept for compatibility and for old/broken
882 # packages that don't support DESTDIR properly.
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} \\\
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.
908 # Based on autogen.sh from GNOME and orginal GNUconfigure
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}` \
917 dr=`dirname ${coin}`; \
918 if test -f ${dr}/NO-AUTO-GEN; then \
921 macrodirs=`sed -n -e 's,AM_ACLOCAL_INCLUDE(\(.*\)),\1,gp' < ${coin}`; \
923 aclocalinclude="${ACLOCAL_FLAGS}"; \
924 for k in ${macrodirs}; do \
925 if test -d ${k}; then \
926 aclocalinclude="${aclocalinclude} -I ${k}"; \
928 ## echo "**Warning**: No such directory \`${k}'. Ignored." \
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 \
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; \
940 if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then \
941 %{__libtoolize} --force --copy; \
943 aclocal ${aclocalinclude}; \
944 if grep "^AM_CONFIG_HEADER" configure.in >/dev/null; then \
947 echo "Running automake --gnu ${am_opt} ..."; \
948 %{__automake} --add-missing --gnu ${am_opt}; \
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}
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}
959 #------------------------------------------------------------------------------
960 # Useful perl macros (from Artur Frysiak <wiget@t17.ds.pwr.wroc.pl>)
962 # For example, these can be used as (from ImageMagick.spec from PLD site)
967 # Summary: libraries and modules for access to ImageMagick from perl
968 # Group: Development/Languages/Perl
969 # Requires: %{name} = %{version}
973 # rm -fr $RPM_BUILD_ROOT
974 # install -d $RPM_BUILD_ROOT/%{perl_sitearch}
977 # %defattr(644,root,root,755)
978 # %{perl_sitearch}/Image
979 # %dir %{perl_sitearch}/auto/Image
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)
989 #------------------------------------------------------------------------------
990 # Useful python macros for determining python version and paths
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])")
996 # More useful perl macros (from Raul Dias <rsd@swi.com.br>)
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}
1008 #------------------------------------------------------------------------------
1009 # Python specific macro definitions (originally from PLD).
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
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 \
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 \
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
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
1036 %ix86 i386 i486 i586 i686 pentium3 pentium4 athlon geode
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
1044 #------------------------------------------------------------------------------
1045 # arch macro for all supported Sparc processors
1046 %sparc sparc sparcv8 sparcv9 sparcv9v sparc64 sparc64v
1048 #------------------------------------------------------------------------------
1049 # arch macro for all supported Alpha processors
1050 %alpha alpha alphaev56 alphaev6 alphaev67
1052 #------------------------------------------------------------------------------
1053 # arch macro for all supported PowerPC 64 processors
1054 %power64 ppc64 ppc64p7
1056 #------------------------------------------------------------------------
1057 # Use in %install to generate locale specific file lists. For example,
1061 # %find_lang %{name}
1063 # %files -f %{name}.lang
1065 %find_lang %{_rpmconfigdir}/find-lang.sh %{buildroot}
1066 %no_lang_C --without-C
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}
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
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
1095 # default to plain patch
1097 # meh, figure something saner
1098 %__scm_username rpm-build
1099 %__scm_usermail <rpm-build>
1100 %__scm_author %{__scm_username} %{__scm_usermail}
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}
1107 # Mercurial (aka hg)
1109 %{__hg} init %{-q} .\
1110 %{__hg} add %{-q} .\
1111 %{__hg} commit %{-q} --user "%{__scm_author}" -m "%{name}-%{version} base"
1113 %__scm_apply_hg(qp:m:)\
1114 %{__hg} import - %{-p:-p%{-p*}} %{-q} -m %{-m*} --user "%{__scm_author}"
1117 %__scm_setup_git(q)\
1118 %{__git} init %{-q}\
1119 %{__git} config user.name "%{__scm_username}"\
1120 %{__git} config user.email "%{__scm_usermail}"\
1122 %{__git} commit %{-q} -a\\\
1123 --author "%{__scm_author}" -m "%{name}-%{version} base"
1125 %__scm_apply_git(qp:m:)\
1126 %{__git} apply %{-p:-p%{-p*}} -\
1127 %{__git} commit %{-q} -a -m %{-m*} --author "%{__scm_author}"
1130 %__scm_setup_quilt(q) %{nil}
1131 %__scm_apply_quilt(qp:m:)\
1132 %{__quilt} import %{-p:-p%{-p*}} %{1} && %{__quilt} push
1135 %__scm_setup_bzr(q)\
1136 %{__bzr} init %{-q}\
1137 %{__bzr} whoami --branch "%{__scm_author}"\
1139 %{__bzr} commit %{-q} -m "%{name}-%{version} base"
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*}
1146 # Single patch application
1147 %apply_patch(qp:m:)\
1148 %{uncompress:%{1}} | %{expand:%__scm_apply_%{__scm} %{-q} %{-p:-p%{-p*}} %{-m:-m%{-m*}}}
1150 # Automatically apply all patches
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"))\
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*}}}
1172 #------------------------------------------------------------------------
1173 # standard build service macros
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 \
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 \
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 || :\