Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package moreutils for openSUSE:Factory checked in at 2023-11-30 22:00:58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/moreutils (Old) and /work/SRC/openSUSE:Factory/.moreutils.new.25432 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "moreutils" Thu Nov 30 22:00:58 2023 rev:12 rq:1129826 version:0.68 Changes: -------- --- /work/SRC/openSUSE:Factory/moreutils/moreutils.changes 2022-08-27 11:50:17.429868905 +0200 +++ /work/SRC/openSUSE:Factory/.moreutils.new.25432/moreutils.changes 2023-11-30 22:01:43.713960076 +0100 @@ -1,0 +2,7 @@ +Wed Nov 29 13:42:27 UTC 2023 - Bruno Pitrus <brunopit...@hotmail.com> + +- New upstream release 0.68 + * popen: Use pclose, fixing compile warning. + * vidir: Zero pad line numbers to work better when used with a small tab size such as 2. + +------------------------------------------------------------------- Old: ---- moreutils-0.67.tar.gz New: ---- moreutils-0.68.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ moreutils.spec ++++++ --- /var/tmp/diff_new_pack.eRGIKV/_old 2023-11-30 22:01:44.685995884 +0100 +++ /var/tmp/diff_new_pack.eRGIKV/_new 2023-11-30 22:01:44.685995884 +0100 @@ -17,7 +17,7 @@ Name: moreutils -Version: 0.67 +Version: 0.68 Release: 0 Summary: Additional Unix Utilities # sponge â GPL2 ++++++ moreutils-0.67.tar.gz -> moreutils-0.68.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/moreutils-0.67/debian/changelog new/moreutils-0.68/debian/changelog --- old/moreutils-0.67/debian/changelog 2021-12-21 20:39:00.000000000 +0100 +++ new/moreutils-0.68/debian/changelog 2023-11-28 19:10:55.000000000 +0100 @@ -1,3 +1,13 @@ +moreutils (0.68) unstable; urgency=medium + + * popen: Use pclose, fixing compile warning. + Thanks, Mikel Olasagasti Uranga + * vidir: Zero pad line numbers to work better when used with + a small tab size such as 2. + Thanks, Johan Grande + + -- Joey Hess <i...@joeyh.name> Tue, 28 Nov 2023 14:10:42 -0400 + moreutils (0.67) unstable; urgency=medium * README: Formalize that I am not adding new tools to moreutils, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/moreutils-0.67/errno.c new/moreutils-0.68/errno.c --- old/moreutils-0.67/errno.c 2021-12-21 20:39:00.000000000 +0100 +++ new/moreutils-0.68/errno.c 2023-11-28 19:10:55.000000000 +0100 @@ -123,7 +123,7 @@ search(num_words, words); } - fclose(f); + pclose(f); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/moreutils-0.67/vidir new/moreutils-0.68/vidir --- old/moreutils-0.67/vidir 2021-12-21 20:39:00.000000000 +0100 +++ new/moreutils-0.68/vidir 2023-11-28 19:10:55.000000000 +0100 @@ -123,7 +123,7 @@ foreach (@dir) { next if /^(.*\/)?\.$/ || /^(.*\/)?\.\.$/; $item{++$c}=$_; - print OUT "$c\t$_\n"; + printf OUT "%04d\t%s\n", $c, $_; } @dir=(); close OUT || die "$0: cannot write ".$tmp->filename.": $!\n";