diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-01-25 22:07:13 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-01-25 22:07:13 -0500 |
commit | 1a5302435ff0d2822b823f5a6fe01faa7a85c629 (patch) | |
tree | ac7810c88b560532f22d2bab2e59609cd7305c21 /gnu/packages/pv.scm | |
parent | 3ff2ac4980dacf10087e4b42bd9fbc490591900c (diff) | |
parent | 070b8a893febd6e7d8b2b7c8c4dcebacf7845aa9 (diff) | |
download | guix-1a5302435ff0d2822b823f5a6fe01faa7a85c629.tar.gz |
Merge branch 'master' into staging.
With "conflicts" solved (all in favor of master except git) in: gnu/local.mk gnu/packages/databases.scm gnu/packages/glib.scm gnu/packages/gnome.scm gnu/packages/gnupg.scm gnu/packages/gnuzilla.scm gnu/packages/graphics.scm gnu/packages/gstreamer.scm gnu/packages/gtk.scm gnu/packages/linux.scm gnu/packages/machine-learning.scm gnu/packages/networking.scm gnu/packages/polkit.scm gnu/packages/pulseaudio.scm gnu/packages/rpc.scm gnu/packages/rust.scm gnu/packages/version-control.scm gnu/packages/w3m.scm
Diffstat (limited to 'gnu/packages/pv.scm')
-rw-r--r-- | gnu/packages/pv.scm | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/gnu/packages/pv.scm b/gnu/packages/pv.scm index db6c3dd669..97b3dcdadc 100644 --- a/gnu/packages/pv.scm +++ b/gnu/packages/pv.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015 Claes Wallin <claes.wallin@greatsinodevelopment.com> +;;; Copyright © 2021 Tobias Geerinckx-Rice <me@tobias.gr> ;;; ;;; This file is part of GNU Guix. ;;; @@ -25,22 +26,22 @@ (define-public pv (package (name "pv") - (version "1.6.6") + (version "1.6.20") (source (origin - (method url-fetch) - (uri (string-append "https://www.ivarch.com/programs/sources/pv-" - version ".tar.bz2")) - (sha256 - (base32 - "1wbk14xh9rfypiwyy68ssl8dliyji30ly70qki1y2xx3ywszk3k0")))) + (method url-fetch) + (uri (string-append "https://www.ivarch.com/programs/sources/pv-" + version ".tar.bz2")) + (sha256 + (base32 "00y6zla8h653sn4axgqz7rr0x79vfwl62a7gn6lzn607zwg9acg8")))) (build-system gnu-build-system) (home-page "https://www.ivarch.com/programs/pv.shtml") (synopsis "Pipeline progress indicator") (description - "pv (Pipe Viewer) is a terminal-based tool for monitoring the progress + "@acronym{pv, Pipe Viewer} is a terminal 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 quickly data is -passing through, how long it has taken, how near to completion it is, and an -estimate of how long it will be until completion.") +between two processes. It gives a visual indication of how quickly data is +passing through, how much has been transferred and how near to completion it is +(with a progress bar), how long it has taken, and an estimate of the remaining +time before completion.") (license artistic2.0))) |