me
/
guix
Archived
1
0
Fork 0

gnu: rdiff-backup: Update to 2.0.3.

* gnu/packages/backup.scm (rdiff-backup): Update to 2.0.3.
[native-inputs]: New field.
[inputs]: Use python3 and latest librsync.
[arguments]: Remove '#:python' argument.
[home-page]: Old url redirects, so use the new url.
master
Eric Bavier 2020-07-22 20:10:45 -05:00
parent 71c237bdc8
commit c4a9182e87
No known key found for this signature in database
GPG Key ID: FD73CAC719D32566
1 changed files with 11 additions and 10 deletions

View File

@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014, 2015 Eric Bavier <bavier@member.fsf.org> ;;; Copyright © 2014, 2015, 2020 Eric Bavier <bavier@posteo.net>
;;; Copyright © 2014 Ian Denhardt <ian@zenhack.net> ;;; Copyright © 2014 Ian Denhardt <ian@zenhack.net>
;;; Copyright © 2015, 2016, 2017 Leo Famulari <leo@famulari.name> ;;; Copyright © 2015, 2016, 2017 Leo Famulari <leo@famulari.name>
;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
@ -404,23 +404,24 @@ errors.")
(define-public rdiff-backup (define-public rdiff-backup
(package (package
(name "rdiff-backup") (name "rdiff-backup")
(version "1.2.8") (version "2.0.3")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (string-append "mirror://savannah/rdiff-backup/rdiff-backup-" (uri (string-append "https://github.com/rdiff-backup/rdiff-backup/releases/"
version ".tar.gz")) "download/v" version "/rdiff-backup-" version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"1nwmmh816f96h0ff1jxk95ad38ilbhbdl5dgibx1d4cl81dsi48d")))) "1qfmvwwb942srhg6gw77ncy4z5z54b4wfz8bpd5bpml8hp1d5qh4"))))
(build-system python-build-system) (build-system python-build-system)
(native-inputs
`(("python-setuptools-scm" ,python-setuptools-scm)))
(inputs (inputs
`(("python" ,python-2) `(("python" ,python)
("librsync" ,librsync-0.9))) ("librsync" ,librsync)))
(arguments (arguments
`(#:python ,python-2 `(#:tests? #f)) ; Tests require root/sudo
#:tests? #f)) (home-page "https://rdiff-backup.net/")
(home-page "https://www.nongnu.org/rdiff-backup/")
(synopsis "Local/remote mirroring+incremental backup") (synopsis "Local/remote mirroring+incremental backup")
(description (description
"Rdiff-backup backs up one directory to another, possibly over a network. "Rdiff-backup backs up one directory to another, possibly over a network.