gnu: unbound: Update to 1.17.1.
* gnu/packages/dns.scm (unbound): Update to 1.17.1. [arguments]: Don't explicitly return #t from phases.
This commit is contained in:
parent
f7c3a2a86e
commit
0393495c16
1 changed files with 4 additions and 6 deletions
|
@ -636,14 +636,14 @@ BIND and djbdns---whilst using relatively little memory.")
|
||||||
(define-public unbound
|
(define-public unbound
|
||||||
(package
|
(package
|
||||||
(name "unbound")
|
(name "unbound")
|
||||||
(version "1.17.0")
|
(version "1.17.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://www.unbound.net/downloads/unbound-"
|
(uri (string-append "https://www.unbound.net/downloads/unbound-"
|
||||||
version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0h8k5yh49vasyzwkm3n1xsidxr7xybqwkvg4cq6937qxi7brbg6w"))))
|
(base32 "1x55f5aqlzynpy24ryf1rsmdy8m8iyi19n7k03k889g1rk78ah7f"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(outputs '("out" "python"))
|
(outputs '("out" "python"))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
@ -678,8 +678,7 @@ BIND and djbdns---whilst using relatively little memory.")
|
||||||
(("^PYTHON_SITE_PKG=.*$")
|
(("^PYTHON_SITE_PKG=.*$")
|
||||||
(string-append
|
(string-append
|
||||||
"PYTHON_SITE_PKG="
|
"PYTHON_SITE_PKG="
|
||||||
pyout "/lib/python-" ver "/site-packages\n"))))
|
pyout "/lib/python-" ver "/site-packages\n"))))))
|
||||||
#t))
|
|
||||||
(add-before 'check 'fix-missing-nss-for-tests
|
(add-before 'check 'fix-missing-nss-for-tests
|
||||||
;; Unfortunately, the package's unittests involve some checks
|
;; Unfortunately, the package's unittests involve some checks
|
||||||
;; looking up protocols and services which are not provided
|
;; looking up protocols and services which are not provided
|
||||||
|
@ -780,8 +779,7 @@ struct servent *getservbyport(int port, const char *proto) {
|
||||||
;; The preload library only affects the unittests.
|
;; The preload library only affects the unittests.
|
||||||
(substitute* "Makefile"
|
(substitute* "Makefile"
|
||||||
(("./unittest")
|
(("./unittest")
|
||||||
"LD_PRELOAD=/tmp/nss_preload.so ./unittest")))
|
"LD_PRELOAD=/tmp/nss_preload.so ./unittest"))))))))
|
||||||
#t)))))
|
|
||||||
(home-page "https://www.unbound.net")
|
(home-page "https://www.unbound.net")
|
||||||
(synopsis "Validating, recursive, and caching DNS resolver")
|
(synopsis "Validating, recursive, and caching DNS resolver")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue