mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: keepalived: Update to 2.0.4.
* gnu/packages/cluster.scm (keepalived): Update to 2.0.4. [arguments]: Remove ‘patch-configure’ phase (bug fixed in 2.0.3).
This commit is contained in:
parent
7cd2fa9525
commit
36de28ffdd
1 changed files with 3 additions and 9 deletions
|
@ -1,5 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2018 Sou Bunnbu <iyzsong@member.fsf.org>
|
;;; Copyright © 2018 Sou Bunnbu <iyzsong@member.fsf.org>
|
||||||
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -30,7 +31,7 @@ (define-module (gnu packages cluster)
|
||||||
(define-public keepalived
|
(define-public keepalived
|
||||||
(package
|
(package
|
||||||
(name "keepalived")
|
(name "keepalived")
|
||||||
(version "2.0.1")
|
(version "2.0.4")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
|
@ -38,18 +39,11 @@ (define-public keepalived
|
||||||
version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0hp8i56zkf0398bmpi32a85f05cv2fy9wizkdfbxk7gav4z6yx18"))))
|
"0qf46bfxv4w7qx7d73qq26pp72cvbyfjvna3hxn208vynvapalh0"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
'(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-before 'configure 'patch-configure
|
|
||||||
(lambda _
|
|
||||||
;; XXX: The 'configure' script doesn't handle '-L' flags in the
|
|
||||||
;; output of 'pkg-config'.
|
|
||||||
(substitute* "configure"
|
|
||||||
(("PKG_CONFIG --libs") "PKG_CONFIG --libs-only-l"))
|
|
||||||
#t))
|
|
||||||
(add-after 'build 'build-info
|
(add-after 'build 'build-info
|
||||||
(lambda _
|
(lambda _
|
||||||
(invoke "make" "-C" "doc" "texinfo")
|
(invoke "make" "-C" "doc" "texinfo")
|
||||||
|
|
Loading…
Reference in a new issue