[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
11/12: gnu: ebtables: Update to 2.0.11.
From: |
guix-commits |
Subject: |
11/12: gnu: ebtables: Update to 2.0.11. |
Date: |
Mon, 17 Feb 2020 11:31:54 -0500 (EST) |
nckx pushed a commit to branch master
in repository guix.
commit b614a2239384c16111e0c03317c9fbeee5728cb2
Author: Tobias Geerinckx-Rice <address@hidden>
AuthorDate: Mon Feb 17 15:48:37 2020 +0100
gnu: ebtables: Update to 2.0.11.
* gnu/packages/linux.scm (ebtables): Update to 2.0.11.
[arguments]: Remove them all.
---
gnu/packages/linux.scm | 36 +++---------------------------------
1 file changed, 3 insertions(+), 33 deletions(-)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 1c36aef..a1920db 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -1843,46 +1843,16 @@ Both commands are targeted at system administrators.")
(define-public ebtables
(package
(name "ebtables")
- (version "2.0.10-4")
+ (version "2.0.11")
(source (origin
(method url-fetch)
(uri (string-append
- "mirror://netfilter.org/ebtables/ebtables-v"
+ "mirror://netfilter.org/ebtables/ebtables-"
version ".tar.gz"))
(sha256
(base32
- "0pa5ljlk970yfyhpf3iqwfpbc30j8mgn90fapw9cfz909x47nvyw"))))
+ "0apxgmkhsk3vxn9q3libxn3dgrdljrxyy4mli2gk49m7hi3na7xp"))))
(build-system gnu-build-system)
- (arguments
- '(#:tests? #f ; no test suite
- #:make-flags
- (let* ((out (assoc-ref %outputs "out"))
- (bin (string-append out "/sbin"))
- (lib (string-append out "/lib"))
- (man (string-append out "/share/man"))
- (iptables (assoc-ref %build-inputs "iptables"))
- (ethertypes (string-append iptables "/etc/ethertypes")))
- (list (string-append "LIBDIR=" lib)
- (string-append "MANDIR=" man)
- (string-append "BINDIR=" bin)
- (string-append "ETHERTYPESFILE=" ethertypes)
- ;; With the default CFLAGS, it falis with:
- ;; communication.c:259:58: error: variable ‘ret’ set but not
- ;; used [-Werror=unused-but-set-variable]
- "CFLAGS=-Wall"))
- #:phases
- (modify-phases %standard-phases
- (replace 'configure
- ;; no configure script
- (lambda _
- (substitute* "Makefile"
- ;; Remove user and group options from install commands,
- ;; otherwise it fails with: invalid user 'root'.
- (("-o root -g root") "")
- ;; Remove 'ethertypes' from the install target.
- (("install: .*")
- "install: $(MANDIR)/man8/ebtables.8 exec scripts\n"))
- #t)))))
(inputs
`(("perl" ,perl)
("iptables" ,iptables)))
- 06/12: gnu: sxiv: Update to 26., (continued)
- 06/12: gnu: sxiv: Update to 26., guix-commits, 2020/02/17
- 05/12: gnu: rsnapshot: Use HTTPS home page., guix-commits, 2020/02/17
- 02/12: gnu: xpdf: Update to 4.02., guix-commits, 2020/02/17
- 03/12: gnu: git: Update to 2.25.1., guix-commits, 2020/02/17
- 08/12: gnu: liblangtag: Don't use NAME in source URI., guix-commits, 2020/02/17
- 07/12: gnu: weechat: Update to 2.7., guix-commits, 2020/02/17
- 12/12: gnu: upx: Clean up., guix-commits, 2020/02/17
- 04/12: gnu: slib: Use HTTPS home page., guix-commits, 2020/02/17
- 10/12: gnu: haveged: Update to 1.9.8., guix-commits, 2020/02/17
- 09/12: gnu: liblangtag: Update to 0.6.3., guix-commits, 2020/02/17
- 11/12: gnu: ebtables: Update to 2.0.11.,
guix-commits <=