From fbb0164a5f7087a81ef5f79a4134432969f926cf Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 1 Mar 2018 16:30:40 +0100 Subject: gnu: privoxy: Update phase style. * gnu/packages/tor.scm (privoxy)[arguments]: Substitute INVOKE for SYSTEM* and end phase with #t. --- gnu/packages/tor.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gnu/packages/tor.scm') diff --git a/gnu/packages/tor.scm b/gnu/packages/tor.scm index 4a39100511..f598672d91 100644 --- a/gnu/packages/tor.scm +++ b/gnu/packages/tor.scm @@ -146,7 +146,8 @@ rejects UDP traffic from the application you're using.") (lambda _ ;; Unfortunately, this is not a tarball produced by ;; "make dist". - (zero? (system* "autoreconf" "-vfi"))))) + (invoke "autoreconf" "-vfi") + #t))) #:tests? #f)) (inputs `(("w3m" ,w3m) -- cgit v1.2.3 From 68e7632db052105b70704cd2c1cc42a568e9bf4a Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 1 Mar 2018 16:31:06 +0100 Subject: gnu: onionshare: Update phase style. * gnu/packages/tor.scm (onionshare)[arguments]: Substitute INVOKE for SYSTEM* and end phase with #t. --- gnu/packages/tor.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'gnu/packages/tor.scm') diff --git a/gnu/packages/tor.scm b/gnu/packages/tor.scm index f598672d91..50295da5dc 100644 --- a/gnu/packages/tor.scm +++ b/gnu/packages/tor.scm @@ -231,7 +231,9 @@ networks.") ;; After all the patching we run the tests after installing. ;; This is also a known issue: ;; https://github.com/micahflee/onionshare/issues/284 - (lambda _ (zero? (system* "nosetests" "test"))))))) + (lambda _ + (invoke "nosetests" "test") + #t))))) (native-inputs `(("python-nose" ,python-nose))) (inputs -- cgit v1.2.3 From c94752ad22da4f90e16bc2402751bcc6bb6fd79a Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 3 Mar 2018 21:01:20 +0100 Subject: gnu: tor: Update to 0.3.2.10 [security fixes]. This release fixes TROVE-2018-001 (also tracked as CVE-2018-0490), TROVE-2018-002 (CVE-2018-049), and TROVEs-2018-00{3,4} as well. * gnu/packages/tor.scm (tor): Update to 0.3.2.10. --- gnu/packages/tor.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/tor.scm') diff --git a/gnu/packages/tor.scm b/gnu/packages/tor.scm index 50295da5dc..2d685fc7d5 100644 --- a/gnu/packages/tor.scm +++ b/gnu/packages/tor.scm @@ -47,14 +47,14 @@ (define-public tor (package (name "tor") - (version "0.3.2.9") + (version "0.3.2.10") (source (origin (method url-fetch) (uri (string-append "https://dist.torproject.org/tor-" version ".tar.gz")) (sha256 (base32 - "03qn55c969zynnx71r82iaqnadpzq0qclq0zmjhb3n4qma8pnnj3")))) + "1vnb2wkcmm8rnz0fqi3k7arl60mpycs8rjn8hvbgv56g3p1pgpv0")))) (build-system gnu-build-system) (arguments `(#:configure-flags (list "--enable-gcc-hardening" -- cgit v1.2.3