Imported Upstream version 4.14.1
[platform/upstream/rpm.git] / macros.in
index a1d35af..d086248 100644 (file)
--- a/macros.in
+++ b/macros.in
@@ -6,15 +6,6 @@
 # should be added to /etc/rpm/macros, while per-user configuration should
 # be added to ~/.rpmmacros.
 #
-#==============================================================================
-# Macro naming conventions (preliminary):
-#
-#      Macros that begin with an underscore are "local" in the sense that
-#      they (if used) will not be exported in rpm headers. Some macros
-#      that don't start with an underscore (but look like they should)
-#      are compatible with macros generated by rpm-2.5.x and will be made
-#      more consistent in a future release.
-#
 
 #==============================================================================
 # ---- A macro that expands to nothing.
@@ -68,6 +59,8 @@
 %__ssh                 @__SSH@
 %__tar                 @__TAR@
 %__unzip               @__UNZIP@
+%__zstd                        @__ZSTD@
+%__gem                 @__GEM@
 %__git                 @__GIT@
 %__hg                  @__HG@
 %__bzr                 @__BZR@
 # %if ! %{with static}
 # ...
 # %endif
-# %ifdef %{with static}
+# %if %{with static}
 # ...
 # %endif
 # %{?with_static: ... }
 #
 #      The directory where rpm's configuration and scripts live
 %_rpmconfigdir         %{getconfdir}
+#       The directory where rpm's macro files live
+%_rpmmacrodir          %{_rpmconfigdir}/macros.d
 
 #      The directory where sources/patches will be unpacked and built.
 %_builddir             %{_topdir}/BUILD
 #      the script.  See the script for details.
 #
 %__debug_install_post   \
-   %{_rpmconfigdir}/find-debuginfo.sh %{?_missing_build_ids_terminate_build:--strict-build-id} %{?_find_debuginfo_opts} "%{_builddir}/%{?buildsubdir}"\
+    %{_rpmconfigdir}/find-debuginfo.sh \\\
+    %{?_smp_mflags} \\\
+    %{?_missing_build_ids_terminate_build:--strict-build-id} \\\
+    %{?_no_recompute_build_ids:-n} \\\
+    %{?_include_minidebuginfo:-m} \\\
+    %{?_include_gdb_index:-i} \\\
+    %{?_unique_build_ids:--build-id-seed "%{VERSION}-%{RELEASE}"} \\\
+    %{?_unique_debug_names:--unique-debug-suffix "-%{VERSION}-%{RELEASE}.%{_arch}"} \\\
+    %{?_unique_debug_srcs:--unique-debug-src-base "%{name}-%{VERSION}-%{RELEASE}.%{_arch}"} \\\
+    %{?_find_debuginfo_dwz_opts} \\\
+    %{?_find_debuginfo_opts} \\\
+    %{?_debugsource_packages:-S debugsourcefiles.list} \\\
+    "%{_builddir}/%{?buildsubdir}"\
 %{nil}
 
 #      Template for debug information sub-package.
-%debug_package \
-%ifnarch noarch\
-%global __debug_package 1\
+%_debuginfo_template \
 %package debuginfo\
 Summary: Debug information for package %{name}\
 Group: Development/Debug\
-AutoReqProv: 0\
+AutoReq: 0\
+AutoProv: 1\
 %description debuginfo\
 This package provides debug information for package %{name}.\
 Debug information is useful when developing applications that use this\
 package or when debugging this package.\
 %files debuginfo -f debugfiles.list\
-%defattr(-,root,root)\
+%{nil}
+
+%_debugsource_template \
+%package debugsource\
+Summary: Debug sources for package %{name}\
+Group: Development/Debug\
+AutoReqProv: 0\
+%description debugsource\
+This package provides debug sources for package %{name}.\
+Debug sources are useful when developing applications that use this\
+package or when debugging this package.\
+%files debugsource -f debugsourcefiles.list\
+%{nil}
+
+%debug_package \
+%ifnarch noarch\
+%global __debug_package 1\
+%_debuginfo_template\
+%{?_debugsource_packages:%_debugsource_template}\
 %endif\
 %{nil}
 
 %_defaultdocdir                %{_datadir}/doc
 %_defaultlicensedir    %{_datadir}/licenses
 
+# Following macros for filtering auto deps must not be used in spec files.
+# Their purpouse is to set up global filtering for all packages. If you need
+# to set up specific filtering for your package use %__requires_exclude_from
+# and %__provides_exclude_from instead.
+%__global_requires_exclude_from                %{?_docdir:%{_docdir}}
+%__global_provides_exclude_from                %{?_docdir:%{_docdir}}
+
 #      The path to the gzip executable (legacy, use %{__gzip} instead).
 %_gzipbin              %{__gzip}
 
@@ -210,6 +241,15 @@ package or when debugging this package.\
 #      Any older entry is not packaged in binary packages.
 %_changelog_trimtime   0
 
+#      If true, set the SOURCE_DATE_EPOCH environment variable
+#      to the timestamp of the topmost changelog entry
+%source_date_epoch_from_changelog 0
+
+#      If true, make sure that timestamps in built rpms
+#      are not later than the value of SOURCE_DATE_EPOCH.
+#      Is ignored when SOURCE_DATE_EPOCH is not set.
+%clamp_mtime_to_source_date_epoch 0
+
 #      The directory where newly built binary packages will be written.
 %_rpmdir               %{_topdir}/RPMS
 
@@ -232,7 +272,7 @@ package or when debugging this package.\
 %_buildrootdir         %{_topdir}/BUILDROOT
 
 #      Build root path, where %install installs the package during build.
-%buildroot             %{_buildrootdir}/%{name}-%{version}-%{release}.%{_arch}
+%buildroot             %{_buildrootdir}/%{NAME}-%{VERSION}-%{RELEASE}.%{_arch}
 
 #      Directory where temporaray files can be created.
 %_tmppath              %{_var}/tmp
@@ -337,25 +377,26 @@ package or when debugging this package.\
 #      Compression type and level for source/binary package payloads.
 #              "w9.gzdio"      gzip level 9 (default).
 #              "w9.bzdio"      bzip2 level 9.
-#              "w7.xzdio"      xz level 7, xz's default.
-#              "w7.lzdio"      lzma-alone level 7, lzma's default
+#              "w6.xzdio"      xz level 6, xz's default.
+#              "w7T16.xzdio"   xz level 7 using 16 thread (xz only)
+#              "w6.lzdio"      lzma-alone level 6, lzma's default
 #
 #%_source_payload      w9.gzdio
 #%_binary_payload      w9.gzdio
 
 #      Algorithm to use for generating file checksum digests on build.
 #      If not specified or 0, MD5 is used.
-#      WARNING: non-MD5 is backwards incompatible, don't enable lightly!
-#      The supported algorithms may depend on NSS version, as of NSS
-#      3.11.99.5 the following are supported:
-#      1       MD5 (default)
+#      WARNING: non-MD5 is backwards incompatible with rpm < 4.6!
+#      The supported algorithms may depend on the underlying crypto
+#      implementation but generally at least the following are supported:
+#      1       MD5
 #      2       SHA1
-#      8       SHA256
+#      8       SHA256 (default)
 #      9       SHA384
 #      10      SHA512
 #
-#%_source_filedigest_algorithm 1
-#%_binary_filedigest_algorithm 1
+%_source_filedigest_algorithm  8
+%_binary_filedigest_algorithm  8
 
 #      Configurable vendor information, same as Vendor: in a specfile.
 #
@@ -366,6 +407,7 @@ package or when debugging this package.\
 
 #      Default patch flags
 #%_default_patch_flags -s
+%_default_patch_flags --no-backup-if-mismatch
 
 #==============================================================================
 # ---- Build configuration macros.
@@ -389,9 +431,21 @@ package or when debugging this package.\
 %_missing_doc_files_terminate_build    1
 
 #
+# Should empty %files manifest file terminate a build?
+#
+# Note: The default value should be 0 for legacy compatibility.
+%_empty_manifest_terminate_build       1
+
+#
 # Should binaries in noarch packages terminate a build?
 %_binaries_in_noarch_packages_terminate_build  1
 
+# Should invalid utf8 encoding in package metadata terminate a build?
+%_invalid_encoding_terminates_build 0
+
+# Should invalid version format in requires, provides, ... terminate a build?
+%_wrong_version_format_terminate_build 1
+
 #
 # Should rpm try to download missing sources at build-time?
 # Enabling this is dangerous as long as rpm has no means to validate
@@ -430,6 +484,78 @@ package or when debugging this package.\
 #%_missing_build_ids_terminate_build   1
 
 #
+# Include minimal debug information in build binaries.
+# Requires _enable_debug_packages.
+#
+#%_include_minidebuginfo       1
+
+#
+# Include a .gdb_index section in the .debug files.
+# Requires _enable_debug_packages and gdb-add-index installed.
+#
+#%_include_gdb_index   1
+
+#
+# Defines how and if build_id links are generated for ELF files.
+# The following settings are supported:
+#
+# - none
+#   No build_id links are generated.
+#
+# - alldebug
+#   build_id links are generated only when the __debug_package global is
+#   defined. This will generate build_id links in the -debuginfo package
+#   for both the main file as /usr/lib/debug/.build-id/xx/yyy and for
+#   the .debug file as /usr/lib/debug/.build-id/xx/yyy.debug.
+#   This is the old style build_id links as generated by the original
+#   find-debuginfo.sh script.
+#
+# - separate
+#   build_id links are generate for all binary packages. If this is a
+#   main package (the __debug_package global isn't set) then the
+#   build_id link is generated as /usr/lib/.build-id/xx/yyy. If this is
+#   a -debuginfo package (the __debug_package global is set) then the
+#   build_id link is generated as /usr/lib/debug/.build-id/xx/yyy.
+#
+# - compat
+#   Same as for "separate" but if the __debug_package global is set then
+#   the -debuginfo package will have a compatibility link for the main
+#   ELF /usr/lib/debug/.build-id/xx/yyy -> /usr/lib/.build-id/xx/yyy
+%_build_id_links compat
+
+# Whether build-ids should be made unique between package version/releases
+# when generating debuginfo packages. If set to 1 this will pass
+# --build-id-seed "%{VERSION}-%{RELEASE}" to find-debuginfo.sh which will
+# pass it onto debugedit --build-id-seed to be used to prime the build-id
+# note hash.
+%_unique_build_ids     1
+
+# Do not recompute build-ids but keep whatever is in the ELF file already.
+# Cannot be used together with _unique_build_ids (which forces recomputation).
+# Defaults to undefined (unset).
+#%_no_recompute_build_ids 1
+
+# Whether .debug files should be made unique between package version,
+# release and architecture. If set to 1 this will pass
+# --unique-debug-suffix "-%{VERSION}-%{RELEASE}.%{_arch} find-debuginfo.sh
+# to create debuginfo files which end in -<ver>-<rel>.<arch>.debug
+# Requires _unique_build_ids.
+%_unique_debug_names   1
+
+# Whether the /usr/debug/src/<package> directories should be unique between
+# package version, release and architecture. If set to 1 this will pass
+# --unique-debug-src-base "%{name}-%{VERSION}-%{RELEASE}.%{_arch}" to
+# find-debuginfo.sh to name the directory under /usr/debug/src as
+# <name>-<ver>-<rel>.<arch>.
+%_unique_debug_srcs    1
+
+# Whether rpm should put debug source files into its own subpackage
+#%_debugsource_packages        1
+
+# Whether rpm should create extra debuginfo packages for each subpackage
+#%_debuginfo_subpackages 1
+
+#
 # Use internal dependency generator rather than external helpers?
 %_use_internal_dependency_generator    1
 
@@ -472,8 +598,24 @@ package or when debugging this package.\
 #
 %_fileattrsdir         %{_rpmconfigdir}/fileattrs
 
+# This macro defines how much space (in bytes) in package should be
+# reserved for gpg signatures during building of a package. If this space is
+# big enough for gpg signatures to fit into it then signing of the packages is
+# very quick because it is not necessary to rewrite the whole package to make
+# some space for gpg signatures.
+%__gpg_reserved_space 4096
+
 #==============================================================================
 # ---- Database configuration macros.
+#
+# Select backend database. The following values are supported:
+# bdb Berkeley DB
+# lmdb Lightning Memory-mapped Database
+# ndb new data base format
+#
+%_db_backend         bdb
+
+#
 #      Macros used to configure Berkley db parameters.
 #
 # rpmdb macro configuration values are a colon (or white space) separated
@@ -522,13 +664,12 @@ package or when debugging this package.\
 #      Macro(s) to hold the arguments passed to GPG/PGP for package
 #      signing and verification.
 #
-%__gpg_check_password_cmd      %{__gpg} \
-       gpg --batch --no-verbose --passphrase-fd 3 -u "%{_gpg_name}" -so -
 
 %__gpg_sign_cmd                        %{__gpg} \
-       gpg --batch --no-verbose --no-armor --passphrase-fd 3 \
+       gpg --no-verbose --no-armor \
        %{?_gpg_digest_algo:--digest-algo %{_gpg_digest_algo}} \
        --no-secmem-warning \
+       %{?_gpg_sign_cmd_extra_args:%{_gpg_sign_cmd_extra_args}} \
        -u "%{_gpg_name}" -sbo %{__signature_filename} %{__plaintext_filename}
 
 # XXX rpm >= 4.1 verifies signatures internally
@@ -595,6 +736,14 @@ package or when debugging this package.\
 %_vsflags_rebuilddb    0xc0c00
 %_vsflags_verify       %{__vsflags}
 
+# Set to 1 to minimize writing (at the cost of more reads) to
+# conserve eg SSD disks.
+%_minimize_writes      0
+
+# Set to 1 to flush file IO during transactions (at a severe cost in
+# performance for rotational disks)
+#%_flush_io    0
+
 #
 # Default output format string for rpm -qa
 #
@@ -602,6 +751,11 @@ package or when debugging this package.\
 %_query_all_fmt                %%{nvra}
 
 #
+# Default for coloring output
+# valid values are always never and auto
+%_color_output never
+
+#
 # Default path to the file used for transaction fcntl lock.
 %_rpmlock_path %{_dbpath}/.rpm.lock
 
@@ -634,9 +788,9 @@ package or when debugging this package.\
   export RPM_SOURCE_DIR RPM_BUILD_DIR RPM_OPT_FLAGS RPM_ARCH RPM_OS\
   RPM_DOC_DIR=\"%{_docdir}\"\
   export RPM_DOC_DIR\
-  RPM_PACKAGE_NAME=\"%{name}\"\
-  RPM_PACKAGE_VERSION=\"%{version}\"\
-  RPM_PACKAGE_RELEASE=\"%{release}\"\
+  RPM_PACKAGE_NAME=\"%{NAME}\"\
+  RPM_PACKAGE_VERSION=\"%{VERSION}\"\
+  RPM_PACKAGE_RELEASE=\"%{RELEASE}\"\
   export RPM_PACKAGE_NAME RPM_PACKAGE_VERSION RPM_PACKAGE_RELEASE\
   LANG=C\
   export LANG\
@@ -654,7 +808,7 @@ package or when debugging this package.\
 
 
 #%___build_body                %{nil}
-%___build_post         exit 0
+%___build_post         exit $?
 
 %___build_template     #!%{___build_shell}\
 %{___build_pre}\
@@ -667,7 +821,6 @@ package or when debugging this package.\
 #==============================================================================
 # ---- Scriptlet templates.
 #      Macro(s) that expand to a command and script that is executed.
-#      CAVEAT: All macro expansions must fit in a BUFSIZ (8192 byte) buffer.
 #
 %__spec_prep_shell     %{___build_shell}
 %__spec_prep_args      %{___build_args}
@@ -835,9 +988,6 @@ package or when debugging this package.\
 # directory structure (--prefix, --libdir etc) and compiler flags
 # such as CFLAGS.
 #
-# The configure macro should be invoked as %configure (rather than %{configure})
-# because the rest of the arguments will be expanded using %*.
-#
 %_configure ./configure
 %configure \
   CFLAGS="${CFLAGS:-%optflags}" ; export CFLAGS ; \
@@ -861,13 +1011,23 @@ package or when debugging this package.\
        --infodir=%{_infodir}
 
 #------------------------------------------------------------------------------
+# Tested features of make
+# Output synchronization for parallel make:
+%_make_output_sync %(! %{__make} --version -O >/dev/null 2>&1 || echo -O)
+
+#------------------------------------------------------------------------------
+# The "make" analogue, hiding the _smp_mflags magic from specs
+%make_build %{__make} %{_make_output_sync} %{?_smp_mflags}
+
+#------------------------------------------------------------------------------
 # The make install analogue of %configure for modern autotools:
-%make_install %{__make} install DESTDIR=%{?buildroot}
+%make_install %{__make} install DESTDIR=%{?buildroot} INSTALL="%{__install} -p"
 
 #------------------------------------------------------------------------------
 # Former make install analogue, kept for compatibility and for old/broken
 #  packages that don't support DESTDIR properly.
 %makeinstall \
+  echo "warning: %%makeinstall is deprecated, try %%make_install instead" 1>&2\
   %{__make} \\\
        prefix=%{?buildroot:%{buildroot}}%{_prefix} \\\
        exec_prefix=%{?buildroot:%{buildroot}}%{_exec_prefix} \\\
@@ -885,61 +1045,6 @@ package or when debugging this package.\
   install
 
 #------------------------------------------------------------------------------
-# The GNUconfigure macro does the following:
-#       update config.guess and config.sub.
-#       regenerate all autoconf/automake files
-#       optionally change to a directory (make the directory if requested).
-#       run configure with correct prefix, platform, and CFLAGS.
-#       optionally restore current directory.
-#
-# Based on autogen.sh from GNOME and original GNUconfigure
-#
-%GNUconfigure(MCs:)      \
-  CFLAGS="${CFLAGS:-%optflags}" ; export CFLAGS; \
-  LDFLAGS="${LDFLAGS:-%{-s:-s}}"  ; export LDFLAGS; \
-  %{-C:_mydir="`pwd`"; %{-M: %{__mkdir} -p %{-C*};} cd %{-C*}} \
-  dirs="`find ${_mydir} -name configure.in -print`"; export dirs; \
-    for coin in `echo ${dirs}` \
-do \
-  dr=`dirname ${coin}`; \
-if test -f ${dr}/NO-AUTO-GEN; then \
- : \
-else \
-     macrodirs=`sed -n -e 's,AM_ACLOCAL_INCLUDE(\(.*\)),\1,gp' < ${coin}`; \
-    ( cd ${dr}; \
-      aclocalinclude="${ACLOCAL_FLAGS}"; \
-      for k in ${macrodirs}; do \
-        if test -d ${k}; then \
-          aclocalinclude="${aclocalinclude} -I ${k}"; \
-        ##else \
-        ##  echo "**Warning**: No such directory \`${k}'.  Ignored." \
-        fi \
-      done \
-      if grep "^AM_GNU_GETTEXT" configure.in >/dev/null; then \
-        if grep "sed.*POTFILES" configure.in >/dev/null; then \
-          : do nothing -- we still have an old unmodified configure.in \
-        else \
-          test -r ${dr}/aclocal.m4 || touch ${dr}/aclocal.m4; \
-          echo "no" | gettextize --force --copy; \
-          test -r ${dr}/aclocal.m4 && %{__chmod} u+w ${dr}/aclocal.m4; \
-        fi \
-      fi \
-      if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then \
-        %{__libtoolize} --force --copy; \
-      fi \
-      aclocal ${aclocalinclude}; \
-      if grep "^AM_CONFIG_HEADER" configure.in >/dev/null; then \
-        %{__autoheader}; \
-      fi \
-      echo "Running automake --gnu ${am_opt} ..."; \
-      %{__automake} --add-missing --gnu ${am_opt}; \
-      %{__autoconf}; \
-    ); \
-  fi \
-done \
-  %{-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} %* ; \
-  %{-C:cd ${_mydir}; unset _mydir}
-
 %patches %{lua: for i, p in ipairs(patches) do print(p.." ") end}
 %sources %{lua: for i, s in ipairs(sources) do print(s.." ") end}
 
@@ -976,12 +1081,12 @@ done \
 #------------------------------------------------------------------------------
 # Useful python macros for determining python version and paths
 #
-%python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; import sys; sys.stdout.write(get_python_lib())")
-%python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; import sys; sys.stdout.write(get_python_lib(1))")
-%python_version %(%{__python} -c "import sys; sys.stdout.write(sys.version[:3])")
+%python_sitelib %(%{__python} -Es %{_rpmconfigdir}/python-macro-helper sitelib)
+%python_sitearch %(%{__python} -Es %{_rpmconfigdir}/python-macro-helper sitearch)
+%python_version %(%{__python} -Es %{_rpmconfigdir}/python-macro-helper version)
 
 #------------------------------------------------------------------------------
-# arch macro for all Intel i?86 compatibile processors
+# arch macro for all Intel i?86 compatible processors
 #  (Note: This macro (and it's analogues) will probably be obsoleted when
 #   rpm can use regular expressions against target platforms in macro
 #   conditionals.
@@ -990,7 +1095,27 @@ done \
 
 #------------------------------------------------------------------------------
 # arch macro for all supported ARM processors
-%arm   armv3l armv4b armv4l armv4tl armv5tel armv5tejl armv6l armv7l
+%arm   armv3l armv4b armv4l armv4tl armv5tl armv5tel armv5tejl armv6l armv6hl armv7l armv7hl armv7hnl
+
+#------------------------------------------------------------------------------
+# arch macro for 32-bit MIPS processors
+%mips32        mips mipsel mipsr6 mipsr6el
+
+#------------------------------------------------------------------------------
+# arch macro for 64-bit MIPS processors
+%mips64        mips64 mips64el mips64r6 mips64r6el
+
+#------------------------------------------------------------------------------
+# arch macro for big endian MIPS processors
+%mipseb        mips mipsr6 mips64 mips64r6
+
+#------------------------------------------------------------------------------
+# arch macro for little endian MIPS processors
+%mipsel        mipsel mipsr6el mips64el mips64r6el
+
+#------------------------------------------------------------------------------
+# arch macro for all supported MIPS processors
+%mips  %{mips32} %{mips64}
 
 #------------------------------------------------------------------------------
 # arch macro for all supported Sparc processors
@@ -1002,7 +1127,7 @@ done \
 
 #------------------------------------------------------------------------------
 # arch macro for all supported PowerPC 64 processors
-%power64       ppc64 ppc64p7
+%power64       ppc64 ppc64p7 ppc64le
 
 #------------------------------------------------------------------------
 # Use in %install to generate locale specific file lists. For example,
@@ -1020,17 +1145,17 @@ done \
 # for any special local needs use %__urlhelper_localopts in system-wide
 # or per-user macro configuration.
 %__urlhelpercmd         @__CURL@
-%__urlhelperopts        --silent --show-error --fail --location -o
+%__urlhelperopts        --silent --show-error --fail --globoff --location -o
 %__urlhelper_proxyopts   %{?_httpproxy:--proxy %{_httpproxy}%{?_httpport::%{_httpport}}}%{!?_httpproxy:%{nil}}
 %_urlhelper             %{__urlhelpercmd} %{?__urlhelper_localopts} %{?__urlhelper_proxyopts} %{__urlhelperopts}
 
-#------------------------------------------------------------------------------
-# Collection specific macros
+# Transaction plugin macros
 %__plugindir           %{_libdir}/rpm-plugins
-%__collection_font     %{__plugindir}/exec.so /usr/bin/fc-cache
-%__collection_java     %{__plugindir}/exec.so /usr/bin/rebuild-gcj-db
-%__collection_sepolicy         %{__plugindir}/sepolicy.so
-%__collection_sepolicy_flags   1
+%__transaction_systemd_inhibit %{__plugindir}/systemd_inhibit.so
+%__transaction_selinux         %{__plugindir}/selinux.so
+%__transaction_syslog          %{__plugindir}/syslog.so
+%__transaction_ima             %{__plugindir}/ima.so
+%__transaction_prioreset       %{__plugindir}/prioreset.so
 
 #------------------------------------------------------------------------------
 # Macros for further automated spec %setup and patch application
@@ -1045,13 +1170,18 @@ done \
 # Plain patch (-m is unused)
 %__scm_setup_patch(q) %{nil}
 %__scm_apply_patch(qp:m:)\
-%{__patch} %{-p:-p%{-p*}} %{-q:-s}
+%{__patch} %{-p:-p%{-p*}} %{-q:-s} --fuzz=%{_default_patch_fuzz} %{_default_patch_flags}
+
+# Plain patch with backups for gendiff
+%__scm_setup_gendiff(q) %{nil}
+%__scm_apply_gendiff(qp:m:)\
+%{__patch} %{-p:-p%{-p*}} %{-q:-s} --fuzz=%{_default_patch_fuzz} %{_default_patch_flags} -b --suffix ".%{2}"
 
 # Mercurial (aka hg)
 %__scm_setup_hg(q)\
 %{__hg} init %{-q} .\
 %{__hg} add %{-q} .\
-%{__hg} commit %{-q} --user "%{__scm_author}" -m "%{name}-%{version} base"
+%{__hg} commit %{-q} --user "%{__scm_author}" -m "%{NAME}-%{VERSION} base"
 
 %__scm_apply_hg(qp:m:)\
 %{__hg} import - %{-p:-p%{-p*}} %{-q} -m %{-m*} --user "%{__scm_author}"
@@ -1063,23 +1193,30 @@ done \
 %{__git} config user.email "%{__scm_usermail}"\
 %{__git} add .\
 %{__git} commit %{-q} -a\\\
-       --author "%{__scm_author}" -m "%{name}-%{version} base"
+       --author "%{__scm_author}" -m "%{NAME}-%{VERSION} base"
 
 %__scm_apply_git(qp:m:)\
-%{__git} apply %{-p:-p%{-p*}} -\
-%{__git} commit %{-q} -a -m %{-m*} --author "%{__scm_author}"
+%{__git} apply --index %{-p:-p%{-p*}} -\
+%{__git} commit %{-q} -m %{-m*} --author "%{__scm_author}"
+
+# Git, using "git am" (-m is unused)
+%__scm_setup_git_am(q)\
+%{expand:%__scm_setup_git %{-q}}
+
+%__scm_apply_git_am(qp:m:)\
+%{__git} am %{-q} %{-p:-p%{-p*}}
 
 # Quilt
 %__scm_setup_quilt(q) %{nil}
 %__scm_apply_quilt(qp:m:)\
-%{__quilt} import %{-p:-p%{-p*}} %{1} && %{__quilt} push
+%{__quilt} import %{-p:-p%{-p*}} %{1} && %{__quilt} push %{-q}
 
 # Bzr
 %__scm_setup_bzr(q)\
 %{__bzr} init %{-q}\
 %{__bzr} whoami --branch "%{__scm_author}"\
 %{__bzr} add .\
-%{__bzr} commit %{-q} -m "%{name}-%{version} base"
+%{__bzr} commit %{-q} -m "%{NAME}-%{VERSION} base"
 
 # bzr doesn't seem to have its own command to apply patches?
 %__scm_apply_bzr(qp:m:)\
@@ -1088,13 +1225,23 @@ done \
 
 # Single patch application
 %apply_patch(qp:m:)\
-%{uncompress:%{1}} | %{expand:%__scm_apply_%{__scm} %{-q} %{-p:-p%{-p*}} %{-m:-m%{-m*}}}
+%{lua:\
+local file = rpm.expand("%{1}")\
+local num = rpm.expand("%{2}")\
+if posix.access(file, "r") then\
+    local options = rpm.expand("%{-q} %{-p:-p%{-p*}} %{-m:-m%{-m*}}")\
+    local scm_apply = rpm.expand("%__scm_apply_%{__scm}")\
+    print(rpm.expand("%{uncompress:"..file.."} | "..scm_apply.." "..options.."  "..file.." "..num.."\\n"))\
+else\
+    print("echo 'Cannot read "..file.."'; exit 1;".."\\n")\
+end}
 
 # Automatically apply all patches
 %autopatch(vp:)\
 %{lua:\
+local options = rpm.expand("%{!-v:-q} %{-p:-p%{-p*}} ")\
 for i, p in ipairs(patches) do\
-    print(rpm.expand("%apply_patch -m %{basename:"..p.."}  "..rpm.expand("%{!-v:-q} %{-p:-p%{-p*}} ")..p.."\\n"))\
+    print(rpm.expand("%apply_patch -m %{basename:"..p.."}  "..options..p.." "..i.."\\n"))\
 end}
 
 # One macro to (optionally) do it all.
@@ -1105,7 +1252,7 @@ end}
 %autosetup(a:b:cDn:TvNS:p:)\
 %setup %{-a} %{-b} %{-c} %{-D} %{-n} %{-T} %{!-v:-q}\
 %{-S:%global __scm %{-S*}}\
-%{-S:%{expand:%__scm_setup_%{-S*} %{!-v:-q}}}\
+%{expand:%__scm_setup_%{__scm} %{!-v:-q}}\
 %{!-N:%autopatch %{-v} %{-p:-p%{-p*}}}
 
 # \endverbatim