Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package zsh for openSUSE:Factory checked in 
at 2022-09-14 13:44:33
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/zsh (Old)
 and      /work/SRC/openSUSE:Factory/.zsh.new.2083 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "zsh"

Wed Sep 14 13:44:33 2022 rev:98 rq:1003249 version:5.9

Changes:
--------
--- /work/SRC/openSUSE:Factory/zsh/zsh.changes  2022-05-25 20:34:19.660208003 
+0200
+++ /work/SRC/openSUSE:Factory/.zsh.new.2083/zsh.changes        2022-09-14 
13:44:37.617840604 +0200
@@ -1,0 +2,5 @@
+Mon Sep 12 13:03:37 UTC 2022 - Dirk M??ller <dmuel...@suse.com>
+
+- add egrep-deprecation.patch (bsc#1203241) 
+
+-------------------------------------------------------------------

New:
----
  egrep-deprecation.patch

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

Other differences:
------------------
++++++ zsh.spec ++++++
--- /var/tmp/diff_new_pack.UV4olI/_old  2022-09-14 13:44:38.197842064 +0200
+++ /var/tmp/diff_new_pack.UV4olI/_new  2022-09-14 13:44:38.201842074 +0200
@@ -40,6 +40,8 @@
 Patch1:         trim-unneeded-completions.patch
 # PATCH-FIX-OPENSUSE zsh-osc-completion.patch -- Fix openSUSE versions in osc 
completion
 Patch2:         zsh-osc-completion.patch
+# PATCH-FIX-OPENSUSE: taken from 
https://www.zsh.org/mla/workers/2022/msg00956.html
+Patch3:         egrep-deprecation.patch
 BuildRequires:  groff
 BuildRequires:  libcap-devel
 BuildRequires:  ncurses-devel
@@ -99,6 +101,7 @@
 %patch1 -p1
 %endif
 %patch2 -p1
+%patch3 -p1
 
 # Remove executable bit
 chmod 0644 Etc/changelog2html.pl

++++++ egrep-deprecation.patch ++++++
Index: zsh-5.9/Test/D07multibyte.ztst
===================================================================
--- zsh-5.9.orig/Test/D07multibyte.ztst
+++ zsh-5.9/Test/D07multibyte.ztst
@@ -6,7 +6,7 @@
   unset -m LC_\*
   mb_ok=
   langs=(en_{US,GB}.{UTF-,utf}8 en.UTF-8
-        $(locale -a 2>/dev/null | egrep 'utf8|UTF-8'))
+        ${(M)$(locale -a 2>/dev/null):#*.(utf8|UTF-8)} )
   for LANG in $langs; do
     if [[ ?? = ? ]]; then
       mb_ok=1
Index: zsh-5.9/Test/E01options.ztst
===================================================================
--- zsh-5.9.orig/Test/E01options.ztst
+++ zsh-5.9/Test/E01options.ztst
@@ -651,7 +651,7 @@
 >noktarg1
 >0 1
 
-  showopt() { setopt | egrep 'localoptions|ksharrays'; }
+  showopt() { setopt | grep -E 'localoptions|ksharrays'; }
   f1() { setopt localoptions ksharrays; showopt }
   f2() { setopt ksharrays; showopt }
   setopt kshoptionprint

Reply via email to