diff options
author | leot <leot@pkgsrc.org> | 2018-04-21 17:27:51 +0000 |
---|---|---|
committer | leot <leot@pkgsrc.org> | 2018-04-21 17:27:51 +0000 |
commit | 5e3ed01acadfcc9ee6a4d4ceadcea8ce91f7ba16 (patch) | |
tree | aedc834f7af011ef4a78be606b40fe673877b88b /misc/moreutils | |
parent | 662ae24049e57bccfe4bb190eed7952454e6d428 (diff) | |
download | pkgsrc-5e3ed01acadfcc9ee6a4d4ceadcea8ce91f7ba16.tar.gz |
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
Diffstat (limited to 'misc/moreutils')
-rw-r--r-- | misc/moreutils/Makefile | 5 | ||||
-rw-r--r-- | misc/moreutils/distinfo | 11 | ||||
-rw-r--r-- | misc/moreutils/patches/patch-pee.c | 14 |
3 files changed, 22 insertions, 8 deletions
diff --git a/misc/moreutils/Makefile b/misc/moreutils/Makefile index 9e55df22996..e31e9870108 100644 --- a/misc/moreutils/Makefile +++ b/misc/moreutils/Makefile @@ -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 diff --git a/misc/moreutils/distinfo b/misc/moreutils/distinfo index 002db03953f..d074a42674b 100644 --- a/misc/moreutils/distinfo +++ b/misc/moreutils/distinfo @@ -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 diff --git a/misc/moreutils/patches/patch-pee.c b/misc/moreutils/patches/patch-pee.c new file mode 100644 index 00000000000..c789905050d --- /dev/null +++ b/misc/moreutils/patches/patch-pee.c @@ -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> |