[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/08: gnu: rsync: Remove 3.1.3.
From: |
guix-commits |
Subject: |
02/08: gnu: rsync: Remove 3.1.3. |
Date: |
Wed, 22 Dec 2021 21:15:17 -0500 (EST) |
mbakke pushed a commit to branch master
in repository guix.
commit c0c9912b44deb216b2dec99a3dfd44909f1c50c4
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Sat Dec 18 19:19:07 2021 +0100
gnu: rsync: Remove 3.1.3.
* gnu/packages/rsync.scm (rsync-next): Remove variable.
(rsync): Update to 3.2.3. While at it, remove input labels.
---
gnu/packages/rsync.scm | 43 ++++++-------------------------------------
1 file changed, 6 insertions(+), 37 deletions(-)
diff --git a/gnu/packages/rsync.scm b/gnu/packages/rsync.scm
index bce184d..13717f0 100644
--- a/gnu/packages/rsync.scm
+++ b/gnu/packages/rsync.scm
@@ -39,37 +39,6 @@
(define-public rsync
(package
(name "rsync")
- (version "3.1.3")
- (source (origin
- (method url-fetch)
- (uri (string-append "https://rsync.samba.org/ftp/rsync/src/rsync-"
- version ".tar.gz"))
- (sha256
- (base32
- "1h0011dj6jgqpgribir4anljjv7bbrdcs8g91pbsmzf5zr75bk2m"))))
- (build-system gnu-build-system)
- (arguments
- `(#:configure-flags
- ;; The bundled copies are preferred by default.
- (list "--without-included-zlib"
- "--without-included-popt")))
- (native-inputs
- (list perl))
- (inputs
- (list acl popt zlib))
- (synopsis "Remote (and local) file copying tool")
- (description
- "Rsync is a fast and versatile file copying tool. It can copy locally,
-to/from another host over any remote shell, or to/from a remote rsync daemon.
-Its delta-transfer algorithm reduces the amount of data sent over the network
-by sending only the differences between the source files and the existing
-files in the destination.")
- (license license:gpl3+)
- (home-page "https://rsync.samba.org/")))
-
-(define-public rsync-next
- (package
- (name "rsync")
(version "3.2.3")
(source (origin
(method url-fetch)
@@ -89,12 +58,12 @@ files in the destination.")
(native-inputs
(list perl))
(inputs
- `(("acl" ,acl)
- ("lz4" ,lz4)
- ("popt" ,popt)
- ("xxhash" ,xxhash)
- ("zlib" ,zlib)
- ("zstd:lib" ,zstd "lib")))
+ (list acl
+ lz4
+ popt
+ xxhash
+ zlib
+ `(,zstd "lib")))
(synopsis "Remote (and local) file copying tool")
(description
"Rsync is a fast and versatile file copying tool. It can copy locally,
- branch master updated (867c33d -> f37c999), guix-commits, 2021/12/22
- 02/08: gnu: rsync: Remove 3.1.3.,
guix-commits <=
- 03/08: gnu: gcl: Avoid referencing GCC from the top-level., guix-commits, 2021/12/22
- 04/08: gnu: seabios: Update to 1.15.0., guix-commits, 2021/12/22
- 07/08: gnu: qemu-minimal: Actually remove unnecessary native-inputs., guix-commits, 2021/12/22
- 08/08: gnu: libksba: Fix cross-compilation., guix-commits, 2021/12/22
- 01/08: chromium-extension: Avoid another usage of the store-mapped /tmp., guix-commits, 2021/12/22
- 06/08: gnu: seabios: Build vgabios targets., guix-commits, 2021/12/22
- 05/08: gnu: seabios: Encode version information in the binary., guix-commits, 2021/12/22