openSUSE:Packaging Conventions RPM Macros
tagline: From openSUSE
- Build Service cross distribution howto
- Build Service Tips and Tricks
- Build Service Tutorial
- Creating a changes file (RPM)
- Java jpackage-utils
- Java RPM Macros
- Package group guidelines
- Package naming guidelines
- Package security guidelines
- Packaging checks
- Packaging Conventions RPM Macros
- Packaging desktop menu categories
- Packaging Fonts
- Packaging Games
- Packaging Go
- Packaging guidelines change process
- Packaging Haskell
- Packaging init scripts
- Packaging Java
- Packaging Lua
- Packaging Multiple Version guidelines
- Packaging Patches guidelines
- Packaging Perl
- Packaging PHP
- Packaging Python
- Packaging Ruby
- Packaging scriptlet snippets
- Packaging wxWidgets
- Ruby Gem Strategies
- Shared library packaging policy
- Specfile guidelines
- Systemd packaging guidelines
- Packaging guidelines
RPM Macros
Syntax
This section describes predefined RPM macros used in the SUSE packages. Some of them are generic RPM macros. Some are SUSE-specific macros. For other existing generic macros, other documentation should be consulted, such as Maximum RPM or Macro syntax. The Java-related macros are described in the openSUSE:Packaging Java page. KDE macros are documented at openSUSE:KDE RPM Macros. If you wish to perform advanced rpm macro programming, rpm has built in support for the Lua programming language
You can find all the predefined macros in the /usr/lib/rpm/macros and suse_macros files with some explanation. Additional package specific macros are added by files in /etc/rpm. If you place the macro %dump in your spec file and use `rpmbuild -bp specfile`, it will cause a dump of all the macros available on your system. It is however easier to just execute `rpm --showrc`.
One important difference between RPM macros and normal Linux commands is how the options and parameters are defined. RPM provides only a simple support for processing options. One limitation is that all options must be defined before parameters and it is not possible to simply use pairs created from an option and a related value. For example, the Linux command top uses the following synopsis:
top [-bcisS] [-d delay] [-n iterations] [-p pid] [, pid ...]
The used pairs -d delay, -n iterations, -p pid and all the parameters are optional. The option before a parameter defines which parameter is really used on the command line. This makes it possible to call:
Example 1: top -n 20 -p 10345
Example 2: top -d 1 -p 10345
and the command knows that 20 is a number of iterations, 1 is a delay and 10345 is a PID.
Due to the limitation in RPM, the synopsis of a related RPM macro would look like:
%top [-bcisSdnp] [delay] [iterations] [pid] [,pid ...]
All the options must be defined before parameters and the option again defines which parameter is really used. This means that the related call of the potential RPM macro of the examples above would be:
Example 1: %top -n -p 5 10345
Example 2: %top -d -p 1 460
%_docdir
This macro is substituted with the default directory for documentation, /usr/share/doc/packages. It may be redefined by the Docdir tag. Usually, it is used to install a documentation in the %install section if it is not sufficient to do it in the %files with the %doc tag. Furthermore, the %doc tag need not be used together with %_docdir in the %files section. It is done automatically for this directory.
This example is taken from the aeolus package:
%install [...] mkdir -p "%buildroot/%_docdir/%name" cp -a .aeolusrc "%buildroot/%_docdir/%name/aeolusrc" cp -Ra stops-* "%buildroot/%_docdir/%name" [...]
%files [...] %_docdir/%name
%_infodir
This macro is substituted with the default directory for info pages, /usr/share/info. It is often used with `./configure --infodir="%_infodir"`, with the the %install_info macro, and in the file list. As with %_docdir, the tag %doc need not be used together with %_infodir in the %files section. It is done automatically for this directory.
%_lib
This macro substitutes with either lib or lib64, as appropriate. The second variant appears on 64-bit architectures which support running both 64-bit and 32-bit programs in parallel (biarch systems). On such systems, two variants of the same libraries must coexist. Therefore, the 64-bit libraries are installed in lib64 directories and 32-bit libraries in the traditional lib directories.
%_lib itself is used when the macro %_libdir is not sufficient, for example, when libraries are supposed to go into /usr/X11R6/%_lib. It is often used with `./configure -–libdir="/usr/X11R6/%_lib"` and in the file list.
%_libdir
This macro is substituted with %_prefix/%_lib. It has the same function as %_lib and is used even more often than it, because the libraries usually are installed into /usr/lib(64). Used with `./configure --libdir="%_libdir"` and in the file list.
%_mandir
This macro is substituted with the default directory for manual pages, /usr/share/man. It is often used with `./configure --mandir="%_mandir"` and in the %files section, such as in
%files %_mandir/*/*
As with %_docdir, the %doc tag need not be used together with %_mandir in the %files section. It is done automatically for this directory.
%desktop_database_post / %desktop_database_postun
These macros need to be called for every application which installs a desktop file including a MIME type handler. This will update the system MIME cache by calling update-desktop-database.
These macros are available from 11.4 on!
It requires desktop-file-utils package. Example from meld package:
BuildRequires: hicolor-icon-theme
...
BuildRequires: update-desktop-files
...
%if 0%{?suse_version} >= 1140
%post
%desktop_database_post
%icon_theme_cache_post
%endif
%if 0%{?suse_version} >= 1140
%postun
%desktop_database_postun
%icon_theme_cache_postun
%endif
BuildRequires: desktop-file-utils is not needed if BuildRequires: update-desktop-files is already added to the specfile preamble, as the latter already requires desktop-file-utils package.
FIXME: Which tag is needed for Requires(post/postun)?
%define
This macro is used to define custom macros inside a specific spec file. Use this as a placeholder for recurring words like a custom name for the package
%define custom_version 12.6_64 .. %setup -qn %name-%custom_version
%fdupes
This macro is used to hardlink or softlink duplicate files in your %buildroot. This is useful to reduce installed size of your package, and in some cases, the size of the RPM package itself as well. Please be careful that these duplicated files do not end up in different subpackages; we have not tried yet what rpm does in the hardlink case. If in doubt, you can use %fdupes -s, which will create symlinks that are easier to grasp for rpm and rpmlint will give a "dangling symlink" error if the file and link ended up in different packages.
You can also combine this like this:
.. BuildRequires: fdupes .. %install .. # create symlinks for man pages %fdupes -s %buildroot/%_mandir # create hardlinks for the rest %fdupes %buildroot/%_prefix
fdupes must NOT be used on (%buildroot)/etc and /var when creating hardlinks. All files in /etc are meant to be readily editable, and the presence of hardlinks lead to unexpected behavior, as some editing programs may modify files in-place, and others may recreate the file. %fdupes is generally safe for use on /bin, /lib*, /usr (= %_prefix) and /sbin. Do note however that files with same content but different ownership, when hardlinked, will get the ownership of any of its content siblings.
There is a RPMLint check that will give an error for the package if it is wasting a considerable amount of space. If you do not BuildRequire fdupes, you will receive a "no job control" error due to "%fdupes" not expanding (and bash treats % for job control).
%fillup_and_insserv
This macro can be used to fill up sysconfig files and insserv init scripts.
Synopsis:
%fillup_and_insserv [-finyY] [sysconfig_filename] [init_script_name] ...
The %fillup_and_insserv macro combines two functions in one command. It is used to insert (fill up) config files in /etc/sysconfig and to enable (insserv) services in runlevels. The fillup part assumes a template stored in /var/adm/fillup-templates/sysconfig_filename.%name.
The macro is used in the %post section of packages that install an init script and want to enable it by default. See “Installation” for more details. Do not forget to mention the used utilities used in the PreReq. The %insserv_prereq and %fillup_prereq serve this purpose.
(Actually, since insserv/fillup is only called in %post, should Requires(post) not be more appropriate than PreReq?)
Options:
-
-fskips the fillup part. -
-iskips the insserv part. -
-ndefines that the parametersysconfig_filenameis used (see below). -
-ycauses enabling the init-script by default if the package is installed for the first time (not during an update). It is ignored ifX-UnitedLinux-Default-Enabledis specified in the init script. -
-Yforcefully enables the service. This means the service is always activated regardless of the setting before an update.
Parameters:
- sysconfig_filename creates a pair with the option -n and defines the filename where the configuration is filled up, /etc/sysconfig/sysconfig_filename. In addition, it defines a name of the file with templates. The macro searches for two possible template files. It prefers /var/adm/fillup-templates/sysconfig.sysconfig_filename.%name if it is available. Otherwise, it searches for /var/adm/fillup-templates/sysconfig.sysconfig_filename. The longer variant must be used if multiple packages write to the same config file. By default (that is, when the -n option is not used), the template is /var/adm/fillup-templates/sysconfig.%name and the target sysconfig file is /etc/sysconfig/%name.
- init_script_name defines a name of the init script processed by `
insserv`. It must be defined if the -i option is not used. More init scripts names can be defined (see examples below).
Example from the mailman package:
PreReq: %insserv_prereq %fillup_prereq ...
%post
%{fillup_and_insserv mailman}
It fills the configuration file /etc/sysconfig/mailman from the template /var/adm/fillup-templates/sysconfig.mailman.
Example taken from the hwinfo package:
PreReq: %insserv_prereq
%post
%{fillup_and_insserv -f -y hwscan}
It runs `insserv` on /etc/init.d/hwscan and enables the service by default. Note that only the insserv part is in PreReq because the fillup part is omitted, as the -f option was used.
Example from the openssh package:
%{fillup_and_insserv -n -y ssh sshd}
It fills the configuration file /etc/sysconfig/ssh. The template is taken either from /var/adm/fillup-templates/sysconfig.ssh.openssh or from /var/adm/fillup-templates/sysconfig.ssh. The first one is preferred. It runs `insserv` on /etc/init.d/sshd and enables the service by default during a new installation.
Example from the openldap2 package:
%{fillup_and_insserv -n openldap ldap slurpd}
It fills the configuration file /etc/sysconfig/openldap. The template is taken either from /var/adm/fillup-templates/sysconfig.openldap.openldap2 or from /var/adm/fillup-templates/sysconfig.openldap. The former is preferred.
%fillup_only
This macro can be used to fill up sysconfig files.
Synopsis:
%fillup_only [-adns] [sysconfig_filename] [suffix] [sysconfig_subdir]
The %fillup_only macro is used to insert (fill up) the variables from a template /var/adm/fillup-templates/sysconfig.sysconfig_filename[-suffix] into a config file /etc/sysconfig/sysconfig_filename. The base function is similar to %fillup_and_insserv -i, but it allows modifying config files in subdirectories of /etc/sysconfig.
The macro is typically used in the %post section. Do not forget to mention the utilities used in the PreReq tag. The macro %fillup_prereq is intended for this purpose.
Options:
-
-auses the package name as a suffix of the syconfig template filename. -
-ddefines that the parametersysconf_subdiris used (see below). -
-ndefines that the parametersysconfig_filenameis used (see below). -
-sdefines that the parametersuffixis used (see below).
Parameters:
- sysconfig_filename creates a pair with the -n option and defines the name of the sysconfig file and a name of the file with templates. By default (that is, when the -n option is not used), the package name is used instead. So the template /var/adm/fillup-templates/sysconfig.%name is filled up to /etc/sysconfig/%name.
- sysconfig_template_filename_suffix creates a pair with the -s option and defines a suffix of the filename with templates.
- sysconfig_subdir creates a pair with the -d option and defines a subdirectory of /etc/sysconfig where the synconfig file is located.
Example from the tetex package:
PreReq: %fillup_prereq %post %fillup_only
It fills up the config file /etc/sysconfig/tetex from the template /var/adm/fillup-templates/sysconfig.tetex.
Example from the man package:
%{fillup_only -an cron}
It fills the config file /etc/sysconfig/cron from the template /var/adm/fillup-templates/sysconfig.cron-man.
Example from the dhcp package:
%{fillup_only -ans syslog dhcpd}
It fills the config file /etc/sysconfig/syslog from the template /var/adm/fillup-templates/sysconfig.syslog-dhcpd.
Example from the samba package:
%fillup_only -nsd dhcp samba-client network
It fills the config file /etc/sysconfig/network/dhcp from the template /var/adm/fillup-templates/sysconfig.dhcp-samba-client.
%find_lang
This macro helps to mark locale-dependent files with the respective %lang tag in the file list.
Synopsis
%find_lang options name [filelist]
The %find_lang macro searches the directories /usr/share/locale and locale/*/LC_MESSAGES for name.mo files. It also searches gnome/help/name and kde*/share/doc/HTML/*/name directories for a localized documentation. Then it creates the file filelist where the files are marked with the respective %lang(locale) and %doc tags. Such a file list can be then passed to the %files tag via the -f option. See below for an example.
It is recommended to use this macro only if the BuildRoot tag is defined as otherwise the entire system will be searched.
Options
- --without-gnome
- do not find GNOME help files.
- --without-kde
- do not find KDE help files.
- --with-qt
- find Qt translation files.
- --with-man
- find localized man pages.
- --all-name
- match all package/domain names.
- --without-mo
- do not find locale files.
Parameters
- name
- defines the name of .mo files and the name of sub-directories where GNOME and KDE localized documentation is stored. It is also used for the filelist where the generated file list is stored if the parameter filelist is not given.
- filelist
- defines the name of the file where the generated list of files is stored. name.lang is used if not otherwise defined.
Example from the package pan:
%install make -i DESTDIR="%buildroot" install %find_lang %name # generate a special file list %files -f %name.lang # use the special file list %defattr(-,root,root) # list the other files %doc README ChangeLog AUTHORS TODO COPYING CREDITS %attr(755,root,root) %prefix/bin/pan […]
%icon_theme_cache_post / %icon_theme_cache_postun
This macro is used to update the icon theme cache for packages which install icons into hicolor or other icon themes. It is meant to be called in %post and %postun sections and takes an option argument which is the name of the updated icon theme where hicolor is the default.
These macros are available from 11.4 on only!
It requires the hicolor-icon-theme package. Example: see %desktop_database_post / %desktop_database_postun.
FIXME: Which tag is needed as Requires(post/postun)?
%insserv_cleanup
This macro is used to run `insserv` after a package is removed. Each package providing an init script should call this macro in the %postun section.
Example from the openldap2 package:
%postun %restart_on_update ldap slurpd %insserv_cleanup
%insserv_force_if_yast
This macro is a plain call of the `insserv` if the package is not installed by YaST. When YaST is used, it calls `insserv -f` instead. This helps to avoid errors on "out-of-sequence" package installations.
The macro is used in the %post script of packages that install an init script and which want to enable it by default. It is also used if the init script existed prior to SL 8.0 when the START variables were used. See openSUSE:Packaging_init_scripts#Installation, “Installation” for more details. Do not forget to mention the used utilities in the PreReq tag. There are the macros %insserv_prereq and %fillup_prereq for this purpose.
Example from the glibc package, nscd subpackage:
%package -n nscd
PreReq: %insserv_prereq
%post -n nscd
%{insserv_force_if_yast nscd}
%install_info
This macro updates dir entries for info files.
Synopsis:
%install_info install_info_options
The %install_info macro runs `bin/install-info` with some additional tests. It accepts any option from the install-info utility. See `man install-info` for more details.
Each package providing info pages should call this macro in the %post section. Do not forget to mention all the used utilities in the PreReq tag. The %install_info_prereq macro exists for this purpose.
Examples:
Example from the zsh package:
PreReq: %install_info_prereq
%post %install_info --info-dir=%_infodir %_infodir/%name.info.gz
Example from the rplay package (a package with multiple info pages):
PreReq: %install_info_prereq
%post %install_info --info-dir=%_infodir %_infodir/%name.info.gz %install_info --info-dir=%_infodir %_infodir/RPLAY.info.gz %install_info --info-dir=%_infodir %_infodir/RPTP.info.gz %install_info --info-dir=%_infodir %_infodir/librplay.info.gz
%install_info_delete
This macro removes dir entries for info files.
Synopsis:
%install_info_delete install_info_options
The macro %install_info_delete is a complement to the macro %install_info. It runs sbin/install-info --quiet –delete with some additional tests. It accepts any option from the install-info utility. See man install-info for more details.
Each package providing info pages should call this macro in %postun script. Do not forget to mention all the utilities used in the PreReq tag. The macro %install_info_prereq is intended for this purpose.
Examples:
- This example is taken from the package
zsh(also shows the relatedPreReqtag):
PreReq: %install_info_prereq [...] %postun %install_info_delete --info-dir=%_infodir %_infodir/%name.info.gz
- This example is taken from the package
rplay(a package with multiple info pages). The example also shows the relatedPreReqtag):
PreReq: %install_info_prereq [...] %postun for infoname in %name RPLAY RPTP librplay; do %install_info_delete --info-dir=%_infodir %_infodir/$infoname.info.gz done
%perl_archlib
This macro is substituted by the path where architecture-specific parts of Perl are installed, for example, /usr/lib/perl5/5.8.5/i586-linux-thread-multi.
It is normally only used by the perl package itself and by the macro %perl_process_packlist. See below.
%perl_gen_filelist
Generates an rpmlint happy filelist of your installed files.
In most cases you only need to check the %doc part sometimes there is a "Changes" or "ChangeLog",....
You have to define following parts inside your spec file
Example:
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files -f %{name}.files
%defattr(-,root,root)
%doc Changes README
And here an Example of the generated filelist:
%dir /usr/lib/perl5/vendor_perl/5.8.8/Algorithm /usr/lib/perl5/vendor_perl/5.8.8/Algorithm/DiffOld.pm /usr/lib/perl5/vendor_perl/5.8.8/Algorithm/diff.pl /usr/lib/perl5/vendor_perl/5.8.8/Algorithm/Diff.pm /usr/lib/perl5/vendor_perl/5.8.8/Algorithm/diffnew.pl /usr/lib/perl5/vendor_perl/5.8.8/Algorithm/cdiff.pl /usr/lib/perl5/vendor_perl/5.8.8/Algorithm/htmldiff.pl %dir /usr/lib/perl5/vendor_perl/5.8.8/x86_64-linux-thread-multi/auto/Algorithm %dir /usr/lib/perl5/vendor_perl/5.8.8/x86_64-linux-thread-multi/auto/Algorithm/Diff /usr/lib/perl5/vendor_perl/5.8.8/x86_64-linux-thread-multi/auto/Algorithm/Diff/.packlist /usr/share/man/man?/* /var/adm/perl-modules/perl-Algorithm-Diff
%perl_make_install
This macro does the make install call correctly on various products. Before SL 9.0, the normal way to invoke it was:
make PREFIX="%buildroot/%_prefix" \ INSTALLMAN1DIR="%buildroot/%_mandir/man1" \ INSTALLMAN3DIR="%buildroot/%_mandir/man3" \ install
For 9.0 and later versions:
make DESTDIR="%buildroot" install_vendor
With the macro %perl_make_install, this is done correctly according to the version.
This example comes from the package perl-URI:
%install %perl_make_install
%perl_process_packlist
This macro prepares some files, related to perl modules, for the final package. It does the following actions:
Each package including a perl module should call this macro in the section %install.
for 0%{?suse_version} >= 1140
- Searches for the installed
.packlistfiles and removes them from%buildroot/%perl_vendorarch/auto.
If %_target_cpu == noarch then empty directories are removed from %buildroot/%perl_vendorarch/auto.
- Removes the
%buildroot/%perl_archlib/perllocal.podfile.
This example is taken from the package perl-HTML-Parser:
%install %perl_make_install %perl_process_packlist %perl_gen_filelist %files -f %name.files %doc Changes mkhctype mkpfunc README TODO eg %changelog
for 0%{?suse_version} <= 1130
- Removes
%buildrootfrom%perl_archlib/perllocal.podand renames the file to a package-specific file. See below for more details. - Searches for the installed
.packlistfiles and removes%buildrootfrom them.
The file %perl_archlib/perllocal.pod must be renamed because it contains information about additional installed perl modules and evidently cannot be installed at the same place from multiple packages. Therefore, it is renamed and a special SuSEconfig module, /sbin/conf.d/SuSEconfig.perl, adds this information to the system %perl_archlib/perllocal.pod after the package is installed.
This example is taken from the package perl-URI:
%install %perl_make_install %perl_process_packlist %files [...] /var/adm/perl-modules/%name
%perl_sitearch
This macro is substituted by the path where architecture-specific parts of Perl modules are installed by a local administrator (/usr/lib/perl5/site_perl/5.8.5/i586-linux-thread-multi). The packages distributed within SUSE Linux use the path defined by %perl_vendorarch instead. See below.
%perl_sitelib
This macro is substituted by the path where architecture-independent parts of Perl modules are installed by a local administrator (/usr/lib/perl5/site_perl/5.8.5). The packages distributed within SUSE Linux use the path defined by %perl_vendorlib instead (see below).
%perl_vendorarch
This macro is substituted by the path where architecture-specific parts of Perl modules are installed by a Linux vendor (/usr/lib/perl5/vendor_perl/5.8.5/i586-linux-thread-multi). The macro is typically used in the file list. This example comes from the package perl-URI:
%files [...] %perl_vendorarch/auto/URI
This path has been used since SL 9.0. Until then, the Perl modules were installed below /usr/lib/perl5/site_perl using the macro %perl_sitearch. The directory site_perl is now intended for modules installed by a local administrator (see above at %perl_sitearch).
%perl_vendorlib
This macro substitutes for the path where architecture-independent parts of Perl modules are installed by a Linux vendor (/usr/lib/perl5/vendor_perl/5.8.5). The macro is typically used in the file list. This example comes from the package perl-URI:
%files [...] %perl_vendorlib/URI.pm %perl_vendorlib/URI
This path has been used since SL 9.0. Until then, the Perl modules were installed below /usr/lib/perl5/site_perl using the macro %perl_sitearch. The directory site_perl is now intended for modules installed by a local administrator (see above at %perl_sitelib).
%perl_version
This macro is substituted by the version of Perl used for building the package, such as 5.8.5. It is used in packages providing a perl module to define the dependency on Perl.
It is typically used the following way. This example is taken from the package perl-URI:
%perl_requires
and is expanded this way :
%perl_requires() \
%if 0%{?suse_version} > 0 && 0%{?suse_version} < 1700 \
Requires: perl = %perl_version \
%endif
%py_incdir
This macro substituted by the path where Python header files are installed, such as /usr/include/python2.3. See openSUSE:Packaging_Python, “Python Modules” for an example.
%py_libdir
This macro is substituted by the path where Python modules are installed, such as /usr/lib/python2.3. See openSUSE:Packaging_Python, “Python Modules” for an example.
%py_requires
This macro is substituted by PreReq and BuildRequires tags. This defines dependency on the same python major version as is used during build. See openSUSE:Packaging_Python, “Python Modules” for an example.
%py_sitedir
This macro is substituted by the path where all extra Python modules all installed, such as /usr/lib/python2.3/site-packages. See “Python Modules” for an example.
%py_ver
This macro is substituted by the Python major version, such as 2.3. See openSUSE:Packaging_Python, “Python Modules” for an example.
%remove_and_set
This macro is used to remove obsolete sysconfig variables.
Synopsis:
%remove_and_set [-ny] [sysconfig_filename] variable...
The macro %remove_and_set removes variables from /etc/rc.config and /etc/sysconfig/sysconfig_filename and sets them in the actual environment for further handling. If a variable is not found, it is set to "no" by default or it is set to “yes” if the option -y is used.
Options:
-
-ndefines that the parametersysconfig_filenameis used (see below). -
-ysets the default value to“yes”.
Parameters:
-
sysconfig_filenamecreates a pair with the option-nand defines the syconfig filename. The package name (%name) is used as the sysconfig filename otherwise. -
variabledefines the name of a variable to remove. Multiple variables can be defined.
Examples:
- This example is taken from the package
postfix:
%{fillup_and_insserv -y postfix}
if [ -f etc/sysconfig/mail ]; then
. etc/sysconfig/mail
if [ -n "$NULLCLIENT" ]; then
RCTMP="etc/sysconfig/postfix.$$"
sed "s/^POSTFIX_NULLCLIENT.*/POSTFIX_NULLCLIENT=\"$ \"/" \
etc/sysconfig/postfix >"$RCTMP"
mv "$RCTMP" etc/sysconfig/postfix
fi
fi
%{remove_and_set -n mail NULLCLIENT}
This code sets the variable POSTFIX_NULLCLIENT from etc/sysconfig/postfix to the value of the obsolete variable NULLCLIENT from etc/sysconfig/mail. Then the obsolete variable is removed.
- This example is taken from the package
autofs:
%post
%{fillup_and_insserv autofs}
# needed for update from 7.3 and before
%{remove_and_set USE_NIS_FOR_AUTOFS USE_NISPLUS_FOR_AUTOFS}
if [ $USE_NIS_FOR_AUTOFS == "yes" ] ; then
if `grep "^automount:" etc/nsswitch.conf | \
grep -vqw nis` ; then
sed "s/^automount:.*/& nis/" < etc/nsswitch.conf \
>etc/nsswitch.conf.new
mv etc/nsswitch.conf.new etc/nsswitch.conf
fi
fi
if [ $USE_NISPLUS_FOR_AUTOFS == "yes" ] ; then
if `grep "^automount:" etc/nsswitch.conf | \
grep -vqw nisplus` ; then
sed "s/^automount:.*/& nisplus/" < etc/nsswitch.conf \
> etc/nsswitch.conf
mv etc/nsswitch.conf.new etc/nsswitch.conf
fi
fi
The obsolete variables USE_NIS_FOR_AUTOFS, USE_NISPLUS_FOR_AUTOFS are removed from /etc/rc_config and /etc/sysconfig/autofs and the removed values are used to modify an actual configuration.
The detected values cannot be used in the previous example because the macro %remove_and_set is able to set only values “yes” or “no” in the environment.
%restart_on_update
This macro restarts a service after an update.
Synopsis:
%restart_on_update service...
The macro %restart_on_update runs /etc/init.d/service try-restart if not running under YaST in the instsys mode. Multiple services can be defined.
This macro is usually used in the %postun script of packages providing a service. However, it cannot be used if it cannot be guaranteed that the service will work after an update.
Examples:
- This example is taken from the package
rsync:
%postun %restart_on_update rsyncd %insserv_cleanup
- This example is taken from the package
samba(restarts two services):
%postun %restart_on_update nmb smb %insserv_cleanup
%run_ldconfig (deprecated)
This macro runs ldconfig if not running from YaST. YaST runs ldconfig itself after all selected packages are installed.
It was used in both %post and %postun scripts of packages providing a library. The macro is deprecated and should not be used anymore. Instead, /sbin/ldconfig should be called directly both scripts, even from YaST, to keep from breaking other %post scripts. It could be done the following way:
%post -p /sbin/ldconfig %postun -p /sbin/ldconfig
If ldconfig is not the only command, the -p option is not usable. For example, the %post script could look like:
%post /sbin/ldconfig [...]
%run_permissions
This macro runs SuSEconfig --module permissions to adjust file permissions according to the system's security setting.
Note: Running SuSEconfig has the disadvantage that permissions of all installed files are adjusted, not just the ones that belong to the package. Therefore this macro is deprecated since openSUSE 11.4, use %set_permissions instead.
%run_permissions needs to be called in the %post script of packages that install files handled by /etc/permissions.*. The permissions package needs to be in PreReq so SuSEconfig.permissions is guaranteed to be available at install time.
In addition the macro %verify_permissions needs to be called as %verifyscript
Example:
PreReq: permissions [...] %post %run_permissions
%set_permissions
This macro adjusts permissions of the specified files according to the system's security setting.
Available since openSUSE 11.4
%set_permissions needs to be called in the %post script of packages that install files handled by /etc/permissions.*. The permissions package needs to be in PreReq so chkstat is guaranteed to be available at install time. The parameter is the name of the permissions config file of the package (usually identical to the package name).
In addition the macro %verify_permissions needs to be called as %verifyscript
Example:
PreReq: permissions [...] %post %set_permissions /bin/ping
%sles_version
This macro expands to the version of SLES where the package is built. It is ”7” for SLES7, ”8” for SLES8, etc. It is ”0” when not building on SLES.
See also %suse_version and %ul_version.
And openSUSE:Build Service cross distribution howto#Detect_a_distribution_flavor_for_special_code
This example is taken from the package pam-modules:
%install
[...]
# On UL or SLES, we have other defaults
%if %sles_version >= 8
cp %_sourcedir/pam_pwcheck.conf.sles \
%buildroot/etc/security/pam_pwcheck.conf
%endif
%stop_on_removal
This macro stops a service after a package is removed.
Synopsis:
%stop_on_removal service...
The macro %stop_on_removal runs /etc/init.d/service stop if not running from YaST in the instsys mode. Multiple services can be defined.
Each package providing a service that can be stopped should call this macro on all services in the %preun script.
Examples:
- This example is taken from the package
rsync:
%preun %stop_on_removal rsyncd
- This example is taken from the package
samba(stops two services):
%preun %stop_on_removal smb nmb
%suse_update_config
This macro updates some auto-stuff related files.
Usage:
%suse_update_config [-fcl] [dir ...]
This macro takes the following actions for the current directory and all directories given as parameters:
-
config.guessandconfig.subare overwritten by their most current versions from/usr/share/automake*/. -
depcompandmissingare added if not present in the processed directory but present in/usr/share/automake*/. -
ltconfigandltmain.share patched to accept bothlinux-gnuandlinux. -
/libis replaced by/%_libin some occurrences in bothltconfigandltmain.sh.
This macro should be called in all packages using the problematic files. However, it is not needed when autoreconf or aclocal, libtoolize, automake, and autoconf is used, because they are able to update the needed things.
This macro should be tested for existence when used in the section %prep. This allows running this section on other distributions where the macro is not available. See the examples below.
Options:
-
-c— do not updateconfig.guess,config.sub,depcompandmissing -
-f— force, ignore time stamps -
-l— do not updateltconfigandltmain.sh
Parameters:
-
dirdefines an additional directory where the files should be updated. Multiple directories can be defined.
Examples:
- This example is taken from the package
libunicode:
%prep
%setup
%patch -P 1 -p1
%build
%{?suse_update_config:%{suse_update_config -f}}
%configure
make %{?_smp_mflags}
- This example is taken from the package
xosview(updates files in both./and./configdirectories):
%prep
%setup -q
%patch -P 1 -p0 -b ".serial"
[...]
%{?suse_update_config:%{suse_update_config -f config}}
%build
%ifarch ppc
export SYSTEM=powerpc-suse-linux
%else
export SYSTEM=%_target_cpu-suse-linux
%endif
(cd config/; autoconf; cp configure ../)
./configure $SYSTEM \
--with-x \
--enable-auto-depend \
--enable-linux-syscalls \
--prefix=/usr/X11R6 \
--disable-linux-memstat
make clean
%suse_update_desktop_file
This macro updates .desktop files.
Synopsis:
%suse_update_desktop_file -c filename name comment exec icon [category]...
%suse_update_desktop_file [-inru] [-D docpath] [-N name] [-G genericname] filename [category]...
The macro %suse_update_desktop_file updates translations, adds categories (needed to sort menus), and does some sanity checks in the given .desktop file. It requires the package update-desktop-files.
Each package providing a .desktop file should call this macro for all basenames of .desktop files (without .desktop suffix) in the section %install after the desktop-files have been installed under /usr/share/applications or /etc/xdg/autostart. Do not forget to mention the package update-desktop-files in the BuildRequires tag. It is included in the meta packages:
-
gnome2-devel-packages -
gtk2-devel-packages -
kde3-devel-packages -
qt3-devel-packages -
yast2-core-devel-packages -
yast2-devel-packages
The package update-desktop-files need not be explicitly mentioned in the BuildRequires tag if any of these meta packages is already there.
Options:
-
-cfilenamenamecommentexecicon[category] — Create a new .desktop file initialized by the parametersfilename,name,comment,exec,icon, andcategorythe following way:
[Desktop Entry] Name=name GenericName=comment Type=Application Exec=exec Icon=icon Categories=category;....
and install it as %buildroot/usr/share/applications/filename.desktop.
-
-i— Search%_sourcedirand/usr/share/update-desktop-files/templatesfor the templatefilename.desktopand install it as%buildroot/usr/share/applications/filename.desktop. -
-n— Do not update translations. It is useful if the linesName=andGenericName=contain a string that cannot be translated. -
-r— Replace categories defined in the .desktop file with the new one defined by the parameter category. By default, the new categories are only added after the already included categories. -
-u— Add the lineX-SuSE-Unimportant=trueto the .desktop file. -
-DdocpathSets the .desktop file DocPath entry. -
-NnameSets the .desktop file Name entry. -
-GgenericnameSets the .desktop file GenericName entry.
Parameters:
-
filenamedefines a filename of the .desktop file. The value is the filename without the suffix.desktop. -
categoryis used to add or modify the lineCategories=in the .desktop file. This line is used to sort entries into submenus.
Examples:
- This example is taken from the package
kvim(also shows the related parts ofBuildRequirestag and%filessection):
BuildRequires: ... update-desktop-files ... %install [...] %suse_update_desktop_file KVim TextEditor %files [...] /opt/kde3/share/applnk/*/*.desktop
This code updates translations in the already installed /opt/kde3/share/applnk/Editors/KVim.desktop. As the original .desktop file does not contain the line Categories=, it is initialized to Categories=TextEditor;.
- This example is from the package
crack-atack: (also shows the related parts ofBuildRequirestag,Sourcetags and%filessection):
BuildRequires: ... update-desktop-files ... Source1: %name.desktop Source2: %name-xtreme.desktop [...] %install [...] %suse_update_desktop_file -i %name Game ArcadeGame %suse_update_desktop_file -i %name-xtreme Game ArcadeGame %files [...] /usr/share/applications/%name.desktop /usr/share/applications/%name-xtreme.desktop
This code finds the two templates in %_sourcedir and installs them into /usr/share/applications. See the section %files for the final path. It also updates translations. As the templates do not contain the line Categories=, it is initialized to Categories=Game;ArcadeGame;.
- This example is taken from the package
koffice:
%install [...] %suse_update_desktop_file kugar Office Viewer %suse_update_desktop_file -r karbon Graphics VectorGraphics %suse_update_desktop_file kivio Office FlowChart %suse_update_desktop_file kpresenter Office Presentation %suse_update_desktop_file kchart Office FlowChart %suse_update_desktop_file kspread Office Spreadsheet %suse_update_desktop_file -u KThesaurus Office %suse_update_desktop_file -u kformula Office %suse_update_desktop_file kword Office WordProcessor %suse_update_desktop_file -u koshell Office Core-Office
This code updates translations in the already installed desktop files. In addition, for example, Kthesaurus.desktop is marked as unimportant and the obsolete line Categories= is replaced with Categories=VectorGraphics; in karbon.dekstop.
- This example is taken from the package
qbrew:
%suse_update_desktop_file -c qbrew QBrew \ "A homebrewer's recipe calculator" \ qbrew "" Science
- This code creates a .desktop file:
[Desktop Entry] Name=QBrew GenericName=A homebrewer's recipe calculator Type=Application Exec=qbrew Icon= Categories=Science;
Then it adds available translations and installs it as /usr/share/applications/qbrew.desktop.
Known issues
- The setting
Categories=Application;Office;
is typical for Fedora packages, but yields to build failures in SUSE. The error message says No sufficient Category definition. You need to use the '-r' flag to remove the offending category 'Application' abd replace it by only allowed categories. The -r option must come before the name to be effective.
%suse_update_desktop_file -u -r -G 'OCR Suite' %{name} Office Graphics Scanning OCR
If this command leads to an error message /var/tmp/rpm-tmp.mkeCpx: line 54: fg: no job control please try adding
BuildRequires: update-desktop-files
- The setting
Version=0.5
is typical for Fedora packages, but yields a warning with SUSE. Manual patching is required to resolve this warning.
%suse_version
This macro expands to the version of SUSE Linux / openSUSE where the package is built. It is "1000" for SUSE Linux 10.0, "1020" for openSUSE 10.2 and so on.
See also %sles_version and %ul_version.
And openSUSE:Build Service cross distribution howto#Detect_a_distribution_flavor_for_special_code
It can be used to used for version check
..
%if 0%{?suse_version} >= 1110
BuildRequires: new-package-introduced-in-11.0
%endif
..
Or to check if the package is being built for openSUSE
..
%if 0%{?suse_version}
BuildRequires: libqt4-devel
%else
BuildRequires: qt4-devel
%endif
...
%tcl_version
This macro expands to the version of Tcl used on the product where the package is built. It is "8.3" for tcl-8.3, “8.4” for tcl-8.4, etc.
This example is taken from the package vkeybd:
%build
make PREFIX="%_prefix" \
TCL_VERSION="%tcl_version" \
XLIB="-L/usr/X11R6/lib64 -L/usr/X11R6/lib -lX11" \
USE_LADCCA=1
%ul_version
This macro expands to a version of United Linux where the package is built. It is “1” for UL 1.0 and “0” when not building on UL.
See also %sles_version and %suse_version.
This example is taken from the package installation-images:
%build [...] %ifarch %ix86 themes="SuSE Home" %else themes=SuSE %endif %if %ul_version > 0 themes=UnitedLinux %else %if %sles_version > 0 themes="SuSE-SLES" %endif
%verify_permissions
This macro verifies permissions of files handled via /etc/permissions.* according to the system's security settings.
Permissions attributes in the package should reflect the setting of the secure level (/etc/permissions.secure).
To prevent rpm from complaining about the packaged permission settings affected files need to be tagged accordingly with e.g. %verify(not mode).
Usage:
%verify_permissions [-f filelist] [-e file] ...
%verify_permissions needs to be used together with %run_permissions or %set_permissions
Options:
-
-efile — specifies which file to check -
-ffilelist — specifies a file with a list of files to check (useful if there are many).
Both options can be repeated.
Example 1, files with variable mode:
%verifyscript %verify_permissions -e /usr/bin/foo -e /bin/bar [...] %files %defattr(-,root,root) %verify(not mode) %attr(0755,root,root) /usr/bin/foo %verify(not mode) %attr(0755,root,root) /bin/bar
Example 2, file with variable mode and user:
%verifyscript %verify_permissions -e /etc/foo [...] %files %defattr(-,root,root) %verify(not mode user) %attr(0600,joe,root) /etc/foo
Example 3, file with support for fscaps or setuid
%verifyscript %verify_permissions -e /bin/foo [...] %files %defattr(-,root,root) %verify(not mode caps) %attr(4755,root,root) /bin/foo
%create_subdir_filelist / %create_exclude_filelist
%create_subdir_filelist macro helps to create sub-packages by looking at what's installed from a specified sub-directory (and a matching doc/ directory) of the source. It requires a parameter -d <directory> and creates a file list called filelists/<directory> unless a parameter -f <filelistname> is given which then let it appends to filelists/<filelistname>. If a -v <develfilelistname> parameter is given, development files like headers, cmake definitions and .so symlinks will be written to filelists/<develfilelistname> instead.
%create_exclude_filelist creates an exclude file list from all file lists that were created by %create_subdir_filelist. It is intended to be used for the main package, to ensure that files that were moved into a subpackage are not packaged twice.
Usage in koffice2.spec (shortened):
.. %install cd build %makeinstall %create_subdir_filelist -d kplato -v devel %create_subdir_filelist -d kword -v devel %create_subdir_filelist -d filters/kword -f kword -v devel .. cd .. sed -ri s,.*/usr/share/doc/kde/HTML/en/.*,, filelists/* %create_exclude_filelist rm -rf $RPM_BUILD_ROOT/usr/share/doc/kde/HTML/en .. %clean rm -rf $RPM_BUILD_ROOT rm -rf filelists .. %files devel -f filelists/devel .. %files kplato -f filelists/kplato .. %files kword -f filelists/kword .. %files -f filelists/exclude
This example also shows how it's optionally possible to merge/change the automatically created file lists.
%make_jobs
This is just a macro that calls %make with the right jobs parameter, if icecream is in use. This is for local test builds on a multiprocessor machine and/or the Factory builds, which use distributed buildpower to speed up compilation.
