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.master
parent
a89d65eec1
commit
c0c9912b44
|
@ -37,37 +37,6 @@
|
||||||
#:use-module (guix build-system gnu))
|
#:use-module (guix build-system gnu))
|
||||||
|
|
||||||
(define-public rsync
|
(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
|
(package
|
||||||
(name "rsync")
|
(name "rsync")
|
||||||
(version "3.2.3")
|
(version "3.2.3")
|
||||||
|
@ -89,12 +58,12 @@ files in the destination.")
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list perl))
|
(list perl))
|
||||||
(inputs
|
(inputs
|
||||||
`(("acl" ,acl)
|
(list acl
|
||||||
("lz4" ,lz4)
|
lz4
|
||||||
("popt" ,popt)
|
popt
|
||||||
("xxhash" ,xxhash)
|
xxhash
|
||||||
("zlib" ,zlib)
|
zlib
|
||||||
("zstd:lib" ,zstd "lib")))
|
`(,zstd "lib")))
|
||||||
(synopsis "Remote (and local) file copying tool")
|
(synopsis "Remote (and local) file copying tool")
|
||||||
(description
|
(description
|
||||||
"Rsync is a fast and versatile file copying tool. It can copy locally,
|
"Rsync is a fast and versatile file copying tool. It can copy locally,
|
||||||
|
|
Reference in New Issue