Hello community,

here is the log from the commit of package aaa_base for openSUSE:Factory 
checked in at 2017-06-02 10:29:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/aaa_base (Old)
 and      /work/SRC/openSUSE:Factory/.aaa_base.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "aaa_base"

Fri Jun  2 10:29:07 2017 rev:433 rq:497354 version:13.2+git20170512.8fa87a3

Changes:
--------
--- /work/SRC/openSUSE:Factory/aaa_base/aaa_base.changes        2017-05-10 
20:33:06.866179228 +0200
+++ /work/SRC/openSUSE:Factory/.aaa_base.new/aaa_base.changes   2017-06-02 
10:29:12.454873981 +0200
@@ -1,0 +2,12 @@
+Mon May 15 17:09:39 UTC 2017 - wer...@suse.de
+
+- Be aware that on s390/s390x the ttyS0 is misused
+
+-------------------------------------------------------------------
+Fri May 12 11:29:54 UTC 2017 - wer...@suse.de
+
+- Reset extended screen TERM variables if no terminfo
+- Better status line support even for tcsh
+- Modernize /etc/ttytype as tset of ncurses use it
+
+-------------------------------------------------------------------

Old:
----
  aaa_base-13.2+git20170504.927b15d.tar.xz

New:
----
  aaa_base-13.2+git20170512.8fa87a3.tar.xz

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

Other differences:
------------------
++++++ aaa_base.spec ++++++
--- /var/tmp/diff_new_pack.NXBPfn/_old  2017-06-02 10:29:13.386742309 +0200
+++ /var/tmp/diff_new_pack.NXBPfn/_new  2017-06-02 10:29:13.390741743 +0200
@@ -18,7 +18,7 @@
 
 
 Name:           aaa_base
-Version:        13.2+git20170504.927b15d
+Version:        13.2+git20170512.8fa87a3
 Release:        0
 Url:            https://github.com/openSUSE/aaa_base
 Provides:       aaa_skel = %{version}-%{release}

++++++ aaa_base-13.2+git20170504.927b15d.tar.xz -> 
aaa_base-13.2+git20170512.8fa87a3.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/aaa_base-13.2+git20170504.927b15d/files/etc/csh.cshrc 
new/aaa_base-13.2+git20170512.8fa87a3/files/etc/csh.cshrc
--- old/aaa_base-13.2+git20170504.927b15d/files/etc/csh.cshrc   2017-05-04 
11:16:25.000000000 +0200
+++ new/aaa_base-13.2+git20170512.8fa87a3/files/etc/csh.cshrc   2017-05-12 
16:22:06.000000000 +0200
@@ -117,10 +117,26 @@
   # If we're running under X11
   if ( ${?DISPLAY} ) then
     if ( ${?TERM} && ${?EMACS} == 0 && ${?MC_SID} == 0 && ${?STY} == 0 && ! -r 
$HOME/.csh.expert ) then
-      if ( ${TERM} == "xterm" ) then
-        alias cwdcmd '(echo -n "\033]2;$USER on ${HOST}: 
$cwd\007\033]1;$HOST\007" > /dev/$tty)'
-        cd .
+      if ( { tput hs >& /dev/null } || { tput -T $TERM+sl hs >& /dev/null } ) 
then
+       if ( ${TERM} == "xterm" ) then
+         set _tsl=`echo -n '\033]2;'`
+         set _isl=`echo -n '\033]1;'`
+         set _fsl=`echo -n '\007'`
+       else
+         set _tsl=`tput tsl || tput -T $TERM+sl tsl` >& /dev/null
+         set _isl=''
+         set _fsl=`tput fsl || tput -T $TERM+sl fsl` >& /dev/null
+       fi
       endif
+      set _sc=`tput sc` >& /dev/null
+      set _rc=`tput rc` >& /dev/null
+      if ( ${%_tsl} > 0 && ${%_isl} > 0 && ${%_fsl} > 0 ) then
+       alias cwdcmd '(echo -n "'$_sc$_tsl'$USER on ${HOST}: 
$cwd'$_fsl$_isl'$HOST'$_fsl$_rc'">/dev/$tty)'
+      else if (${%_tsl} > 0 && ${%_fsl} > 0 ) then
+       alias cwdcmd '(echo -n "'$_sc$_tsl'$USER on ${HOST}: 
$cwd'$_fsl$_rc'">/dev/$tty)'
+      endif
+      unset _isl _tsl _fsl _sc _rc
+      cd .
     endif
     if ( -x /usr/bin/biff ) /usr/bin/biff n
     set prompt="%C2%# "
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/aaa_base-13.2+git20170504.927b15d/files/etc/csh.login 
new/aaa_base-13.2+git20170512.8fa87a3/files/etc/csh.login
--- old/aaa_base-13.2+git20170504.927b15d/files/etc/csh.login   2017-05-04 
11:16:25.000000000 +0200
+++ new/aaa_base-13.2+git20170512.8fa87a3/files/etc/csh.login   2017-05-12 
16:22:06.000000000 +0200
@@ -26,6 +26,7 @@
     if ( ! ${?TERM} )           setenv TERM linux
     if ( "$TERM" == "unknown" ) setenv TERM linux
     if ( "$TERM" == "ibm327x" ) setenv TERM dumb
+    if ( $TERM =~ screen.* -a && ! -e /usr/share/terminfo/s/$TERM) setenv TERM 
screen
     if ( ! ${?SSH_TTY} && "$TERM" != "dumb" ) then
        path stty sane cr0 pass8 dec
        path tset -I -Q
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aaa_base-13.2+git20170504.927b15d/files/etc/profile 
new/aaa_base-13.2+git20170512.8fa87a3/files/etc/profile
--- old/aaa_base-13.2+git20170504.927b15d/files/etc/profile     2017-05-04 
11:16:25.000000000 +0200
+++ new/aaa_base-13.2+git20170512.8fa87a3/files/etc/profile     2017-05-12 
16:22:06.000000000 +0200
@@ -77,6 +77,10 @@
     test -z "${TERM}"          && { TERM=linux; export TERM; }
     test "${TERM}" = "unknown" && { TERM=linux; export TERM; }
     test "${TERM}" = "ibm327x" && { TERM=dumb;  export TERM; }
+    case "$TERM" in
+    screen.*)
+       test -e /usr/share/terminfo/s/${TERM} || { TERM=screen;  export TERM; }
+    esac
     # Do not change settings on local line if connected to remote
     if test -z "$SSH_TTY" -a "${TERM}" != "dumb" ; then
        path stty sane cr0 pass8 dec
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aaa_base-13.2+git20170504.927b15d/files/etc/ttytype 
new/aaa_base-13.2+git20170512.8fa87a3/files/etc/ttytype
--- old/aaa_base-13.2+git20170504.927b15d/files/etc/ttytype     2017-05-04 
11:16:25.000000000 +0200
+++ new/aaa_base-13.2+git20170512.8fa87a3/files/etc/ttytype     2017-05-12 
16:22:06.000000000 +0200
@@ -4,19 +4,47 @@
 linux  tty4
 linux  tty5
 linux  tty6
-vt100  ttyp0
-vt100  ttyp1
-vt100  ttyp2
-vt100  ttyp3
-vt100  ttyp4
-vt100  ttyp5
-vt100  ttyp6
-vt100  ttyp7
-vt100  ttyp8
-vt100  ttyp9
-vt100  ttypa
-vt100  ttypb
-vt100  ttypc
-vt100  ttypd
-vt100  ttype
-vt100  ttypf
+vt220  ttyS0
+vt220  ttyS1
+vt220  ttyS2
+vt220  ttyS3
+vt220  ttyS4
+vt220  ttyS5
+vt220  ttyS6
+vt220  ttyS7
+vt220  ttyS8
+vt220  ttyS9
+vt220  ttyS10
+vt220  ttyS11
+vt220  ttyS12
+vt220  ttyS13
+vt220  ttyS14
+vt220  ttyS15
+vt220  ttyS16
+vt220  ttyS17
+vt220  ttyS18
+vt220  ttyS19
+vt220  ttyS20
+vt220  ttyS21
+vt220  ttyS22
+vt220  ttyS23
+vt220  ttyS24
+vt220  ttyS25
+vt220  ttyS26
+vt220  ttyS27
+vt220  ttyS28
+vt220  ttyS29
+vt220  ttyS30
+vt220  ttyS31
+vt220  hvc0
+vt220  hvc1
+vt220  hvc2
+vt220  hvc3
+vt220  xvc0
+vt220  xvc1
+vt220  xvc2
+vt220  xvc3
+vt220  hvsi0
+vt220  hvsi1
+vt220  hvsi2
+vt220  hvsi3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/aaa_base-13.2+git20170504.927b15d/patches/s390/ttytype.diff 
new/aaa_base-13.2+git20170512.8fa87a3/patches/s390/ttytype.diff
--- old/aaa_base-13.2+git20170504.927b15d/patches/s390/ttytype.diff     
2017-05-04 11:16:25.000000000 +0200
+++ new/aaa_base-13.2+git20170512.8fa87a3/patches/s390/ttytype.diff     
2017-05-12 16:22:06.000000000 +0200
@@ -1,9 +1,11 @@
 --- etc/ttytype
-+++ etc/ttytype        2003/09/10 11:47:31
-@@ -20,3 +20,6 @@
- vt100 ttypd
- vt100 ttype
- vt100 ttypf
++++ etc/ttytype        2017-05-12 14:20:34.524454300 +0000
+@@ -4,7 +4,7 @@ linux  tty3
+ linux tty4
+ linux tty5
+ linux tty6
+-vt220 ttyS0
 +dumb  ttyS0
-+linux ttyS1
-+linux  hvc0
+ vt220 ttyS1
+ vt220 ttyS2
+ vt220 ttyS3


Reply via email to