guix-commits
[Top][All Lists]
Advanced

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

01/04: gnu: libnl: Update to 3.3.0.


From: Marius Bakke
Subject: 01/04: gnu: libnl: Update to 3.3.0.
Date: Tue, 6 Jun 2017 18:51:25 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit a2265ea316d50a7063f193daf83770222f8c4cd8
Author: Marius Bakke <address@hidden>
Date:   Wed Jun 7 00:20:21 2017 +0200

    gnu: libnl: Update to 3.3.0.
    
    Since version 3.2.5, signed tarballs are distributed via GitHub. See e.g.
    release announcements:
    https://lists.infradead.org/pipermail/libnl/2017-May/002313.html
    The home page is somewhat outdated, but still hosts mailing lists and git 
mirror.
    
    * gnu/packages/linux.scm (libnl): Update to 3.3.0.
    [source]: Switch to new release URL.
---
 gnu/packages/linux.scm | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index b869a45..217647e 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -1291,15 +1291,16 @@ transparently through a bridge.")
 (define-public libnl
   (package
     (name "libnl")
-    (version "3.2.25")
+    (version "3.3.0")
     (source (origin
               (method url-fetch)
               (uri (string-append
-                    "http://www.infradead.org/~tgr/libnl/files/libnl-";
-                    version ".tar.gz"))
+                    "https://github.com/thom311/libnl/releases/download/";
+                    "libnl" (string-join (string-split version #\.) "_")
+                    "/libnl-" version ".tar.gz"))
               (sha256
                (base32
-                "1icfrv8yihcb74as1gcgmp0wfpdq632q2zvbvqqvjms9cy87bswb"))))
+                "1r3lw3hjvqxi5zqyq2w1qadm3gisd9nlf71dkl4yplacmssnhm3h"))))
     (build-system gnu-build-system)
     (native-inputs `(("flex" ,flex) ("bison" ,bison)))
     (home-page "http://www.infradead.org/~tgr/libnl/";)



reply via email to

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