;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015 Claes Wallin ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages pv) #:use-module (guix licenses) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu)) (define-public pv (package (name "pv") (version "1.6.6") (source (origin (method url-fetch) (uri (string-append "https://www.ivarch.com/programs/sources/pv-" version ".tar.bz2")) (sha256 (base32 "1wbk14xh9rfypiwyy68ssl8dliyji30ly70qki1y2xx3ywszk3k0")))) (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 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.") (license artistic2.0))) committer
AgeCommit message (Expand)Author
2021-06-14gnu: tor: Update to 0.4.6.5....* gnu/packages/tor.scm (tor): Update to 0.4.6.5. [source]: Add a patch to fix building with GCC 7. * gnu/packages/patches/tor-fix-build-with-gcc-7.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. Tobias Geerinckx-Rice
2021-06-14gnu: tor: Update to 0.4.5.9 [security fixes]....This release fixes CVE-2021-34548, CVE-2021-34550, and TROVE-2021-004. * gnu/packages/tor.scm (tor): Update to 0.4.5.9. Tobias Geerinckx-Rice
2021-05-10gnu: tor: Update to 0.4.5.8....* gnu/packages/tor.scm (tor): Update to 0.4.5.8. Efraim Flashner
2021-03-16gnu: tor: Update to 0.4.5.7 [security fixes]....* gnu/packages/tor.scm (tor): Update to 0.4.5.7. Efraim Flashner
2021-03-14gnu: Update OnionShare to 2.3.1....* gnu/packages/tor.scm (onionshare-cli): New variable. (onionshare): Inherit from onionshare-cli. [arguments]: Add patch-tests and install-data phases. Adjust check phase for new tests. [inputs]: Remove python-pycryptodome, python-nautilus, python-sip, python-stem, and python-pyqt. Add onionshare-cli, python-shiboken-2, python-pyside-2, python-qrcode. [description]: Use new upstream description. Eric Bavier
2021-02-28gnu: privoxy: Update to 3.0.32 [security fixes]....Fixes OVE-20210203-0001, OVE-20210206-0001, OVE-20210207-0001, OVE-20210205-0001, and OVE-20210222-0001. * gnu/packages/tor.scm (privoxy): Update to 3.0.32. Kei Kebreau
2021-02-15gnu: tor: Update to 0.4.5.6....* gnu/packages/tor.scm (tor): Update to 0.4.5.6. Tobias Geerinckx-Rice
2021-02-04gnu: tor: Update to 0.4.4.7 [mitigates DoSes]....* gnu/packages/tor.scm (tor): Update to 0.4.4.7. [arguments]: Add a ‘skip-practracker’ phase. Tobias Geerinckx-Rice
2021-01-31gnu: privoxy: Update to 3.0.31 [fixes OVE-20210130-0001, OVE-20210128-0001]....* gnu/packages/tor.scm (privoxy): Update to 3.0.31. Tobias Geerinckx-Rice
2020-12-30gnu: onionshare: Replace pycrypto by pycryptodome....The later is maintained, unlike the former (unchanged since 2013). * gnu/packages/tor.scm (onionshare)[inputs]: Replace python-pycrypto by python-pycryptodome. Maxim Cournoyer