Date: Mon, 1 Jan 2018 20:58:37 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r457800 - in head/sysutils/moreutils: . files Message-ID: <201801012058.w01KwbDw044352@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Mon Jan 1 20:58:37 2018 New Revision: 457800 URL: https://svnweb.freebsd.org/changeset/ports/457800 Log: Update to 0.62 - Update manpage Changes: https://git.joeyh.name/index.cgi/moreutils.git/log/ https://joeyh.name/code/moreutils/news/version_0.62/ Added: head/sysutils/moreutils/files/patch-pee.c (contents, props changed) Modified: head/sysutils/moreutils/Makefile head/sysutils/moreutils/distinfo head/sysutils/moreutils/files/pee.1 Modified: head/sysutils/moreutils/Makefile ============================================================================== --- head/sysutils/moreutils/Makefile Mon Jan 1 20:40:04 2018 (r457799) +++ head/sysutils/moreutils/Makefile Mon Jan 1 20:58:37 2018 (r457800) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= moreutils -PORTVERSION= 0.61 +PORTVERSION= 0.62 CATEGORIES= sysutils MASTER_SITES= https://git.joeyh.name/index.cgi/moreutils.git/snapshot/ \ LOCAL/sunpoet Modified: head/sysutils/moreutils/distinfo ============================================================================== --- head/sysutils/moreutils/distinfo Mon Jan 1 20:40:04 2018 (r457799) +++ head/sysutils/moreutils/distinfo Mon Jan 1 20:58:37 2018 (r457800) @@ -1,3 +1,3 @@ -TIMESTAMP = 1493551321 -SHA256 (moreutils-0.61.tar.gz) = eb47d33251715a8638c2309ab69b23e9023f7fd2fe2c101c9574230e91ff308b -SIZE (moreutils-0.61.tar.gz) = 91205 +TIMESTAMP = 1514822918 +SHA256 (moreutils-0.62.tar.gz) = 9ddf9d74983bbca869de96210c81b95ef747d817bce67505f9804a90b9ce83bd +SIZE (moreutils-0.62.tar.gz) = 92303 Added: head/sysutils/moreutils/files/patch-pee.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/moreutils/files/patch-pee.c Mon Jan 1 20:58:37 2018 (r457800) @@ -0,0 +1,10 @@ +--- pee.c.orig 2017-12-31 16:02:11 UTC ++++ pee.c +@@ -2,6 +2,7 @@ + #include <stdio.h> + #include <unistd.h> + #include <string.h> ++#include <signal.h> + #include <sys/types.h> + #include <sys/wait.h> + #include <errno.h> Modified: head/sysutils/moreutils/files/pee.1 ============================================================================== --- head/sysutils/moreutils/files/pee.1 Mon Jan 1 20:40:04 2018 (r457799) +++ head/sysutils/moreutils/files/pee.1 Mon Jan 1 20:58:37 2018 (r457800) @@ -2,12 +2,12 @@ .\" Title: pee .\" Author: Joey Hess .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> -.\" Date: 2006-03-14 +.\" Date: 2016-12-20 .\" Manual: moreutils .\" Source: moreutils .\" Language: English .\" -.TH "PEE" "1" "2006\-03\-14" "moreutils" "moreutils" +.TH "PEE" "1" "2016\-12\-20" "moreutils" "moreutils" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- @@ -31,7 +31,7 @@ pee \- tee standard input to pipes .SH "SYNOPSIS" .HP \w'\fBpee\fR\ 'u -\fBpee\fR [[\fI"command"\fR...]] +\fBpee\fR [\-\-[no\-]ignore\-sigpipe] [\-\-[no\-]ignore\-write\-errors] [[\fI"command"\fR...]] .SH "DESCRIPTION" .PP \fBpee\fR @@ -42,10 +42,30 @@ but for pipes\&. Each command is run and fed a copy of Note that while this is similar to \fBtee\fR, a copy of the input is not sent to stdout, like tee does\&. If that is desired, use \fBpee cat \&.\&.\&.\fR +.SH "OPTIONS" +.PP +\fB\-\-ignore\-sigpipe\fR, \fB\-\-no\-ignore\-sigpipe\fR +.RS 4 +Do (not) ignore SIGPIPE\&. Any command started by +\fBpee\fR +might cause a SIGPIPE when it exists\&. If you ignore SIGPIPE, you probably also want to ignore write errors (see below)\&. Ignoring SIGPIPE is the default behaviour\&. +.RE +.PP +\fB\-\-ignore\-write\-errors\fR, \fB\-\-no\-ignore\-write\-errors\fR +.RS 4 +Do (not) ignore write errors\&. When a command started by +\fBpee\fR +is no more accepting data via the pipe between itself and +\fBpee\fR, a write error occurs in +\fBpee\fR\&. If this error is not ignored, +\fBpee\fR +is going to terminate all child processes and exists\&. Ignoring write errors is the default behaviour\&. +.RE .SH "SEE ALSO" .PP -\fBtee\fR(1) +\fBtee\fR(1), +\fBpipe\fR(7) .SH "AUTHOR" .PP Miek Gieben
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201801012058.w01KwbDw044352>