Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package moreutils for openSUSE:Factory 
checked in at 2021-09-29 20:19:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/moreutils (Old)
 and      /work/SRC/openSUSE:Factory/.moreutils.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "moreutils"

Wed Sep 29 20:19:14 2021 rev:9 rq:922183 version:0.66

Changes:
--------
--- /work/SRC/openSUSE:Factory/moreutils/moreutils.changes      2021-02-09 
21:17:26.722854944 +0100
+++ /work/SRC/openSUSE:Factory/.moreutils.new.1899/moreutils.changes    
2021-09-29 20:20:46.019149653 +0200
@@ -1,0 +2,9 @@
+Wed Sep 29 12:35:05 UTC 2021 - Paolo Stivanin <[email protected]>
+
+- update to 0.66:
+  * vipe: When no output is piped into vipe, and stdin is connected to
+    the terminal, don't read from stdin before opening the editor.
+    This allows eg: vipe | command
+  * chronic: With -v, flush stdout after printing "STDERR" header.
+
+-------------------------------------------------------------------

Old:
----
  moreutils-0.65.tar.gz

New:
----
  moreutils-0.66.tar.gz

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

Other differences:
------------------
++++++ moreutils.spec ++++++
--- /var/tmp/diff_new_pack.v3QLOP/_old  2021-09-29 20:20:46.615150517 +0200
+++ /var/tmp/diff_new_pack.v3QLOP/_new  2021-09-29 20:20:46.619150523 +0200
@@ -17,10 +17,10 @@
 
 
 Name:           moreutils
-Version:        0.65
+Version:        0.66
 Release:        0
 Summary:        Additional Unix Utilities
-License:        GPL-2.0-or-later AND GPL-2.0-only AND MIT
+License:        GPL-2.0-only AND GPL-2.0-or-later AND MIT
 Group:          Productivity/File utilities
 URL:            https://joeyh.name/code/moreutils/
 Source:         
https://git.joeyh.name/index.cgi/moreutils.git/snapshot/%{name}-%{version}.tar.gz

++++++ moreutils-0.65.tar.gz -> moreutils-0.66.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/moreutils-0.65/Makefile new/moreutils-0.66/Makefile
--- old/moreutils-0.65/Makefile 2021-01-02 17:25:26.000000000 +0100
+++ new/moreutils-0.66/Makefile 2021-09-16 15:13:01.000000000 +0200
@@ -31,6 +31,10 @@
        mkdir -p $(DESTDIR)$(PREFIX)/share/man/man1
        install $(MANS) $(DESTDIR)$(PREFIX)/share/man/man1
 
+uninstall:
+       for i in $(BINS) $(PERLSCRIPTS); do rm -f $(DESTDIR)$(PREFIX)/bin/$$i; 
done
+       for i in $(MANS); do rm -f $(DESTDIR)$(PREFIX)/share/man/man1/$$i; done
+
 check: isutf8
        ./is_utf8/test.sh
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/moreutils-0.65/chronic new/moreutils-0.66/chronic
--- old/moreutils-0.65/chronic  2021-01-02 17:25:26.000000000 +0100
+++ new/moreutils-0.66/chronic  2021-09-16 15:13:01.000000000 +0200
@@ -89,8 +89,8 @@
 sub showout {
        print "STDOUT:\n" if $opt_v;
        print STDOUT $out;
-       STDOUT->flush();
        print "\nSTDERR:\n" if $opt_v;
+       STDOUT->flush();
        print STDERR $err;
        STDERR->flush();
        print "\nRETVAL: ".($ret >> 8)."\n" if $opt_v;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/moreutils-0.65/debian/changelog 
new/moreutils-0.66/debian/changelog
--- old/moreutils-0.65/debian/changelog 2021-01-02 17:25:26.000000000 +0100
+++ new/moreutils-0.66/debian/changelog 2021-09-16 15:13:01.000000000 +0200
@@ -1,3 +1,14 @@
+moreutils (0.66) unstable; urgency=medium
+
+  * vipe: When no output is piped into vipe, and stdin is connected to
+    the terminal, don't read from stdin before opening the editor.
+    This allows eg: vipe | command
+    Thanks, Florian Pensec
+  * chronic: With -v, flush stdout after printing "STDERR" header.
+    Thanks, Adam Sj??gren
+
+ -- Joey Hess <[email protected]>  Thu, 16 Sep 2021 09:12:42 -0400
+
 moreutils (0.65) unstable; urgency=medium
 
   * vipe: Added --suffix option.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/moreutils-0.65/vipe new/moreutils-0.66/vipe
--- old/moreutils-0.65/vipe     2021-01-02 17:25:26.000000000 +0100
+++ new/moreutils-0.66/vipe     2021-09-16 15:13:01.000000000 +0200
@@ -64,7 +64,9 @@
 
 my ($fh, $tmp)=tempfile(UNLINK => 1, SUFFIX => $suffix);
 die "cannot create tempfile" unless $fh;
-print ($fh <STDIN>) || die "write temp: $!";
+if (! -t STDIN) {
+       print ($fh <STDIN>) || die "write temp: $!";
+}
 close $fh;
 close STDIN;
 open(STDIN, "</dev/tty") || die "reopen stdin: $!";

Reply via email to