Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package man for openSUSE:Factory checked in 
at 2021-08-16 10:09:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/man (Old)
 and      /work/SRC/openSUSE:Factory/.man.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "man"

Mon Aug 16 10:09:05 2021 rev:87 rq:912000 version:2.9.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/man/man.changes  2021-06-25 15:01:24.784157075 
+0200
+++ /work/SRC/openSUSE:Factory/.man.new.1899/man.changes        2021-08-16 
10:14:01.942922130 +0200
@@ -1,0 +2,5 @@
+Fri Aug  6 13:38:49 UTC 2021 - Dr. Werner Fink <[email protected]>
+
+- Add manpath.sh and manpath.csh below /usr/etc/profile.d
+
+-------------------------------------------------------------------

New:
----
  manpath.csh
  manpath.sh

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ man.spec ++++++
--- /var/tmp/diff_new_pack.ClrqlD/_old  2021-08-16 10:14:02.718921138 +0200
+++ /var/tmp/diff_new_pack.ClrqlD/_new  2021-08-16 10:14:02.722921134 +0200
@@ -38,6 +38,8 @@
 Source5:        wrapper.c
 Source6:        man-rpmlintrc
 Source7:        man-db-create.service
+Source8:        manpath.csh
+Source9:        manpath.sh
 Patch0:         man-db-2.3.19deb4.0-groff.dif
 Patch1:         man-db-2.7.1-security4.dif
 Patch2:         man-db-2.7.1-firefox.dif
@@ -267,6 +269,10 @@
     install -m 0644 %{SOURCE7} %{buildroot}%{_unitdir}/
 %endif
 
+mkdir -p %{buildroot}%{_prefix}/etc/profile.d
+install -m 644 %{SOURCE8} %{buildroot}%{_prefix}/etc/profile.d/
+install -m 644 %{SOURCE9} %{buildroot}%{_prefix}/etc/profile.d/
+
 %find_lang man-db --all-name --with-man
 
 %pre
@@ -348,6 +354,8 @@
 %ghost %{_sysconfdir}/alternatives/man.1%{ext_man}
 %ghost %{_sysconfdir}/alternatives/apropos.1%{ext_man}
 %ghost %{_sysconfdir}/alternatives/whatis.1%{ext_man}
+%dir %{_prefix}/etc/profile.d/
+%{_prefix}/etc/profile.d/manpath.*
 %{_bindir}/apropos
 %{_bindir}/catman
 %{_bindir}/lexgrog


++++++ manpath.csh ++++++
#
# Current manpath
#
if (-x /usr/bin/manpath && ! ${?MANPATHISSET}) then
    set _tmpman=`(unsetenv MANPATH; /usr/bin/manpath -q)`
    if ( ${?MANPATH} ) then
        if (${MANPATH} != ${_tmpman}) then
            setenv MANPATH "${MANPATH}:${_tmpman}"
        else
            setenv MANPATH "${_tmpman}"
        endif
    else
        setenv MANPATH "${_tmpman}"
    endif
    setenv MANPATHISSET yes
endif
++++++ manpath.sh ++++++
#
# Current manpath
#
if test -x /usr/bin/manpath -a -z "$MANPATHISSET"
then
    _tmpenv="$MANPATH"
    unset MANPATH
    _tmpman="$(/usr/bin/manpath -q)"
    if test -n "$_tmpenv" -a "$_tmpenv" != ${_tmpman} ; then
        MANPATH="${_tmpenv}:${_tmpman}"
    else
        MANPATH="${_tmpman}"
    fi
    unset _tmpenv _tmpman
    MANPATHISSET=yes
    export MANPATH MANPATHISSET
fi

Reply via email to