From 5f169014ecc9647cb17ee6f23b9c84fc32f1c3d0 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 27 Nov 2017 09:21:30 +0100 Subject: gnu: borg: Update to 1.1.3 [fixes CVE-2017-15914]. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/backup.scm (borg): Update to 1.1.3. [arguments]: Skip ‘test_mount_hardlinks’ test. --- gnu/packages/backup.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'gnu/packages/backup.scm') diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm index c83809cdf2..b1c5d4b3f8 100644 --- a/gnu/packages/backup.scm +++ b/gnu/packages/backup.scm @@ -466,13 +466,13 @@ detection, and lossless compression.") (define-public borg (package (name "borg") - (version "1.1.2") + (version "1.1.3") (source (origin (method url-fetch) (uri (pypi-uri "borgbackup" version)) (sha256 (base32 - "00jmbfysdpsb2vcckamvsxw5n8xqh4j67diam2p0lmqzsn92syq9")) + "1rvn8b6clzd1r317r9jkvk34r31risi0dxfjc7jffhnwasck4anc")) (modules '((guix build utils))) (snippet '(for-each @@ -521,7 +521,8 @@ detection, and lossless compression.") "and not benchmark " ;; These tests assume the kernel supports 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 (lambda* (#:key inputs outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) -- cgit v1.2.3 From 18533bcf2de0d4e8774c90f8f737ca627a18f91e Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 27 Nov 2017 07:57:35 +0100 Subject: gnu: borg: Use new borgbackup.org home page. * gnu/packages/backup.scm (borg)[home-page]: Update. --- gnu/packages/backup.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gnu/packages/backup.scm') diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm index b1c5d4b3f8..f021aa83d8 100644 --- a/gnu/packages/backup.scm +++ b/gnu/packages/backup.scm @@ -560,7 +560,7 @@ provide an efficient and secure way to backup data. The data deduplication technique used makes Borg suitable for daily backups since only changes are stored. The authenticated encryption technique makes it suitable for backups to not fully trusted targets. Borg is a fork of Attic.") - (home-page "https://borgbackup.github.io/borgbackup/") + (home-page "https://www.borgbackup.org/") (license license:bsd-3))) (define-public attic -- cgit v1.2.3