pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/misc/moreutils



Module Name:    pkgsrc
Committed By:   leot
Date:           Sat Apr 21 17:27:51 UTC 2018

Modified Files:
        pkgsrc/misc/moreutils: Makefile distinfo
Added Files:
        pkgsrc/misc/moreutils/patches: patch-pee.c

Log Message:
moreutils: Update misc/moreutils to 0.62

Changes:
0.62
----
- ts: Add -m option to use monotonic clock. Thanks, Ben Leinweber
- ts: Added %.T format like %T but with hi-res. Thanks, Matt Koscica
- pee: Ignore SIGPIPE and write errors caused by the command not consuming all
  its input. Closes: #697052 Thanks, Ole Jørgen Brønner
- chronic: document return value semantics of -e option.
  Closes: #867167 Thanks, Daniel Shahaf
- vidir: reword man page to more explicit mention 'file' args.
  Closes: #885221 Thanks, Daniel Shahaf
- pee: Don't buffer input, bringing behavior into line with tee.
  Thanks, Sauerbeck Tilman

0.61
----
- chronic: Flush output more often to better preserve stdout,err ordering.
  Thanks, Miroslav Šustek


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 pkgsrc/misc/moreutils/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/misc/moreutils/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/misc/moreutils/patches/patch-pee.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/misc/moreutils/Makefile
diff -u pkgsrc/misc/moreutils/Makefile:1.4 pkgsrc/misc/moreutils/Makefile:1.5
--- pkgsrc/misc/moreutils/Makefile:1.4  Wed Mar 14 20:35:23 2018
+++ pkgsrc/misc/moreutils/Makefile      Sat Apr 21 17:27:51 2018
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.4 2018/03/14 20:35:23 leot Exp $
+# $NetBSD: Makefile,v 1.5 2018/04/21 17:27:51 leot Exp $
 
-DISTNAME=      moreutils_0.60.orig
+DISTNAME=      moreutils_0.62.orig
 PKGNAME=       ${DISTNAME:S/_/-/:S/.orig//}
-PKGREVISION=   1
 CATEGORIES=    misc
 MASTER_SITES=  ${MASTER_SITE_DEBIAN:=pool/main/m/moreutils/}
 EXTRACT_SUFX=  .tar.xz

Index: pkgsrc/misc/moreutils/distinfo
diff -u pkgsrc/misc/moreutils/distinfo:1.2 pkgsrc/misc/moreutils/distinfo:1.3
--- pkgsrc/misc/moreutils/distinfo:1.2  Thu Sep  7 08:18:44 2017
+++ pkgsrc/misc/moreutils/distinfo      Sat Apr 21 17:27:51 2018
@@ -1,9 +1,10 @@
-$NetBSD: distinfo,v 1.2 2017/09/07 08:18:44 leot Exp $
+$NetBSD: distinfo,v 1.3 2018/04/21 17:27:51 leot Exp $
 
-SHA1 (moreutils_0.60.orig.tar.xz) = 3af60490f763ece48b2fcba968903673c3e63495
-RMD160 (moreutils_0.60.orig.tar.xz) = aa3700e114f51513bf52123eae19d3f9625d7052
-SHA512 (moreutils_0.60.orig.tar.xz) = 3fb5d8e140a90d805c4cd0de74248a5ea830ba8f90c56afdeb537391c32984cbb9701d4d9caf187a5f9284dfe791d1f7a333af3aac2a4860e2041c414e5cb788
-Size (moreutils_0.60.orig.tar.xz) = 79360 bytes
+SHA1 (moreutils_0.62.orig.tar.xz) = e1167351127aad1d661b987245e619f737a2fc0c
+RMD160 (moreutils_0.62.orig.tar.xz) = 93a42c239443e572c7e1cc7e370882a702272671
+SHA512 (moreutils_0.62.orig.tar.xz) = 4d1bd481695f3152d33fbb8a58ca923c70ad0a189df7272082adb8d2ccaf0349a3816b6e0f642b667faa36935e4098ed4d2b40dfd256f84b7d5c48e9ace0bdc2
+Size (moreutils_0.62.orig.tar.xz) = 80364 bytes
 SHA1 (patch-Makefile) = 80fb38e584db12f344ed66da76c8bee0127d17cc
 SHA1 (patch-ifdata.c) = 5c0d9737657354ad1877f2efc6ff08e76ca7bc62
 SHA1 (patch-is__utf8_Makefile) = 8feacdc8a0a0939aefd7f647be8196bdfdbda66c
+SHA1 (patch-pee.c) = 0c2cf167e7038fadd818ea3262686a1b4ed5aa7e

Added files:

Index: pkgsrc/misc/moreutils/patches/patch-pee.c
diff -u /dev/null pkgsrc/misc/moreutils/patches/patch-pee.c:1.1
--- /dev/null   Sat Apr 21 17:27:51 2018
+++ pkgsrc/misc/moreutils/patches/patch-pee.c   Sat Apr 21 17:27:51 2018
@@ -0,0 +1,14 @@
+$NetBSD: patch-pee.c,v 1.1 2018/04/21 17:27:51 leot Exp $
+
+Needed for signal(3).
+
+--- pee.c.orig 2017-12-31 16:02:11.000000000 +0000
++++ pee.c
+@@ -1,6 +1,7 @@
+ #include <stdlib.h>
+ #include <stdio.h>
+ #include <unistd.h>
++#include <signal.h>
+ #include <string.h>
+ #include <sys/types.h>
+ #include <sys/wait.h>



Home | Main Index | Thread Index | Old Index