6 Commits
15 changed files with 24 additions and 11 deletions
+1
View File
@@ -0,0 +1 @@
github: a-j-wood
+2
View File
@@ -261,5 +261,7 @@ Credit is also due to:
Johannes Gerer <http://johannesgerer.com>
- suggested that "-B" should enable "-C"
Sam James
- provided fix for number.c build issue caused by missing stddef.h
-----------------------------------------------------------------------------
+3
View File
@@ -1,3 +1,6 @@
1.6.20 - 12 September 2021
- fix: add missing stddef.h include to number.c (Sam James)
1.6.19 - 5 September 2021
- fix: starting pv in the background no longer immediately stops unless
the transfer is to/from the terminal (Andriy Gapon, Jonathan Elchison)
+2
View File
@@ -50,6 +50,8 @@ Things still to do:
- option to show speed gauge (% max speed) if progress not known (Ryan Cooley - Jun 2019)
- look at
https://www.reddit.com/r/unix/comments/6gxduc/how_is_gnu_yes_so_fast/diua761/
- option to show multiple files with individual sizes and a cumulative
total e.g. --watchfile [file] --size [size] (Zach Riggle)
- add development support for http://clang-analyzer.llvm.org/
- stats for avg/min/max/stddev throughput (Venky.N.Iyer)
+1 -1
View File
@@ -1 +1 @@
1.6.19
1.6.20
+1 -1
View File
@@ -1,7 +1,7 @@
Begin3
Title: @PACKAGE@
Version: @VERSION@
Entered-date: 05SEP21
Entered-date: 12SEP21
Description: A tool for monitoring the progress of data through a
pipeline. It can be inserted into any normal pipeline
between two processes to give a visual indication of how
+3
View File
@@ -46,6 +46,9 @@ make test
%doc README doc/NEWS doc/TODO doc/COPYING
%changelog
* Sun Sep 12 2021 Andrew Wood <andrew.wood@ivarch.com> 1.6.20-1
- fix: add missing stddef.h include to number.c (Sam James)
* Sun Sep 5 2021 Andrew Wood <andrew.wood@ivarch.com> 1.6.19-1
- fix: starting pv in the background no longer immediately stops unless
- the transfer is to/from the terminal (Andriy Gapon, Jonathan Elchison)
+1 -1
View File
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-09-05 19:25+0100\n"
"POT-Creation-Date: 2021-09-12 17:13+0100\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Date: 1999-06-01 15:18:29+0100\n"
"From: Andrew Wood <ivarch@ubik>\n"
+1 -1
View File
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-09-05 19:25+0100\n"
"POT-Creation-Date: 2021-09-12 17:13+0100\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Date: 1999-06-01 15:18:29+0100\n"
"From: Andrew Wood <ivarch@ubik>\n"
+1 -1
View File
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-09-05 19:25+0100\n"
"POT-Creation-Date: 2021-09-12 17:13+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+1 -1
View File
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-09-05 19:25+0100\n"
"POT-Creation-Date: 2021-09-12 17:13+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+1 -1
View File
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-09-05 19:25+0100\n"
"POT-Creation-Date: 2021-09-12 17:13+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
+2 -2
View File
@@ -269,8 +269,8 @@ static void pv__format_init(pvstate_t state)
}
formatstr =
state->format_string ? state->format_string : state->
default_format;
state->format_string ? state->
format_string : state->default_format;
state->components_used = 0;
+2 -2
View File
@@ -533,8 +533,8 @@ int pv_watchpid_loop(pvstate_t state)
* it's not present.
*/
original_format_string =
state->format_string ? state->format_string : state->
default_format;
state->format_string ? state->
format_string : state->default_format;
if (NULL == strstr(original_format_string, "%N")) {
#ifdef HAVE_SNPRINTF
snprintf(new_format_string, sizeof(new_format_string) - 1,
+2
View File
@@ -2,6 +2,8 @@
* Functions for converting strings to numbers.
*/
#include <stddef.h>
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif