From: Eric Bavier <ericbavier@gmail.com>
To: Guix-devel@gnu.org
Subject: [PATCH 1/4] gnu: Add librsync.
Date: Sat, 24 May 2014 01:14:29 -0500 [thread overview]
Message-ID: <871tvjr9dm.fsf@member.fsf.org> (raw)
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: 0001-gnu-Add-librsync.patch --]
[-- Type: text/x-diff, Size: 2060 bytes --]
From 1eba3ffa9be4cf509691257b53c015a7798b0312 Mon Sep 17 00:00:00 2001
From: Eric Bavier <bavier@member.fsf.org>
Date: Tue, 20 May 2014 08:20:27 -0500
Subject: [PATCH 1/4] gnu: Add librsync.
* gnu/packages/rsync.scm (librsync): New variable.
---
gnu/packages/rsync.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/rsync.scm b/gnu/packages/rsync.scm
index c51d65c..a55febf 100644
--- a/gnu/packages/rsync.scm
+++ b/gnu/packages/rsync.scm
@@ -20,6 +20,7 @@
#:use-module (gnu packages)
#:use-module (gnu packages perl)
#:use-module (gnu packages acl)
+ #:use-module (gnu packages which)
#:use-module (guix licenses)
#:use-module (guix packages)
#:use-module (guix download)
@@ -49,3 +50,29 @@ by sending only the differences between the source files and the existing
files in the destination.")
(license gpl3+)
(home-page "http://rsync.samba.org/")))
+
+(define-public librsync
+ (package
+ (name "librsync")
+ (version "0.9.7")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://sourceforge/projects/librsync/librsync/"
+ version "/librsync-" version ".tar.gz"))
+ (sha256
+ (base32
+ "1mj1pj99mgf1a59q9f2mxjli2fzxpnf55233pc1klxk2arhf8cv6"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("which" ,which)
+ ("perl" ,perl)))
+ (arguments '(#:configure-flags '("--enable-shared")))
+ (home-page "http://librsync.sourceforge.net/")
+ (synopsis "Implementation of the rsync remote-delta algorithm")
+ (description
+ "Librsync is a free software library that implements the rsync
+remote-delta algorithm. This algorithm allows efficient remote updates of a
+file, without requiring the old and new versions to both be present at the
+sending end. The library uses a \"streaming\" design similar to that of zlib
+with the aim of allowing it to be embedded into many different applications.")
+ (license lgpl2.1+)))
--
1.7.9.5
[-- Attachment #2: Type: text/plain, Size: 17 bytes --]
--
Eric Bavier
next reply other threads:[~2014-05-24 6:11 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-24 6:14 Eric Bavier [this message]
2014-05-24 22:36 ` [PATCH 1/4] gnu: Add librsync Ludovic Courtès
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=871tvjr9dm.fsf@member.fsf.org \
--to=ericbavier@gmail.com \
--cc=Guix-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.