guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: tor: Update to 0.4.3.5.


From: guix-commits
Subject: branch master updated: gnu: tor: Update to 0.4.3.5.
Date: Fri, 15 May 2020 11:50:04 -0400

This is an automated email from the git hooks/post-receive script.

nckx pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 2874040  gnu: tor: Update to 0.4.3.5.
2874040 is described below

commit 28740402b21f2aaef540df7e6ec8d8e22ae59495
Author: Tobias Geerinckx-Rice <address@hidden>
AuthorDate: Fri May 15 17:49:18 2020 +0200

    gnu: tor: Update to 0.4.3.5.
    
    * gnu/packages/tor.scm (tor): Update to 0.4.3.5.
    [arguments]: Enable compression features that aren't auto-detected.
    [native-inputs]: Use the default Python (3).
    [inputs]: Order alphabetically.
---
 gnu/packages/tor.scm | 16 ++++++++++------
 1 file changed, 10 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/tor.scm b/gnu/packages/tor.scm
index 4ec503d..2f2623b 100644
--- a/gnu/packages/tor.scm
+++ b/gnu/packages/tor.scm
@@ -51,24 +51,28 @@
 (define-public tor
   (package
     (name "tor")
-    (version "0.4.2.7")
+    (version "0.4.3.5")
     (source (origin
              (method url-fetch)
              (uri (string-append "https://dist.torproject.org/tor-";
                                  version ".tar.gz"))
              (sha256
               (base32
-               "0v82ngwwmmcb7i9563bgsmrjy6xp83xyhqhaljygd0pkvlsxi886"))))
+               "0s6qspi102drn1nk3gfxs51x992xarc44gkfsi8y3l48wr50wsk1"))))
     (build-system gnu-build-system)
+    (arguments
+     `(#:configure-flags
+       (list "--enable-lzma"
+             "--enable-zstd")))
     (native-inputs
      `(("pkg-config" ,pkg-config)
-       ("python" ,python-2)))           ; for tests
+       ("python" ,python)))             ; for tests
     (inputs
-     `(("zlib" ,zlib)
-       ("openssl" ,openssl)
-       ("libevent" ,libevent)
+     `(("libevent" ,libevent)
        ("libseccomp" ,libseccomp)
+       ("openssl" ,openssl)
        ("xz" ,xz)
+       ("zlib" ,zlib)
        ("zstd" ,zstd "lib")))
     (home-page "https://www.torproject.org/";)
     (synopsis "Anonymous network router to improve privacy on the Internet")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]