Tue May 12 15:45:21 2015 UTC ()
Update pv to 1.6.0. Patch from Jonathan Buschmann in PR pkg/49795.

1.6.0 - 15 March 2015

	fix lstat64 support when unavailable - separate patches supplied by
Ganael Laplanche and Peter Korsgaard
	(#1506) new option "-D" / "--delay-start" to only show bar after N
seconds (Damon Harper)
	new option "--fineta" / "-I" to show ETA as time of day rather than
time remaining - patch supplied by Erkki Sepp辰l辰 (r147)
	(#1509) change ETA (--eta / -e) so that days are given if the hours
remaining are 24 or more (Jacek Wielemborek)
	(#1499) repeat read and write attempts on partial buffer fill/empty to
work around post-signal transfer rate drop reported by Ralf Ramsauer
	(#1507) do not try to calculate total size in line mode, due to bug
reported by Jacek Wielemborek and Michiel Van Herwegen
	cleanup: removed defunct RATS comments and unnecessary copyright
notices
        clean up displayed lines when using --watchfd PID, when PID exits
        output errors on a new line to avoid overwriting transfer bar

Changes in older releases :

new option --watchfd
new option --null
new option --skip-errors
new option --format
new option --remote (-R) to control an already-running process
new option --line-mode (-l) to count lines instead of bytes
Fixes for AIX, Cygwin, Solaris, MacOSX
Change license to Artistic 2.0


(bsiegert)
diff -r1.24 -r1.25 pkgsrc/sysutils/pv/Makefile
diff -r1.8 -r1.9 pkgsrc/sysutils/pv/PLIST
diff -r1.5 -r1.6 pkgsrc/sysutils/pv/distinfo
diff -r1.1.1.1 -r0 pkgsrc/sysutils/pv/patches/patch-ac

cvs diff -r1.24 -r1.25 pkgsrc/sysutils/pv/Makefile (expand / switch to unified diff)

--- pkgsrc/sysutils/pv/Makefile 2013/09/01 06:32:11 1.24
+++ pkgsrc/sysutils/pv/Makefile 2015/05/12 15:45:21 1.25
@@ -1,38 +1,27 @@ @@ -1,38 +1,27 @@
1# $NetBSD: Makefile,v 1.24 2013/09/01 06:32:11 obache Exp $ 1# $NetBSD: Makefile,v 1.25 2015/05/12 15:45:21 bsiegert Exp $
2# 2#
3 3
4DISTNAME= pv-0.9.6 4DISTNAME= pv-1.6.0
5PKGREVISION= 1 
6CATEGORIES= sysutils 5CATEGORIES= sysutils
7MASTER_SITES= http://www.ivarch.com/programs/sources/ 6MASTER_SITES= http://www.ivarch.com/programs/sources/
8MASTER_SITES+= ${MASTER_SITE_SOURCEFORGE:=pipeviewer/} 7MASTER_SITES+= ${MASTER_SITE_SOURCEFORGE:=pipeviewer/}
9 8
10MAINTAINER= pkgsrc-users@NetBSD.org 9MAINTAINER= pkgsrc-users@NetBSD.org
11HOMEPAGE= http://www.ivarch.com/programs/pv.shtml 10HOMEPAGE= http://www.ivarch.com/programs/pv.shtml
12COMMENT= Monitor the progress of data through a pipeline 11COMMENT= Monitor the progress of data through a pipeline
 12LICENSE= artistic-2.0
13 13
14GNU_CONFIGURE= yes 14GNU_CONFIGURE= yes
15USE_TOOLS+= gmake msgfmt 15USE_TOOLS+= gmake msgfmt
16USE_PKGLOCALEDIR= yes 16USE_PKGLOCALEDIR= yes
17INFO_FILES= yes 
18 
19# Don't gzip the installed info file and man pages. 
20CONFIGURE_ENV+= DO_GZIP=${TOOLS_CMD.true} 
21 17
22REPLACE_LOCALEDIR_PATTERNS+= vars.mk 18REPLACE_LOCALEDIR_PATTERNS+= vars.mk
23 19
24DOCDIR= ${PREFIX}/share/doc/pv 20DOCDIR= ${PREFIX}/share/doc/pv
25INSTALLATION_DIRS= ${DOCDIR} 21INSTALLATION_DIRS= ${DOCDIR}
26 22
27# Grab list of files to install from the PLIST. 
28post-install: 23post-install:
29 dir=${DOCDIR:S/^${PREFIX}\///:Q}; cd ${WRKSRC}/doc; \ 
30 ${GREP} "^$$dir/" ${PKGDIR}/PLIST | ${SED} "s|^$$dir/||" | \ 
31 while read file; do \ 
32 ${TEST} ! -f "$$file" || \ 
33 ${INSTALL_DATA} "$$file" ${DESTDIR}${PREFIX}/$$dir; \ 
34 done 
35 ${INSTALL_DATA} ${WRKSRC}/README ${DESTDIR}${DOCDIR} 24 ${INSTALL_DATA} ${WRKSRC}/README ${DESTDIR}${DOCDIR}
36 25
37.include "../../devel/gettext-lib/buildlink3.mk" 26.include "../../devel/gettext-lib/buildlink3.mk"
38.include "../../mk/bsd.pkg.mk" 27.include "../../mk/bsd.pkg.mk"

cvs diff -r1.8 -r1.9 pkgsrc/sysutils/pv/PLIST (expand / switch to unified diff)

--- pkgsrc/sysutils/pv/PLIST 2009/06/14 18:16:12 1.8
+++ pkgsrc/sysutils/pv/PLIST 2015/05/12 15:45:21 1.9
@@ -1,16 +1,8 @@ @@ -1,16 +1,8 @@
1@comment $NetBSD: PLIST,v 1.8 2009/06/14 18:16:12 joerg Exp $ 1@comment $NetBSD: PLIST,v 1.9 2015/05/12 15:45:21 bsiegert Exp $
2bin/pv 2bin/pv
3info/pv.info 
4man/man1/pv.1 3man/man1/pv.1
5share/doc/pv/COPYING 
6share/doc/pv/NEWS 
7share/doc/pv/README 4share/doc/pv/README
8share/doc/pv/TODO 
9share/doc/pv/index.html 
10share/doc/pv/lsm 
11share/doc/pv/manual.html 
12share/doc/pv/quickref.txt 
13share/locale/de/LC_MESSAGES/pv.mo 5share/locale/de/LC_MESSAGES/pv.mo
14share/locale/fr/LC_MESSAGES/pv.mo 6share/locale/fr/LC_MESSAGES/pv.mo
15share/locale/pl/LC_MESSAGES/pv.mo 7share/locale/pl/LC_MESSAGES/pv.mo
16share/locale/pt/LC_MESSAGES/pv.mo 8share/locale/pt/LC_MESSAGES/pv.mo

cvs diff -r1.5 -r1.6 pkgsrc/sysutils/pv/distinfo (expand / switch to unified diff)

--- pkgsrc/sysutils/pv/distinfo 2006/04/11 02:28:09 1.5
+++ pkgsrc/sysutils/pv/distinfo 2015/05/12 15:45:21 1.6
@@ -1,6 +1,5 @@ @@ -1,6 +1,5 @@
1$NetBSD: distinfo,v 1.5 2006/04/11 02:28:09 jlam Exp $ 1$NetBSD: distinfo,v 1.6 2015/05/12 15:45:21 bsiegert Exp $
2 2
3SHA1 (pv-0.9.6.tar.gz) = 295107b15c92404095f761b45b156ac51e345e6b 3SHA1 (pv-1.6.0.tar.gz) = 395ce62f4f3e035b86c77038f04b96c5aa233595
4RMD160 (pv-0.9.6.tar.gz) = ecce86be892d8ff594daf95b3d3d483debbe7bfe 4RMD160 (pv-1.6.0.tar.gz) = fecc8c9bc40311a37af8630376aa426089d23cb2
5Size (pv-0.9.6.tar.gz) = 99961 bytes 5Size (pv-1.6.0.tar.gz) = 123072 bytes
6SHA1 (patch-ac) = b6b08a88a11bd8f35d05ea995dafe672d19f1932 

File Deleted: pkgsrc/sysutils/pv/patches/Attic/patch-ac