gnu: borg: Update to 1.1.3 [fixes CVE-2017-15914].

* gnu/packages/backup.scm (borg): Update to 1.1.3.
[arguments]: Skip ‘test_mount_hardlinks’ test.
This commit is contained in:
Tobias Geerinckx-Rice 2017-11-27 09:21:30 +01:00
parent 216614a4b3
commit 5f169014ec
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -466,13 +466,13 @@ (define-public libchop
(define-public borg (define-public borg
(package (package
(name "borg") (name "borg")
(version "1.1.2") (version "1.1.3")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "borgbackup" version)) (uri (pypi-uri "borgbackup" version))
(sha256 (sha256
(base32 (base32
"00jmbfysdpsb2vcckamvsxw5n8xqh4j67diam2p0lmqzsn92syq9")) "1rvn8b6clzd1r317r9jkvk34r31risi0dxfjc7jffhnwasck4anc"))
(modules '((guix build utils))) (modules '((guix build utils)))
(snippet (snippet
'(for-each '(for-each
@ -521,7 +521,8 @@ (define-public borg
"and not benchmark " "and not benchmark "
;; These tests assume the kernel supports FUSE. ;; These tests assume the kernel supports FUSE.
"and not test_fuse " "and not test_fuse "
"and not test_fuse_allow_damaged_files")))))) "and not test_fuse_allow_damaged_files "
"and not test_mount_hardlinks"))))))
(add-after 'install 'install-doc (add-after 'install 'install-doc
(lambda* (#:key inputs outputs #:allow-other-keys) (lambda* (#:key inputs outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out")) (let* ((out (assoc-ref outputs "out"))