guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: iproute2: Update to 5.0.0.


From: guix-commits
Subject: 01/01: gnu: iproute2: Update to 5.0.0.
Date: Wed, 20 Mar 2019 12:14:12 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 549332027428d2ecffce33bf3af228026573546a
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Wed Mar 20 16:15:12 2019 +0100

    gnu: iproute2: Update to 5.0.0.
    
    * gnu/packages/linux.scm (iproute): Update to 5.0.0.
    [inputs, native-inputs]: Order alphabetically.
---
 gnu/packages/linux.scm | 18 +++++++++++-------
 1 file changed, 11 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 34af81b..311bc6f 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -1254,7 +1254,7 @@ that the Ethernet protocol is much simpler than the IP 
protocol.")
 (define-public iproute
   (package
     (name "iproute2")
-    (version "4.20.0")
+    (version "5.0.0")
     (source (origin
               (method url-fetch)
               (uri (string-append
@@ -1262,10 +1262,11 @@ that the Ethernet protocol is much simpler than the IP 
protocol.")
                     version ".tar.xz"))
               (sha256
                (base32
-                "1a7xyvqjxfnm7rk21amm0xgxa38clg7q7cmc4dmlg27q81mambf8"))))
+                "1fi03lb8dqr8hq633gcqsf6228vsvysxms075j1yyl4nlc17616z"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:tests? #f                                ; no test suite
+     `( ;; There is a test suite, but it wants network namespaces and sudo.
+       #:tests? #f
        #:make-flags (let ((out (assoc-ref %outputs "out")))
                       (list "DESTDIR="
                             (string-append "BASH_COMPDIR=" out
@@ -1285,12 +1286,15 @@ that the Ethernet protocol is much simpler than the IP 
protocol.")
                         (("^.*ARPDDIR.*$") ""))
                       #t)))))
     (inputs
-     `(("iptables" ,iptables)
-       ("db4" ,bdb)))
+     `(("db4" ,bdb)
+       ("iptables" ,iptables)))
     (native-inputs
-     `(("pkg-config" ,pkg-config)
+     `(("bison" ,bison)
        ("flex" ,flex)
-       ("bison" ,bison)))
+       ("pkg-config" ,pkg-config)))
+    ;; For tests.
+    ;; ("libmnl" ,libmnl)
+    ;; ("util-linux" ,util-linux)
     (home-page
      "https://wiki.linuxfoundation.org/networking/iproute2";)
     (synopsis



reply via email to

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