Hello community, here is the log from the commit of package less for openSUSE:Factory checked in at 2020-08-19 18:43:57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/less (Old) and /work/SRC/openSUSE:Factory/.less.new.3399 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "less" Wed Aug 19 18:43:57 2020 rev:59 rq:826860 version:563 Changes: -------- --- /work/SRC/openSUSE:Factory/less/less.changes 2020-06-04 17:48:43.863601741 +0200 +++ /work/SRC/openSUSE:Factory/.less.new.3399/less.changes 2020-08-19 18:44:27.475452883 +0200 @@ -1,0 +2,25 @@ +Sat Aug 15 16:25:35 UTC 2020 - Dirk Mueller <[email protected]> + +- update to 563: + * Update Unicode tables. + + * Treat Hangul Jamo medial vowels and final consonants as zero width. + + * Display error message immediately when -o is toggled and + input is not a pipe. + + * Fix regression: make screen repaint when "squished" and + a no-movement command is given. + + * Fix erroneous EOF calculation when F command is interrupted. + + * Make WIN32C version include this fix from 551: + Don't count lines in initial screen if using -X with -F. + + * Fix display bug in WIN32C version. + + * Fix memory corruption when built with libtermcap. + + * Support libtinfow. + +------------------------------------------------------------------- Old: ---- less-562.sig less-562.tar.gz New: ---- less-563.sig less-563.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ less.spec ++++++ --- /var/tmp/diff_new_pack.aQMhqD/_old 2020-08-19 18:44:29.311453859 +0200 +++ /var/tmp/diff_new_pack.aQMhqD/_new 2020-08-19 18:44:29.315453861 +0200 @@ -17,7 +17,7 @@ Name: less -Version: 562 +Version: 563 Release: 0 Summary: Text File Browser and Pager Similar to more License: GPL-3.0-or-later OR BSD-2-Clause ++++++ less-562.tar.gz -> less-563.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/less-562/NEWS new/less-563/NEWS --- old/less-562/NEWS 2020-05-19 23:59:31.000000000 +0200 +++ new/less-563/NEWS 2020-06-14 05:34:53.000000000 +0200 @@ -11,7 +11,7 @@ ====================================================================== - Major changes between "less" versions 551 and 562 + Major changes between "less" versions 551 and 563 * Update Unicode tables. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/less-562/README new/less-563/README --- old/less-562/README 2020-05-19 23:59:31.000000000 +0200 +++ new/less-563/README 2020-06-14 05:34:53.000000000 +0200 @@ -1,7 +1,7 @@ - Less, version 562 + Less, version 563 - This is the distribution of less, version 562, released 19 May 2020. + This is the distribution of less, version 563, released 13 Jun 2020. This program is part of the GNU project (http://www.gnu.org). This program is free software. You may redistribute it and/or diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/less-562/filename.c new/less-563/filename.c --- old/less-562/filename.c 2020-05-19 23:59:29.000000000 +0200 +++ new/less-563/filename.c 2020-06-14 05:34:50.000000000 +0200 @@ -795,16 +795,16 @@ } /* - * @@@ + * Return canonical pathname. */ public char * lrealpath(path) char *path; { #if HAVE_REALPATH - char *rpath = realpath(path, NULL); - if (rpath != NULL) - return (rpath); + char rpath[PATH_MAX]; + if (realpath(path, rpath) != NULL) + return (save(rpath)); #endif return (save(path)); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/less-562/help.c new/less-563/help.c --- old/less-562/help.c 2020-05-19 23:59:29.000000000 +0200 +++ new/less-563/help.c 2020-06-14 05:34:50.000000000 +0200 @@ -1,4 +1,4 @@ -/* This file was generated by mkhelp.pl from less.hlp at 21:59 on 2020/5/19 */ +/* This file was generated by mkhelp.pl from less.hlp at 3:34 on 2020/6/14 */ #include "less.h" constant char helpdata[] = { '\n', diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/less-562/less.man new/less-563/less.man --- old/less-562/less.man 2020-05-19 23:59:33.000000000 +0200 +++ new/less-563/less.man 2020-06-14 05:34:55.000000000 +0200 @@ -1683,4 +1683,4 @@ - Version 562: 19 May 2020 LESS(1) + Version 563: 13 Jun 2020 LESS(1) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/less-562/less.nro new/less-563/less.nro --- old/less-562/less.nro 2020-05-19 23:59:33.000000000 +0200 +++ new/less-563/less.nro 2020-06-14 05:34:55.000000000 +0200 @@ -1,5 +1,5 @@ '\" t -.TH LESS 1 "Version 562: 19 May 2020" +.TH LESS 1 "Version 563: 13 Jun 2020" .SH NAME less \- opposite of more .SH SYNOPSIS diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/less-562/lessecho.man new/less-563/lessecho.man --- old/less-562/lessecho.man 2020-05-19 23:59:33.000000000 +0200 +++ new/less-563/lessecho.man 2020-06-14 05:34:56.000000000 +0200 @@ -51,4 +51,4 @@ - Version 562: 19 May 2020 LESSECHO(1) + Version 563: 13 Jun 2020 LESSECHO(1) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/less-562/lessecho.nro new/less-563/lessecho.nro --- old/less-562/lessecho.nro 2020-05-19 23:59:33.000000000 +0200 +++ new/less-563/lessecho.nro 2020-06-14 05:34:56.000000000 +0200 @@ -1,4 +1,4 @@ -.TH LESSECHO 1 "Version 562: 19 May 2020" +.TH LESSECHO 1 "Version 563: 13 Jun 2020" .SH NAME lessecho \- expand metacharacters .SH SYNOPSIS diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/less-562/lesskey.man new/less-563/lesskey.man --- old/less-562/lesskey.man 2020-05-19 23:59:33.000000000 +0200 +++ new/less-563/lesskey.man 2020-06-14 05:34:56.000000000 +0200 @@ -355,4 +355,4 @@ - Version 562: 19 May 2020 LESSKEY(1) + Version 563: 13 Jun 2020 LESSKEY(1) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/less-562/lesskey.nro new/less-563/lesskey.nro --- old/less-562/lesskey.nro 2020-05-19 23:59:33.000000000 +0200 +++ new/less-563/lesskey.nro 2020-06-14 05:34:55.000000000 +0200 @@ -1,5 +1,5 @@ '\" t -.TH LESSKEY 1 "Version 562: 19 May 2020" +.TH LESSKEY 1 "Version 563: 13 Jun 2020" .SH NAME lesskey \- specify key bindings for less .SH SYNOPSIS diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/less-562/version.c new/less-563/version.c --- old/less-562/version.c 2020-05-19 23:59:31.000000000 +0200 +++ new/less-563/version.c 2020-06-14 05:34:52.000000000 +0200 @@ -893,6 +893,7 @@ fix some less.nro issues (thanks to Bjarni I. Gislason). v561 5/11/20 Fix erroneous EOF calculation when F command is interrupted. v562 5/19/20 Update Unicode tables; minor doc formatting. +v563 6/13/20 Fix crash due to realpath() incompatibility. */ -char version[] = "562"; +char version[] = "563";
