[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: rdiff-backup: Update to 2.0.3.
From: |
guix-commits |
Subject: |
branch master updated: gnu: rdiff-backup: Update to 2.0.3. |
Date: |
Wed, 22 Jul 2020 21:31:47 -0400 |
This is an automated email from the git hooks/post-receive script.
bavier pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new c4a9182 gnu: rdiff-backup: Update to 2.0.3.
c4a9182 is described below
commit c4a9182e87c11121383a1828dbc68a81f0653793
Author: Eric Bavier <bavier@member.fsf.org>
AuthorDate: Wed Jul 22 20:10:45 2020 -0500
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.
---
gnu/packages/backup.scm | 21 +++++++++++----------
1 file changed, 11 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm
index 0d82a18..7a1fd14 100644
--- a/gnu/packages/backup.scm
+++ b/gnu/packages/backup.scm
@@ -1,5 +1,5 @@
;;; 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 © 2015, 2016, 2017 Leo Famulari <leo@famulari.name>
;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
@@ -404,23 +404,24 @@ errors.")
(define-public rdiff-backup
(package
(name "rdiff-backup")
- (version "1.2.8")
+ (version "2.0.3")
(source
(origin
(method url-fetch)
- (uri (string-append "mirror://savannah/rdiff-backup/rdiff-backup-"
- version ".tar.gz"))
+ (uri (string-append
"https://github.com/rdiff-backup/rdiff-backup/releases/"
+ "download/v" version "/rdiff-backup-" version
".tar.gz"))
(sha256
(base32
- "1nwmmh816f96h0ff1jxk95ad38ilbhbdl5dgibx1d4cl81dsi48d"))))
+ "1qfmvwwb942srhg6gw77ncy4z5z54b4wfz8bpd5bpml8hp1d5qh4"))))
(build-system python-build-system)
+ (native-inputs
+ `(("python-setuptools-scm" ,python-setuptools-scm)))
(inputs
- `(("python" ,python-2)
- ("librsync" ,librsync-0.9)))
+ `(("python" ,python)
+ ("librsync" ,librsync)))
(arguments
- `(#:python ,python-2
- #:tests? #f))
- (home-page "https://www.nongnu.org/rdiff-backup/")
+ `(#:tests? #f)) ; Tests require root/sudo
+ (home-page "https://rdiff-backup.net/")
(synopsis "Local/remote mirroring+incremental backup")
(description
"Rdiff-backup backs up one directory to another, possibly over a network.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: rdiff-backup: Update to 2.0.3.,
guix-commits <=