Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package grml-zsh-config for openSUSE:Factory 
checked in at 2024-02-21 17:59:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/grml-zsh-config (Old)
 and      /work/SRC/openSUSE:Factory/.grml-zsh-config.new.1706 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "grml-zsh-config"

Wed Feb 21 17:59:26 2024 rev:4 rq:1148544 version:0.19.7

Changes:
--------
--- /work/SRC/openSUSE:Factory/grml-zsh-config/grml-zsh-config.changes  
2023-11-19 20:17:06.809351377 +0100
+++ 
/work/SRC/openSUSE:Factory/.grml-zsh-config.new.1706/grml-zsh-config.changes    
    2024-02-21 17:59:29.473974565 +0100
@@ -1,0 +2,8 @@
+Wed Feb 21 10:17:26 UTC 2024 - Michael Vetter <[email protected]>
+
+- Update to 0.19.7:
+  * etc/skel/.zshrc: set file encoding to UTF8.
+  * zshrc: bugfix for _complete_screen_display when using tmux
+  * Bump Standards-Version to 4.6.2
+
+-------------------------------------------------------------------

Old:
----
  grml-etc-core_0.19.6.tar.gz

New:
----
  grml-etc-core_0.19.7.tar.gz

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

Other differences:
------------------
++++++ grml-zsh-config.spec ++++++
--- /var/tmp/diff_new_pack.KAKPZ1/_old  2024-02-21 17:59:30.634016512 +0100
+++ /var/tmp/diff_new_pack.KAKPZ1/_new  2024-02-21 17:59:30.638016657 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package grml-zsh-config
 #
-# Copyright (c) 2023 SUSE LLC
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           grml-zsh-config
-Version:        0.19.6
+Version:        0.19.7
 Release:        0
 Summary:        Zsh config used by grml
 License:        GPL-2.0-only

++++++ grml-etc-core_0.19.6.tar.gz -> grml-etc-core_0.19.7.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/grml-etc-core-0.19.6/debian/changelog 
new/grml-etc-core-0.19.7/debian/changelog
--- old/grml-etc-core-0.19.6/debian/changelog   2023-06-30 12:55:29.000000000 
+0200
+++ new/grml-etc-core-0.19.7/debian/changelog   2024-02-02 12:27:36.000000000 
+0100
@@ -1,3 +1,14 @@
+grml-etc-core (0.19.7) grml-testing; urgency=medium
+
+  [ Michael Prokop ]
+  * [ae34c42] etc/skel/.zshrc: set file encoding to UTF8.
+    Thanks to flobee for the bug report
+
+  [ Bernhard Tittelbach ]
+  * [326ca58] zshrc: bugfix for _complete_screen_display when using tmux
+
+ -- Michael Prokop <[email protected]>  Fri, 02 Feb 2024 12:27:36 +0100
+
 grml-etc-core (0.19.6) grml-testing; urgency=medium
 
   [ Michael Prokop ]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/grml-etc-core-0.19.6/etc/skel/.zshrc 
new/grml-etc-core-0.19.7/etc/skel/.zshrc
--- old/grml-etc-core-0.19.6/etc/skel/.zshrc    2023-06-30 12:55:29.000000000 
+0200
+++ new/grml-etc-core-0.19.7/etc/skel/.zshrc    2024-02-02 12:27:36.000000000 
+0100
@@ -332,7 +332,7 @@
 #getanames ()  { perl -ne 'while ( m/a name="([^"]*)"/gc ) { print $1, "\n"; 
}' $* }
 #getforms ()   { perl -ne 'while ( m:(\</?(input|form|select|option).*?\>):gic 
) { print $1, "\n"; }' $* }
 #getstrings () { perl -ne 'while ( m/"(.*?)"/gc ) { print $1, "\n"; }' $*}
-#getanchors () { perl -ne 'while ( m/«([^«»\n]+)»/gc ) { print $1, "\n"; }' $* 
}
+#getanchors () { perl -ne 'while ( m/«([^«»\n]+)»/gc ) { print $1, "\n"; 
}' $* }
 #showINC ()    { perl -e 'for (@INC) { printf "%d %s\n", $i++, $_ }' }
 #vimpm ()      { vim `perldoc -l $1 | sed -e 's/pod$/pm/'` }
 #vimhelp ()    { vim -c "help $1" -c on -c "au! VimEnter *" }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/grml-etc-core-0.19.6/etc/zsh/zshrc 
new/grml-etc-core-0.19.7/etc/zsh/zshrc
--- old/grml-etc-core-0.19.6/etc/zsh/zshrc      2023-06-30 12:55:29.000000000 
+0200
+++ new/grml-etc-core-0.19.7/etc/zsh/zshrc      2024-02-02 12:27:36.000000000 
+0100
@@ -1381,7 +1381,6 @@
 ## complete word from currently visible Screen or Tmux buffer.
 if check_com -c screen || check_com -c tmux; then
     function _complete_screen_display () {
-        [[ "$TERM" != "screen" ]] && return 1
 
         local TMPFILE=$(mktemp)
         local -U -a _screen_display_wordlist
@@ -1392,8 +1391,9 @@
             #works, but crashes tmux below version 1.4
             #luckily tmux -V option to ask for version, was also added in 1.4
             tmux -V &>/dev/null || return
-            tmux -q capture-pane \; save-buffer -b 0 $TMPFILE \; delete-buffer 
-b 0
+            tmux -q capture-pane -b 0 \; save-buffer -b 0 $TMPFILE \; 
delete-buffer -b 0
         else
+            [[ "$TERM" != "screen" ]] && return
             screen -X hardcopy $TMPFILE
             # screen sucks, it dumps in latin1, apparently always. so recode it
             # to system charset

Reply via email to