pkgsrc-Changes archive

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

CVS commit: pkgsrc/sysutils/pv



Module Name:    pkgsrc
Committed By:   ryoon
Date:           Thu Feb 26 15:19:54 UTC 2026

Modified Files:
        pkgsrc/sysutils/pv: Makefile PLIST distinfo

Log Message:
sysutils/pv: Update to 1.10.3

Changelog:
### 1.10.3 - 15 December 2025

 * *fix:* stop truncating the process title set by **--extra-display**

### 1.10.2 - 22 November 2025

 * *i18n:* Finnish translations updated
 * *cleanup:* adjust valgrind suppressions so memory safety tests work on LTO builds ([#174](https://codeberg.org/ivarch/pv/issues/174)/[Debian bug 
1121157](https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1121157))

### 1.10.1 - 12 November 2025

 * *fix:* correct **--watchfd** memory allocation error when given multiple arguments ([#170](https://codeberg.org/ivarch/pv/issues/170))

### 1.10.0 - 7 November 2025

 * *feature:* new **--query** option to show the transfer status of another running **pv** ([#101](https://codeberg.org/ivarch/pv/issues/101))
 * *fix:* make the timers work consistently in **--watchfd** if paused and resumed ([#169](https://codeberg.org/ivarch/pv/issues/169))

### 1.9.44 - 18 October 2025

 * *feature:* new **--sparse** option to write sparse output ([#45](https://codeberg.org/ivarch/pv/issues/45))
 * *fix:* don't clear the **--watchfd** display when the watched process ends ([#81](https://codeberg.org/ivarch/pv/issues/81))

### 1.9.42 - 11 October 2025

 * *feature:* permit multiple arguments to **--watchfd** ([#12](https://codeberg.org/ivarch/pv/issues/12))
 * *feature:* new "**=NAME**" syntax for **--watchfd** to watch processes by name using **pgrep**(1) ([#95](https://codeberg.org/ivarch/pv/issues/95))
 * *feature:* new "**@LISTFILE**" syntax for **--watchfd** to watch processes listed in a file
 * *fix:* improve support for changing the format of a **--watchfd** process with **--remote**
 * *fix:* don't read more than **--size** bytes when using **--stop-at-size** ([#166](https://codeberg.org/ivarch/pv/issues/166))
 * *fix:* transfer nothing if **--stop-at-size** is given a **--size** of 0 ([#166](https://codeberg.org/ivarch/pv/issues/166))
 * *i18n:* Finnish translation stub added
 * *i18n:* Turkish translations updated

### 1.9.34 - 26 July 2025

 * *fix:* prevent tight loop consuming CPU when waiting for a partially filled output pipe to be drained ([#164](https://codeberg.org/ivarch/pv/issues/164))
 * *fix:* correct a memory handling fault when using **--bar-style** with **--watchfd** ([#163](https://codeberg.org/ivarch/pv/issues/163))
 * *i18n:* French translations updated


To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 pkgsrc/sysutils/pv/Makefile
cvs rdiff -u -r1.12 -r1.13 pkgsrc/sysutils/pv/PLIST
cvs rdiff -u -r1.16 -r1.17 pkgsrc/sysutils/pv/distinfo

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

Modified files:

Index: pkgsrc/sysutils/pv/Makefile
diff -u pkgsrc/sysutils/pv/Makefile:1.34 pkgsrc/sysutils/pv/Makefile:1.35
--- pkgsrc/sysutils/pv/Makefile:1.34    Mon Mar  3 21:34:21 2025
+++ pkgsrc/sysutils/pv/Makefile Thu Feb 26 15:19:54 2026
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.34 2025/03/03 21:34:21 schmonz Exp $
+# $NetBSD: Makefile,v 1.35 2026/02/26 15:19:54 ryoon Exp $
 
-DISTNAME=      pv-1.9.31
+DISTNAME=      pv-1.10.3
 CATEGORIES=    sysutils
 MASTER_SITES=  https://www.ivarch.com/programs/sources/
 MASTER_SITES+= ${MASTER_SITE_SOURCEFORGE:=pipeviewer/}
@@ -30,7 +30,7 @@ CONFIGURE_ENV+=               ac_cv_func_stat64=no
 .endif
 
 PV_SHARE_FILES=                ACKNOWLEDGEMENTS.md COPYING DEVELOPERS.md INSTALL \
-                       NEWS.md benchmark.sh
+                       NEWS.md benchmark-rw-syscalls-vs-data.sh
 
 post-install:
 .for i in ${PV_SHARE_FILES}

Index: pkgsrc/sysutils/pv/PLIST
diff -u pkgsrc/sysutils/pv/PLIST:1.12 pkgsrc/sysutils/pv/PLIST:1.13
--- pkgsrc/sysutils/pv/PLIST:1.12       Mon Jan 27 01:00:45 2025
+++ pkgsrc/sysutils/pv/PLIST    Thu Feb 26 15:19:54 2026
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.12 2025/01/27 01:00:45 scole Exp $
+@comment $NetBSD: PLIST,v 1.13 2026/02/26 15:19:54 ryoon Exp $
 bin/pv
 man/man1/pv.1
 share/doc/pv/ACKNOWLEDGEMENTS.md
@@ -7,11 +7,13 @@ share/doc/pv/DEVELOPERS.md
 share/doc/pv/INSTALL
 share/doc/pv/NEWS.md
 share/doc/pv/README.md
-share/doc/pv/benchmark.sh
+share/doc/pv/benchmark-rw-syscalls-vs-data.sh
 share/locale/cs/LC_MESSAGES/pv.mo
 share/locale/de/LC_MESSAGES/pv.mo
 share/locale/es/LC_MESSAGES/pv.mo
+share/locale/fi/LC_MESSAGES/pv.mo
 share/locale/fr/LC_MESSAGES/pv.mo
+share/locale/ka/LC_MESSAGES/pv.mo
 share/locale/pl/LC_MESSAGES/pv.mo
 share/locale/pt/LC_MESSAGES/pv.mo
 share/locale/ru/LC_MESSAGES/pv.mo

Index: pkgsrc/sysutils/pv/distinfo
diff -u pkgsrc/sysutils/pv/distinfo:1.16 pkgsrc/sysutils/pv/distinfo:1.17
--- pkgsrc/sysutils/pv/distinfo:1.16    Mon Mar  3 21:34:21 2025
+++ pkgsrc/sysutils/pv/distinfo Thu Feb 26 15:19:54 2026
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.16 2025/03/03 21:34:21 schmonz Exp $
+$NetBSD: distinfo,v 1.17 2026/02/26 15:19:54 ryoon Exp $
 
-BLAKE2s (pv-1.9.31.tar.gz) = 41b55d0dba61fa1c0e6f4357dde6bd66bb6c2ccf0871f60010f862cecff11752
-SHA512 (pv-1.9.31.tar.gz) = 63cdc6223cde4f3f0daf47b5808a3f72a9cfaf2c05751e971a99d9dd3df2f36430958213c023931f428c87341a5f6c1f3772f30ca992123ea4c2a2e48000ff1d
-Size (pv-1.9.31.tar.gz) = 417551 bytes
+BLAKE2s (pv-1.10.3.tar.gz) = 78ebb7d9d3ef0537188d81fe9c3f4cf824f6fb36cd73e768104e70eec8576907
+SHA512 (pv-1.10.3.tar.gz) = 19d48f004cf06e36b1157c701afb4612a3a38997d74195cf9e79250cda085d4bf724d954504c4d88368a6af099a9eaa872da33e96848bbdce325f52ad40e6947
+Size (pv-1.10.3.tar.gz) = 427463 bytes



Home | Main Index | Thread Index | Old Index