Hello community, here is the log from the commit of package tcsh for openSUSE:Factory checked in at 2020-07-17 20:46:11 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/tcsh (Old) and /work/SRC/openSUSE:Factory/.tcsh.new.3592 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "tcsh" Fri Jul 17 20:46:11 2020 rev:73 rq:821046 version:6.22.02 Changes: -------- --- /work/SRC/openSUSE:Factory/tcsh/tcsh.changes 2020-05-16 22:23:35.928936277 +0200 +++ /work/SRC/openSUSE:Factory/.tcsh.new.3592/tcsh.changes 2020-07-17 20:46:35.556651281 +0200 @@ -1,0 +2,6 @@ +Wed Jul 15 07:34:33 UTC 2020 - Dr. Werner Fink <[email protected]> + +- Add patch tcsh-6.22.02-double_tilde.dif from mailing list for + reported bug and already added upstream + +------------------------------------------------------------------- New: ---- tcsh-6.22.02-double_tilde.dif ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ tcsh.spec ++++++ --- /var/tmp/diff_new_pack.ZagSlF/_old 2020-07-17 20:46:37.208653041 +0200 +++ /var/tmp/diff_new_pack.ZagSlF/_new 2020-07-17 20:46:37.208653041 +0200 @@ -35,6 +35,7 @@ Patch7: tcsh-6.22.02-workaround-common.patch Patch8: tcsh-6.22.02-local-dotlock.dif Patch9: tcsh-6.22.02-history-merge.dif +Patch10: tcsh-6.22.02-double_tilde.dif BuildRequires: autoconf BuildRequires: fdupes BuildRequires: ncurses-devel @@ -63,6 +64,7 @@ %patch7 -p 1 -b .workaround %patch8 -p 0 -b .dotlock %patch9 -p 0 -b .histmrg +%patch10 -p0 -b .dbltilde %patch0 -b .0 %build ++++++ tcsh-6.22.02-double_tilde.dif ++++++ Date: Fri, 10 Jul 2020 18:13:45 +0200 >From [email protected] Fri Jul 10 16:49:57 2020 From: Hans Rosenfeld <[email protected]> To: [email protected] Subject: [Tcsh] ~~ expansion broken again Return-Path: <[email protected]> User-Agent: Mutt/1.12.2 (2019-09-21) Sender: Tcsh <[email protected]> --- sh.glob.c +++ sh.glob.c 2017-04-05 12:54:37.623870649 +0000 @@ -74,6 +74,9 @@ globtilde(Char *s) { Char *name, *u, *home, *res; + if (s[1] == '~') + return s; + u = s; for (s++; *s && *s != '/' && *s != ':'; s++) continue;
