gnu: yadifa: Update to 2.5.3.
* gnu/packages/dns.scm (yadifa): Update to 2.5.3. [arguments]: Don't explicitly return #t from phases.master
parent
c6e99f78f0
commit
5ee4e91ada
|
@ -875,16 +875,16 @@ served by AS112. Stub and forward zones are supported.")
|
||||||
(define-public yadifa
|
(define-public yadifa
|
||||||
(package
|
(package
|
||||||
(name "yadifa")
|
(name "yadifa")
|
||||||
(version "2.5.1")
|
(version "2.5.3")
|
||||||
(source
|
(source
|
||||||
(let ((build "10306"))
|
(let ((build "10333"))
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri
|
(uri
|
||||||
(string-append "https://www.yadifa.eu/sites/default/files/releases/"
|
(string-append "https://www.yadifa.eu/sites/default/files/releases/"
|
||||||
"yadifa-" version "-" build ".tar.gz"))
|
"yadifa-" version "-" build ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "051h4pmh9llwj0w6h0v8fl2f146fb26cv3w5an9dmfh845sv6hzr")))))
|
(base32 "1mwy6sfnlaslx26f3kpj9alh8i8y8bf1nbnsdd5j04hjsbavd07p")))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("which" ,which)))
|
`(("which" ,which)))
|
||||||
|
@ -896,15 +896,13 @@ served by AS112. Stub and forward zones are supported.")
|
||||||
(add-before 'configure 'omit-example-configurations
|
(add-before 'configure 'omit-example-configurations
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "Makefile.in"
|
(substitute* "Makefile.in"
|
||||||
((" (etc|var)") ""))
|
((" (etc|var)") ""))))
|
||||||
#t))
|
|
||||||
(add-after 'configure 'omit-spurious-references
|
(add-after 'configure 'omit-spurious-references
|
||||||
(lambda _
|
(lambda _
|
||||||
;; The many Makefile.in grep this(!) to #define BUILD_OPTIONS.
|
;; The many Makefile.in grep this(!) to #define BUILD_OPTIONS.
|
||||||
(substitute* "config.log"
|
(substitute* "config.log"
|
||||||
(("(=/gnu/store/)[^-]*" _ match)
|
(("(=/gnu/store/)[^-]*" _ match)
|
||||||
(string-append match "...")))
|
(string-append match "..."))))))
|
||||||
#t)))
|
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
(list "--sysconfdir=/etc"
|
(list "--sysconfdir=/etc"
|
||||||
"--localstatedir=/var"
|
"--localstatedir=/var"
|
||||||
|
|
Reference in New Issue