gnu: subversion: Update to 1.8.17.

* gnu/packages/version-control.scm (subversion): Update to 1.8.17.
This commit is contained in:
Efraim Flashner 2016-12-07 08:30:19 +02:00
parent f13f60cb26
commit 491f291892
No known key found for this signature in database
GPG Key ID: F4C1D3917EACEE93
1 changed files with 4 additions and 3 deletions

View File

@ -684,14 +684,14 @@ property manipulation.")
(define-public subversion (define-public subversion
(package (package
(name "subversion") (name "subversion")
(version "1.8.16") (version "1.8.17")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "https://archive.apache.org/dist/subversion/" (uri (string-append "https://archive.apache.org/dist/subversion/"
"subversion-" version ".tar.bz2")) "subversion-" version ".tar.bz2"))
(sha256 (sha256
(base32 (base32
"0imkxn25n6sbcgfldrx4z29npjprb1lxjm5fb89q4297161nx3zi")))) "1450fkj1jmxyphqn6cd95z1ykwsabajm9jw4i412qpwss8w9a4fy"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
'(#:phases '(#:phases
@ -705,7 +705,8 @@ property manipulation.")
;; nice if this fix ultimately made its way into libtool. ;; nice if this fix ultimately made its way into libtool.
(let ((coreutils (assoc-ref inputs "coreutils"))) (let ((coreutils (assoc-ref inputs "coreutils")))
(substitute* "libtool" (substitute* "libtool"
(("\\\\`ls") (string-append "\\`" coreutils "/bin/ls")))))) (("\\\\`ls") (string-append "\\`" coreutils "/bin/ls")))
#t)))
(add-after 'install 'install-perl-bindings (add-after 'install 'install-perl-bindings
(lambda* (#:key outputs #:allow-other-keys) (lambda* (#:key outputs #:allow-other-keys)
;; Follow the instructions from 'subversion/bindings/swig/INSTALL'. ;; Follow the instructions from 'subversion/bindings/swig/INSTALL'.