X-Git-Url: http://git.pld-linux.org/?a=blobdiff_plain;f=rpm.macros;h=01c8a3993745d5f0106daae568c1aabaab2dc7a6;hb=7cafb58f22ce50ef21f6ab1e9914c43e508428e5;hp=f455aa66657f363388a2c09c05cdd860719a0061;hpb=cdb851a43a4de55cc0650044b6caaca01e3ae4e9;p=packages%2Frpm-build-macros.git diff --git a/rpm.macros b/rpm.macros index f455aa6..01c8a39 100644 --- a/rpm.macros +++ b/rpm.macros @@ -8,7 +8,6 @@ %epoch 0 %x8664 x86_64 amd64 ia32e -%arm armv3l armv4b armv4l armv5teb armv5tel # compiler version %cc_version %{expand:%%global cc_version %(%{__cc} -dumpversion 2>/dev/null || echo 0.0)}%cc_version @@ -34,7 +33,11 @@ %__make /usr/bin/make %{?_make_opts} %{?_smp_mflags} %__scons /usr/bin/scons %{?_smp_mflags} %__waf /usr/bin/waf %{?_smp_mflags} -%__cmake /usr/bin/cmake +%__cmake /usr/bin/cmake -Wno-dev +%__meson /usr/bin/meson +%__meson_wrap_mode nodownload +%__ninja /usr/bin/ninja +%__ninja_common_opts -v %{?_smp_mflags} %__gettextize { \ if grep -qs 'AM_GNU_GETTEXT.*external' configure.{ac,in} ; then \ @@ -320,6 +323,43 @@ LINKFLAGS="%{rpmldflags}" \ %{__waf} \ } +# meson +%meson { \ +%{?__cc:CC="${CC:-%{__cc}}"} \ +%{?__cxx:CXX="${CXX:-%{__cxx}}"} \ +CFLAGS="${CFLAGS:-%{rpmcflags}}" \ +CPPFLAGS="${CPPFLAGS:-%{rpmcppflags}}" \ +CXXFLAGS="${CXXFLAGS:-%{rpmcxxflags}}" \ +LDFLAGS="${LDFLAGS:-%{rpmldflags}}" \ +LC_ALL=C.UTF-8 %{__meson} \ + --buildtype=plain \ + --bindir=%{_bindir} \ + --datadir=%{_datadir} \ + --includedir=%{_includedir} \ + --infodir=%{_infodir} \ + --libdir=%{_libdir} \ + --libexecdir=%{_libexecdir} \ + --localedir=%{_localedir} \ + --localstatedir=%{_localstatedir} \ + --mandir=%{_mandir} \ + --prefix=%{_prefix} \ + --sbindir=%{_sbindir} \ + --sharedstatedir=%{_sharedstatedir} \ + --sysconfdir=%{_sysconfdir} \ + --wrap-mode=%{__meson_wrap_mode} \ + --default-library='both' \ +} + +%___meson_deprecate() {echo >&2 "DEPRECATED: %%%1 must be replaced with %%%2"; %{expand:%%%2} } +%meson_build %___meson_deprecate meson_build ninja_build +%meson_install %___meson_deprecate meson_install ninja_install +%meson_test %___meson_deprecate meson_test ninja_test + +# ninja +%ninja_build LC_ALL=C.UTF-8 %{__ninja} %{__ninja_common_opts} +%ninja_install LC_ALL=C.UTF-8 DESTDIR=%{buildroot} %{__ninja} install %{__ninja_common_opts} +%ninja_test LC_ALL=C.UTF-8 %{__ninja} test %{__ninja_common_opts} + #---------------------------------------------------------------- #%configure_cache 0 %configure_cache_file %{buildroot}.configure.cache @@ -389,6 +429,15 @@ LINKFLAGS="%{rpmldflags}" \ %__without_if() %{expand:%%{?with_%{1}:--without-%{?2}%{!?2:%{1}}}} %__with_without_not() %{expand:%%{!?with_%{1}:--with-%{?2}%{!?2:%{1}}%{?3:=%{3}}}%%{?with_%{1}:--without-%{?2}%{!?2:%{1}}}} +# expands to true or false based on bcond; for use with meson or cmake +%__true_false() %{expand:%%{?with_%{1}:true}%%{!?with_%{1}:false}} +%__true_false_not() %{expand:%%{?with_%{1}:false}%%{!?with_%{1}:true}} + +# for use with cmake: +# Usage: cmake_on_off BCOND_NAME [OPTION_NAME] +# BuildRequires: rpmbuild(macros) >= 1.742 +%cmake_on_off() -D%{?2}%{!?2:%{1}}:BOOL=%{expand:%%{?with_%{1}:ON}%%{!?with_%{1}:OFF}} + #----------------------------------------------------------------- # overload to insert debuginfo package @@ -513,8 +562,8 @@ Provides: %{1} = %{?epoch:%{epoch}:}%{?version:%{version}}%{?release:-%{release} for i in /usr/share/man /usr/X11R6/man; do \ if [ -d "$RPM_BUILD_ROOT$i" ]; then \ echo "Compress man pages: $i"; \ - find "$RPM_BUILD_ROOT$i" -name '*.bz2' -print | xargs -r %{__bzip2} -df; \ - find "$RPM_BUILD_ROOT$i" -name '*.gz' -print | xargs -r %{__gzip} -dnf; \ + find "$RPM_BUILD_ROOT$i" -name '*.bz2' -print0 | xargs -0 -r %{__bzip2} -df; \ + find "$RPM_BUILD_ROOT$i" -name '*.gz' -print0 | xargs -0 -r %{__gzip} -dnf; \ find $RPM_BUILD_ROOT$i -type l | while read a; do \ m=$(readlink "$a"); \ if [[ "$m" = */* ]]; then \ @@ -544,14 +593,14 @@ Provides: %{1} = %{?epoch:%{epoch}:}%{?version:%{version}}%{?release:-%{release} test -e $RPM_BUILD_ROOT$i/$l || test -e $d/$(basename $l) || echo " ${doc#$RPM_BUILD_ROOT} points to inexistent manpage: $l"; \ done); \ test "$err" != "" && { echo >&2 "Man page link errors:"; echo >&2 "$err"; exit 1; }; \ - find "$RPM_BUILD_ROOT$i" -type f -size +%{_min_compress_bytes}c -print | xargs -r %{__gzip} -9nf; \ + find "$RPM_BUILD_ROOT$i" -type f -size +%{_min_compress_bytes}c -print0 | xargs -0 -r %{__gzip} -9nf; \ fi; \ done; \ if [ -d "$RPM_BUILD_ROOT%{_infodir}" ]; then \ echo "Compress info pages: %{_infodir}"; \ - find "$RPM_BUILD_ROOT%{_infodir}" -name '*.bz2' -print | xargs -r %{__bzip2} -df; \ - find "$RPM_BUILD_ROOT%{_infodir}" -name '*.gz' -print | xargs -r %{__gzip} -dnf; \ - find "$RPM_BUILD_ROOT%{_infodir}" -name '*.info*' -type f -size +%{_min_compress_bytes}c -print | xargs -r %{__gzip} -9nf; \ + find "$RPM_BUILD_ROOT%{_infodir}" -name '*.bz2' -print0 | xargs -0 -r %{__bzip2} -df; \ + find "$RPM_BUILD_ROOT%{_infodir}" -name '*.gz' -print0 | xargs -0 -r %{__gzip} -dnf; \ + find "$RPM_BUILD_ROOT%{_infodir}" -name '*.info*' -type f -size +%{_min_compress_bytes}c -print0 | xargs -0 -r %{__gzip} -9nf; \ fi; \ }; __spec_install_post_compress_docs } } @@ -581,7 +630,7 @@ if [ -d "$RPM_BUILD_ROOT" ]; then \ echo "DONE"; \ fi; \ fi; \ - filelist=$(find $RPM_BUILD_ROOT -type f ! -regex ".*/usr/lib[0-9]*/debug/.*\.debug" ! -regex ".*/lib/modules/.*" ! -regex ".*%{_docdir}/.*" ! -regex ".*%{_includedir}/.*" %{?_noautostrip:! -regex "%{_noautostrip}"} %{?_autostripall:! -regex "%{_autostripall}"} %{?_autostripunneeded:! -regex "%{_autostripunneeded}"} %{?_autostripdebug:! -regex "%{_autostripdebug}"}); \ + filelist=$(find $RPM_BUILD_ROOT -type f ! -regex ".*/usr/lib[x0-9]*/debug/.*\.debug" ! -regex ".*/usr/lib[x0-9]*.*/guile/.*\.go" ! -regex ".*/lib/modules/.*" ! -regex ".*%{_docdir}/.*" ! -regex ".*%{_includedir}/.*" %{?_noautostrip:! -regex "%{_noautostrip}"} %{?_autostripall:! -regex "%{_autostripall}"} %{?_autostripunneeded:! -regex "%{_autostripunneeded}"} %{?_autostripdebug:! -regex "%{_autostripdebug}"}); \ if [ -n "$filelist" ]; then \ filetypes=`echo "$filelist" | xargs -r -d'\\n' file`; \ elfexelist=`echo "$filetypes" | awk -F: '/ELF.*executable/ {print $1}'`; \ @@ -697,12 +746,38 @@ __spec_install_post_check_so() { \ fail=0; \ printf "Searching for shared objects with unresolved symbols..."; \ for f in $(find $RPM_BUILD_ROOT -type f -name '*.so.*' -print); do \ - LC_ALL=C objdump -T $f 2> /dev/null | LC_ALL=C awk -v "file=$f" 'BEGIN { found=0; skip["program_name"]=1; symbols = "" } /^[0-9a-z]+ +D +\*UND\*/ { if ($NF in skip) { next; }; found = 1; symbols = symbols "\n\t" $NF } END { if (found) { print "\nUnresolved symbols found in: " file symbols; %{?skip_post_check_so:split("%{skip_post_check_so}", R); for (i=1; i in R; i++) { if (file ~ "(^|/)" R[i] "$") { print "Library marked with skip_post_check_so, ignoring errors.\n"; exit(0); } } } exit(1); } } ' || fail=1 ; \ + LC_ALL=C objdump -T $f 2> /dev/null | LC_ALL=C awk -v "file=$f" 'BEGIN { found=0; skip["program_name"]=1; skip["_ZSt15__once_callable"]=1; skip["_ZSt11__once_call"]=1; symbols = "" } /^[0-9a-z]+ +D +\*UND\*/ { if ($NF in skip) { next; }; found = 1; symbols = symbols "\n\t" $NF } END { if (found) { print "\nUnresolved symbols found in: " file symbols; %{?skip_post_check_so:split("%{skip_post_check_so}", R); for (i=1; i in R; i++) { if (file ~ "(^|/)" R[i] "$") { print "Library marked with skip_post_check_so, ignoring errors.\n"; exit(0); } } } exit(1); } } ' || fail=1 ; \ done ; \ echo " DONE"; \ %{!?no_install_post_check_so:return $fail;} \ }; __spec_install_post_check_so }} +#----------------------------------------------------------------- +# Find all ELF files with executable stac. Warn and terminate if any found +# (termination can be turned off by define). +# Details: https://wiki.gentoo.org/wiki/Hardened/GNU_stack_quickstart +#%no_install_post_check_stackexec 1 +#%skip_post_check_stackexec libwithexecstackok.so.* +# +# NOTE: define skip_post_check_stackexec only if such program or library +# really requires executable stack and always leave a comment why +# it is required: +# # Programs full of nested functions that cannot be fixed +# %define skip_post_check_execstack /bin/foo libwithexecstack.so.* +# +%__spec_install_post_check_execstack { \ +__spec_install_post_check_execstack() { \ +%{!?debug:set +x;} \ + fail=0; \ + printf "Searching for ELF programs with executable stack..."; \ + for f in $(find $RPM_BUILD_ROOT -type f -print) ; do \ + LC_ALL=C readelf -lW $f 2>/dev/null | \ + LC_ALL=C awk -v "file=$f" 'BEGIN { found=0; } /GNU_STACK/ { if ($7 ~ "E") { found=1 } } END { if (found) { print "\nExecutable stack found in: " file; %{?skip_post_check_execstack:split("%{skip_post_check_execstack}", R); for (i=1; i in R; i++) { if (file ~ "(^|/)" R[i] "$") { print "File marked with skip_post_check_execstack, ignoring errors.\n"; exit(0); } } } exit(1); } }' || fail=1 ; \ + done ; \ + echo " DONE"; \ + %{!?no_install_post_check_execstack:return $fail;} \ +}; __spec_install_post_check_execstack }} + #----------------------------------------------------------------- # Verify that for each directory under /var/run package contains # tmpfiles.d configuration. Warn and terminate build if config is @@ -767,6 +842,15 @@ __spec_install_post_check_shebangs() { \ %{?pdir:rm -f $RPM_BUILD_ROOT{%{perl_archlib}/perllocal.pod,%{perl_vendorarch}/auto/%{pdir}%{?pnam:/%(echo %{pnam} | tr - /)}/.packlist}} \ } } +# Helpers to specify SONAME depdendencies, e.g.: +# Requires: %{_soname_prov libfoo.so.1} +# Requires: %{_soname_prov libfoo.so.1(SOME_SYMVER)} +# +# BuildRequires: rpmbuild(macros) >= 1.721 +# +%_soname_tag %(echo %{_lib} | sed -e 's/^lib//' -e 's/^\\(.\\+\\)$/(\\1bit)/') +%_soname_prov() %(echo "%{1}()%{_soname_tag}" | sed -e 's/^\\([^(]*([^)]\\+)\\)()%{_soname_tag}$/\\1%{_soname_tag}/;s/()$//') + #----------------------------------------------------------------- # Update GConf2 schemas # @@ -807,9 +891,15 @@ fi; \ #----------------------------------------------------------------- # Update shared MIME info database # requires: shared-mime-info +# Note: https://bugs.freedesktop.org/show_bug.cgi?id=70366#c19 +# https://bugzilla.redhat.com/show_bug.cgi?id=1052173 +# TODO: if you want this running with fdatasync(), make sure it's: +# 1. announcing ~minute delay by echoing appropriate message, +# 2. running only once after rpm transaction. # %update_mime_database() {{ \ umask 022; \ + PKGSYSTEM_ENABLE_FSYNC=0 \ /usr/bin/update-mime-database %{_datadir}/mime; \ };} \ %{nil} @@ -867,12 +957,21 @@ fi; \ %__noautoreqfiles %(sed -e s'/#.*//' /etc/rpm/noautoreqfiles)%{?_noautoreqfiles: %{_noautoreqfiles}} %__noautoprovfiles %(sed -e s'/#.*//' /etc/rpm/noautoprovfiles)%{?_noautoprovfiles: %{_noautoprovfiles}} %__noautoreqdep %(sed -e s'/#.*//' /etc/rpm/noautoreqdep)%{?_noautoreqdep: %{_noautoreqdep}} -%__noautoprov %(sed -e s'/#.*//' /etc/rpm/noautoprov)%{?_noautoprov: %{_noautoprov}} +%__noautoprov %(sed -e s'/#.*//' /etc/rpm/noautoprov) \ + %{?_noautoprov: %{_noautoprov}} \ + %{?_noautoprov_java: %{__noauto_regexp_helper -p java %{_noautoprov_java}}} \ + %{?_noautoprov_mono: %{__noauto_regexp_helper -p mono %{_noautoprov_mono}}} \ + %{?_noautoprov_pear: %{__noauto_regexp_helper -p pear %{_noautoprov_pear}}} \ + %{?_noautoprov_perl: %{__noauto_regexp_helper -p perl %{_noautoprov_perl}}} \ + %{?_noautoprov_pyegg: %{__noauto_regexp_helper -p pythonegg %{_noautoprov_pyegg}}} \ + %{?_noautoprov_py3egg: %{__noauto_regexp_helper -p python3egg %{_noautoprov_py3egg}}} \ + %{nil} %__noautoreq %(sed -e s'/#.*//' /etc/rpm/noautoreq) \ %{?_noautoreq: %{_noautoreq}} \ + %{?_noautoreq_java: %{__noauto_regexp_helper -p java %{_noautoreq_java}}} \ + %{?_noautoreq_mono: %{__noauto_regexp_helper -p mono %{_noautoreq_mono}}} \ %{?_noautoreq_pear: %{__noauto_regexp_helper -p pear %{_noautoreq_pear}}} \ %{?_noautoreq_perl: %{__noauto_regexp_helper -p perl %{_noautoreq_perl}}} \ - %{?_noautoreq_java: %{__noauto_regexp_helper -p java %{_noautoreq_java}}} \ %{?_noautoreq_pyegg: %{__noauto_regexp_helper -p pythonegg %{_noautoreq_pyegg}}} \ %{?_noautoreq_py3egg: %{__noauto_regexp_helper -p python3egg %{_noautoreq_py3egg}}} \ %{nil} @@ -885,6 +984,18 @@ fi; \ # %define _noautoreq_perl Apache::.* # BuildRequires: rpmbuild(macros) >= 1.672 # %define _noautoreq_java ClassDataVersion +# BuildRequires: rpmbuild(macros) >= 1.709 +# %define _noautoreq_pyegg argparse +# %define _noautoreq_py3egg backports.ssl-match-hostname ipaddress +# BuildRequires: rpmbuild(macros) >= 1.730 +# %define _noautoreq_mono Gendarme.Framework +# BuildRequires: rpmbuild(macros) >= 1.737 +# %define _noautoprov_java Class +# %define _noautoprov_mono Excluded.Provide +# %define _noautoprov_pear Excluded.php +# %define _noautoprov_perl Excluded::Module +# %define _noautoprov_pyegg excluded +# %define _noautoprov_py3egg excluded3 # %__noauto_regexp_helper(p:) %(echo "%*" | awk 'BEGIN{RS=" "}{printf("%{-p*}%{__qchar}(%%s%{__qchar}) ", $1)}') # detect quote character runtime @@ -929,7 +1040,7 @@ fi; \ %ruby_archdir %{expand:%%global ruby_archdir %{__ruby_rbconfig_path archdir}}%ruby_archdir %ruby_libdir %{expand:%%global ruby_libdir %{__ruby_rbconfig rubylibdir}}%ruby_libdir -%ruby_ridir %{expand:%%global ruby_ridir %(%{__ruby} -r rbconfig -e 'print File.join(RbConfig::CONFIG["datadir"], "ri", RbConfig::CONFIG["ruby_version"], "system")' 2>/dev/null || echo ERROR)}%ruby_ridir +%ruby_ridir %{expand:%%global ruby_ridir %(%{__ruby} -r rbconfig -e 'print File.join(RbConfig::CONFIG["datadir"], "ri", "system")' 2>/dev/null || echo ERROR)}%ruby_ridir %ruby_rubylibdir %{expand:%%global ruby_rubylibdir %{__ruby_rbconfig_path rubylibdir}}%ruby_rubylibdir %ruby_vendorarchdir %{expand:%%global ruby_vendorarchdir %{__ruby_rbconfig vendorarchdir}}%ruby_vendorarchdir %ruby_vendorlibdir %{expand:%%global ruby_vendorlibdir %{__ruby_rbconfig_path vendorlibdir}}%ruby_vendorlibdir @@ -1181,6 +1292,11 @@ fi \ # Requires: bash-completion >= 2.0 %bash_compdir /usr/share/bash-completion/completions +# fish completions dir +# Requirements: +# BuildRequires: rpmbuild(macros) >= 1.720 +%fish_compdir /usr/share/fish/vendor_completions.d + # zsh completions dir # Requirements: # BuildRequires: rpmbuild(macros) >= 1.719 @@ -1396,7 +1512,7 @@ fi; # %webapp_register(f) \ %{?debug:set -x; echo "webapp_register: %{name}-%{version}-%{release} 1:[$1]; 2:[$2]"} \ -if [ -n "%{-f:1}" ] || [ "$1" = "1" ] && [ "$2" = "1" ]; then\ +if [ -n "%{-f:1}" ] || ([ "$1" = "1" ] && [ "$2" = "1" ]); then\ /usr/sbin/webapp register %1 %2\ fi\ # reload webserver if the config symlink is there and skip reload if webserver is upgraded\ @@ -1411,7 +1527,7 @@ fi\ %webapp_unregister(f) \ %{?debug:set -x; echo "webapp_unregister: %{name}-%{version}-%{release}: 1:[$1]; 2:[$2]"} \ # remove link if either of the packages are gone \ -if [ -n "%{-f:1}" ] || [ "$1" = "0" ] || [ "$2" = "0" ] && [ -L /etc/%1/webapps.d/%(echo "%2" | tr '/' '-').conf ]; then \ +if [ -n "%{-f:1}" ] || ([ "$1" = "0" ] || [ "$2" = "0" ] && [ -L /etc/%1/webapps.d/%(echo "%2" | tr '/' '-').conf ]); then \ /usr/sbin/webapp unregister %1 %2\ %{expand:%service -q %%1 reload}\ fi \ @@ -1423,6 +1539,9 @@ fi \ # calls usual service restart on package %post, but skips the restart if # administrator has disabled automatic service restarts in either global # /etc/sysconfig/rpm or per service /etc/sysconfig/SERVICE file. +# NOTE: systemd_booted machines do not print +# Run "{command}" to restart {service}. +# message for packages without native systemd unit (not here, no %systemd_post). # # Usage: # %service [-q] [-n] SERVICE ACTION ["SERVICE NICE DESCRIPTION"] @@ -2178,7 +2297,7 @@ fi; \ # BuildRequires: rpmbuild(macros) >= 1.671 # Requires: systemd-units >= 38 -%systemd_reload /bin/systemd_booted && SYSTEMD_LOG_LEVEL=warning SYSTEMD_LOG_TARGET=syslog /bin/systemctl --quiet daemon-reload || : +%systemd_reload /bin/systemd_booted && SYSTEMD_LOG_LEVEL=warning SYSTEMD_LOG_TARGET=syslog /bin/systemctl daemon-reload || : %systemd_service_enable() \ export SYSTEMD_LOG_LEVEL=warning SYSTEMD_LOG_TARGET=syslog \ @@ -2193,29 +2312,29 @@ fi; \ %systemd_service() \ export SYSTEMD_LOG_LEVEL=warning SYSTEMD_LOG_TARGET=syslog \ - /bin/systemd_booted && /bin/systemctl --quiet %{*} || : \ + /bin/systemd_booted && /bin/systemctl %{*} || : \ %{nil} %systemd_service_start() \ export SYSTEMD_LOG_LEVEL=warning SYSTEMD_LOG_TARGET=syslog \ - /bin/systemd_booted && /bin/systemctl --quiet start %{*} || : \ + /bin/systemd_booted && /bin/systemctl start %{*} || : \ %{nil} %systemd_service_stop() \ export SYSTEMD_LOG_LEVEL=warning SYSTEMD_LOG_TARGET=syslog \ - /bin/systemd_booted && /bin/systemctl --quiet stop %{*} || : \ + /bin/systemd_booted && /bin/systemctl stop %{*} || : \ %{nil} -# doesn't honour RPM_SKIP_AUTO_RESTART, avoid using +# NOTE: doesn't honour RPM_SKIP_AUTO_RESTART, avoid using %systemd_service_restart() \ export SYSTEMD_LOG_LEVEL=warning SYSTEMD_LOG_TARGET=syslog \ - /bin/systemd_booted && /bin/systemctl --quiet try-restart %{*} || : \ + /bin/systemd_booted && /bin/systemctl try-restart %{*} || : \ %{nil} -# doesn't honour RPM_SKIP_AUTO_RESTART, avoid using +# NOTE: doesn't honour RPM_SKIP_AUTO_RESTART, avoid using %systemd_service_reload() \ export SYSTEMD_LOG_LEVEL=warning SYSTEMD_LOG_TARGET=syslog \ - /bin/systemd_booted && /bin/systemctl --quiet reload %{*} || : \ + /bin/systemd_booted && /bin/systemctl reload %{*} || : \ %{nil} # NOTE: this trigger disobeys systemd.preset in favour of RPM_ENABLE_SYSTEMD_SERVICE @@ -2229,20 +2348,19 @@ want_enable_service() { \ export SYSTEMD_LOG_LEVEL=warning SYSTEMD_LOG_TARGET=syslog \ for s in %{*}; do \ if want_enable_service $s; then \ - /bin/systemctl --quiet enable $s || : \ + /bin/systemctl enable $s || : \ fi \ done \ %{nil} -# TODO: resurrect RPM_SKIP_AUTO_RESTART by using $(skip_auto_restart) function defined by %service from service_generator.sh %systemd_post() \ export SYSTEMD_LOG_LEVEL=warning SYSTEMD_LOG_TARGET=syslog \ - /bin/systemd_booted && /bin/systemctl --quiet daemon-reload || : \ + /bin/systemd_booted && /bin/systemctl daemon-reload || : \ if [ $1 -eq 1 ]; then \ - /bin/systemctl preset --preset-mode=enable-only %{*} || >/dev/null : \ + /bin/systemctl preset --preset-mode=enable-only %{*} >/dev/null || : \ /bin/systemd_booted && echo 'Run "/bin/systemctl start %{*}" to start %{*}.' || : \ elif [ -z "$NORESTART" ]; then \ - /bin/systemd_booted && /bin/systemctl --quiet try-restart %{*} || : \ + /bin/systemd_booted && /bin/systemctl try-restart %{*} || : \ else \ /bin/systemd_booted && echo 'Run "/bin/systemctl restart %{*}" to restart %{*}.' || : \ fi \ @@ -2251,7 +2369,7 @@ want_enable_service() { \ %systemd_preun() \ if [ $1 -eq 0 ]; then \ export SYSTEMD_LOG_LEVEL=warning SYSTEMD_LOG_TARGET=syslog \ - /bin/systemd_booted && /bin/systemctl --quiet stop %{*} || : \ + /bin/systemd_booted && /bin/systemctl stop %{*} || : \ /bin/systemctl --quiet disable %{*} || : \ fi \ %{nil} @@ -2260,6 +2378,9 @@ want_enable_service() { \ %systemduserunitdir /usr/lib/systemd/user %systemdtmpfilesdir /usr/lib/tmpfiles.d +# BuildRequires: rpmbuild(macros) >= 1.721 +%journal_catalog_update() [ ! -x /bin/journalctl ] || /bin/journalctl --update-catalog >/dev/null 2>&1 || : + #----------------------------------------------------------------- # Update hardware database index #