gnu: rsnapshot: Update to 1.4.3.

* gnu/packages/backup.scm (rsnapshot): Update to 1.4.3.
[arguments]: Disable broken test.
This commit is contained in:
Tobias Geerinckx-Rice 2020-02-12 01:29:12 +01:00
parent 330e2796be
commit c57c648bfd
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -423,7 +423,7 @@ (define-public rdiff-backup
(define-public rsnapshot
(package
(name "rsnapshot")
(version "1.4.2")
(version "1.4.3")
(source
(origin
(method url-fetch)
@ -431,8 +431,7 @@ (define-public rsnapshot
"https://github.com/rsnapshot/rsnapshot/releases/download/"
version "/rsnapshot-" version ".tar.gz"))
(sha256
(base32
"05jfy99a0xs6lvsjfp3wz21z0myqhmwl2grn3jr9clijbg282ah4"))))
(base32 "1lavqmmsf53pim0nvming7fkng6p0nk2a51k2c2jdq0l7snpl31b"))))
(build-system gnu-build-system)
(arguments
`(#:phases
@ -444,6 +443,10 @@ (define-public rsnapshot
"t/backup_exec/conf/backup_exec.conf")
(("/bin/true") (which "true"))
(("/bin/false") (which "false")))
;; Disable a test that tries to connect to localhost on port 22.
(delete-file "t/ssh_args/ssh_args.t.in")
(invoke "make" "test"))))))
(inputs
`(("perl" ,perl)