Hello community,

here is the log from the commit of package aaa_base for openSUSE:Factory 
checked in at 2019-12-11 11:58:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/aaa_base (Old)
 and      /work/SRC/openSUSE:Factory/.aaa_base.new.4691 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "aaa_base"

Wed Dec 11 11:58:50 2019 rev:459 rq:754611 version:84.87+git20191206.1cb88e3

Changes:
--------
--- /work/SRC/openSUSE:Factory/aaa_base/aaa_base.changes        2019-12-02 
11:26:30.138690707 +0100
+++ /work/SRC/openSUSE:Factory/.aaa_base.new.4691/aaa_base.changes      
2019-12-11 11:59:12.548889663 +0100
@@ -1,0 +2,8 @@
+Fri Dec 06 08:08:49 UTC 2019 - [email protected]
+
+- Update to version 84.87+git20191206.1cb88e3:
+  * Add support for lesskey.bin in /usr/etc
+  * Do last change also for tcsh
+  * Not all XTerm based emulators do have an terminfo entry
+
+-------------------------------------------------------------------

Old:
----
  aaa_base-84.87+git20191120.98f1524.tar.xz

New:
----
  aaa_base-84.87+git20191206.1cb88e3.tar.xz

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

Other differences:
------------------
++++++ aaa_base.spec ++++++
--- /var/tmp/diff_new_pack.vHMyKI/_old  2019-12-11 11:59:13.440889288 +0100
+++ /var/tmp/diff_new_pack.vHMyKI/_new  2019-12-11 11:59:13.444889287 +0100
@@ -23,7 +23,7 @@
 %endif
 
 Name:           aaa_base
-Version:        84.87+git20191120.98f1524
+Version:        84.87+git20191206.1cb88e3
 Release:        0
 URL:            https://github.com/openSUSE/aaa_base
 # do not require systemd - aaa_base is in the build environment and we don't

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.vHMyKI/_old  2019-12-11 11:59:13.496889265 +0100
+++ /var/tmp/diff_new_pack.vHMyKI/_new  2019-12-11 11:59:13.496889265 +0100
@@ -1,4 +1,4 @@
 <servicedata>
 <service name="tar_scm">
                 <param 
name="url">https://github.com/openSUSE/aaa_base.git</param>
-              <param 
name="changesrevision">90b35240d1a699f69c2093ea9b5c94879e1aba17</param></service></servicedata>
\ No newline at end of file
+              <param 
name="changesrevision">cf9c05a891de5dbb55a336b6788e3ee5163e33d1</param></service></servicedata>
\ No newline at end of file

++++++ aaa_base-84.87+git20191120.98f1524.tar.xz -> 
aaa_base-84.87+git20191206.1cb88e3.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/aaa_base-84.87+git20191120.98f1524/files/etc/bash.bashrc 
new/aaa_base-84.87+git20191206.1cb88e3/files/etc/bash.bashrc
--- old/aaa_base-84.87+git20191120.98f1524/files/etc/bash.bashrc        
2019-11-20 18:02:16.000000000 +0100
+++ new/aaa_base-84.87+git20191206.1cb88e3/files/etc/bash.bashrc        
2019-12-06 08:26:35.000000000 +0100
@@ -136,14 +136,19 @@
        #
        # Set xterm prompt with short path (last 18 characters)
        #
-       if path tput hs 2>/dev/null || path tput -T $TERM+sl hs 2>/dev/null ; 
then
+       if path tput hs 2>/dev/null || path tput -T $TERM+sl hs 2>/dev/null || \
+          path tput -T ${TERM%%[.-]*}+sl hs 2>/dev/null || \
+          [[ $TERM = *xterm* || $TERM = *gnome* || $TERM = *konsole* || $TERM 
= *xfce* ]]
+       then
            #
            # Mirror prompt in terminal "status line", which for graphical
            # terminals usually is the window title. KDE konsole in
            # addition needs to have "%w" in the "tabs" setting, ymmv for
            # other console emulators.
            #
-           if [[ $TERM = *xterm* ]] ; then
+           if [[ $TERM = *xterm* || $TERM = *gnome* || $TERM = *konsole* || 
$TERM = *xfce* ]]
+           then
+               # 
https://invisible-island.net/xterm/ctlseqs/ctlseqs.html#h3-Miscellaneous
                _tsl=$(echo -en '\e]2;')
                _isl=$(echo -en '\e]1;')
                _fsl=$(echo -en '\007')
@@ -151,6 +156,10 @@
                _tsl=$(path tput -T $TERM+sl tsl 2>/dev/null)
                _isl=''
                _fsl=$(path tput -T $TERM+sl fsl 2>/dev/null)
+           elif path tput -T ${TERM%%[.-]*}+sl tsl 2>/dev/null ; then
+               _tsl=$(path tput -T $TERM+sl tsl 2>/dev/null)
+               _isl=''
+               _fsl=$(path tput -T $TERM+sl fsl 2>/dev/null)
            else
                _tsl=$(path tput tsl 2>/dev/null)
                _isl=''
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/aaa_base-84.87+git20191120.98f1524/files/etc/csh.cshrc 
new/aaa_base-84.87+git20191206.1cb88e3/files/etc/csh.cshrc
--- old/aaa_base-84.87+git20191120.98f1524/files/etc/csh.cshrc  2019-11-20 
18:02:16.000000000 +0100
+++ new/aaa_base-84.87+git20191206.1cb88e3/files/etc/csh.cshrc  2019-12-06 
08:26:35.000000000 +0100
@@ -118,8 +118,10 @@
   # If we're running under X11
   if ( ${?DISPLAY} ) then
     if ( ${?TERM} && ${?EMACS} == 0 && ${?MC_SID} == 0 && ${?STY} == 0 && ! -r 
$HOME/.csh.expert ) then
-      if ( { tput hs >& /dev/null } || { ( tput -T $TERM+sl hs >& /dev/null ) 
} ) then
-       if ( ${TERM} =~ xterm* ) then
+      if ( { tput hs >& /dev/null } || { ( tput -T $TERM+sl hs >& /dev/null ) 
} \
+         || $TERM =~ xterm* || $TERM =~ gnome* || $TERM =~ konsole* || $TERM 
=~ xfce* ) then
+       if ( $TERM =~ xterm* || $TERM =~ gnome* || $TERM =~ konsole* || $TERM 
=~ xfce* ) then
+         # 
https://invisible-island.net/xterm/ctlseqs/ctlseqs.html#h3-Miscellaneous
          set _tsl=`echo -n '\033]2;'`
          set _isl=`echo -n '\033]1;'`
          set _fsl=`echo -n '\007'`
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/aaa_base-84.87+git20191120.98f1524/files/etc/csh.login 
new/aaa_base-84.87+git20191206.1cb88e3/files/etc/csh.login
--- old/aaa_base-84.87+git20191120.98f1524/files/etc/csh.login  2019-11-20 
18:02:16.000000000 +0100
+++ new/aaa_base-84.87+git20191206.1cb88e3/files/etc/csh.login  2019-12-06 
08:26:35.000000000 +0100
@@ -166,6 +166,8 @@
     setenv LESS_ADVANCED_PREPROCESSOR "no"
     if ( -s /etc/lesskey.bin ) then
         setenv LESSKEY /etc/lesskey.bin
+    else if ( -s /usr/etc/lesskey.bin ) then
+        setenv LESSKEY /usr/etc/lesskey.bin
     endif
     setenv PAGER less
     setenv MORE -sl
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aaa_base-84.87+git20191120.98f1524/files/etc/profile 
new/aaa_base-84.87+git20191206.1cb88e3/files/etc/profile
--- old/aaa_base-84.87+git20191120.98f1524/files/etc/profile    2019-11-20 
18:02:16.000000000 +0100
+++ new/aaa_base-84.87+git20191206.1cb88e3/files/etc/profile    2019-12-06 
08:26:35.000000000 +0100
@@ -215,6 +215,8 @@
     LESS_ADVANCED_PREPROCESSOR="no"
     if test -s /etc/lesskey.bin ; then
        LESSKEY=/etc/lesskey.bin
+    elif test -s /usr/etc/lesskey.bin ; then
+       LESSKEY=/usr/etc/lesskey.bin
     fi
     PAGER=less
     MORE=-sl


Reply via email to