gnu: iproute2: Update to 5.0.0.

* gnu/packages/linux.scm (iproute): Update to 5.0.0.
[inputs, native-inputs]: Order alphabetically.
This commit is contained in:
Tobias Geerinckx-Rice 2019-03-20 16:15:12 +01:00
parent af184b68e7
commit 5493320274
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -1254,7 +1254,7 @@ (define-public ebtables
(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 @@ (define-public iproute
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 @@ (define-public iproute
(("^.*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