From c206f6dda5b85b0bcd4d9158a977bb2f9e87bf6d Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 4 Oct 2021 02:47:34 +0200 Subject: gnu: pv: Slightly expand description. * gnu/packages/pv.scm (pv)[description]: Use @acronym{} mark-up and mention the total data amount, progress bar, and other features from the man page. --- gnu/packages/pv.scm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'gnu/packages/pv.scm') diff --git a/gnu/packages/pv.scm b/gnu/packages/pv.scm index db6c3dd669..3a38dbf53f 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 +;;; Copyright © 2021 Tobias Geerinckx-Rice ;;; ;;; This file is part of GNU Guix. ;;; @@ -38,9 +39,10 @@ (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))) -- cgit v1.2.3 From ba8b59fc3ee9627f8f64d8ca26604199cda5dd28 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 4 Oct 2021 02:53:40 +0200 Subject: gnu: pv: Update to 1.6.20. * gnu/packages/pv.scm (pv): Update to 1.6.20. --- gnu/packages/pv.scm | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'gnu/packages/pv.scm') diff --git a/gnu/packages/pv.scm b/gnu/packages/pv.scm index 3a38dbf53f..97b3dcdadc 100644 --- a/gnu/packages/pv.scm +++ b/gnu/packages/pv.scm @@ -26,15 +26,14 @@ (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") -- cgit v1.2.3