gnu: lftp: Update to 4.8.4.

* gnu/packages/ftp.scm (lftp): Update to 4.8.4.
[arguments]: End phases on #t.
This commit is contained in:
Marius Bakke 2018-08-09 17:25:48 +02:00
parent 16fcda9524
commit 70dcf9c9c3
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -46,7 +46,7 @@ (define-module (gnu packages ftp)
(define-public lftp (define-public lftp
(package (package
(name "lftp") (name "lftp")
(version "4.8.3") (version "4.8.4")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
;; See https://lftp.tech/get.html for mirrors. ;; See https://lftp.tech/get.html for mirrors.
@ -58,7 +58,7 @@ (define-public lftp
"ftp/lftp/lftp-" version ".tar.xz"))) "ftp/lftp/lftp-" version ".tar.xz")))
(sha256 (sha256
(base32 (base32
"12y77jlfs4x4zvcah92mw2h2sb4j0bvbaxkh3wwsm8gs392ywyny")))) "0qks22357xv9y6ripmf5j2n5svh8j5z0yniphfk89sjwkqg2gg2f"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(native-inputs (native-inputs
`(("pkg-config" ,pkg-config))) `(("pkg-config" ,pkg-config)))
@ -74,7 +74,8 @@ (define-public lftp
(lambda _ (lambda _
(substitute* "tests/Makefile" (substitute* "tests/Makefile"
(("(ftp-cls-l|ftp-list|http-get)\\$\\(EXEEXT\\)") "") (("(ftp-cls-l|ftp-list|http-get)\\$\\(EXEEXT\\)") "")
(("lftp-https-get ") ""))))) (("lftp-https-get ") ""))
#t)))
#:configure-flags #:configure-flags
(list (string-append "--with-readline=" (list (string-append "--with-readline="
(assoc-ref %build-inputs "readline"))))) (assoc-ref %build-inputs "readline")))))