summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Trygve Kalleberg <karltk@gentoo.org>2005-03-23 19:01:45 +0000
committerKarl Trygve Kalleberg <karltk@gentoo.org>2005-03-23 19:01:45 +0000
commitcb54ff77078f303f7678ce523f0fdd2b6fdf33f0 (patch)
treeb702654dcf32e0a64979eaca94bbabdc85ec3e2b /net-misc/zsync
parentFixup fix_libtool_files.sh running. (diff)
downloadgentoo-2-cb54ff77078f303f7678ce523f0fdd2b6fdf33f0.tar.gz
gentoo-2-cb54ff77078f303f7678ce523f0fdd2b6fdf33f0.tar.bz2
gentoo-2-cb54ff77078f303f7678ce523f0fdd2b6fdf33f0.zip
Initial import. Fixes #86406.
(Portage version: 2.0.51.19)
Diffstat (limited to 'net-misc/zsync')
-rw-r--r--net-misc/zsync/ChangeLog8
-rw-r--r--net-misc/zsync/Manifest2
-rw-r--r--net-misc/zsync/files/digest-zsync-0.3.21
-rw-r--r--net-misc/zsync/metadata.xml29
-rw-r--r--net-misc/zsync/zsync-0.3.2.ebuild18
5 files changed, 58 insertions, 0 deletions
diff --git a/net-misc/zsync/ChangeLog b/net-misc/zsync/ChangeLog
new file mode 100644
index 000000000000..ff77881b028e
--- /dev/null
+++ b/net-misc/zsync/ChangeLog
@@ -0,0 +1,8 @@
+# ChangeLog for net-misc/zsync
+# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/zsync/ChangeLog,v 1.1 2005/03/23 19:01:45 karltk Exp $
+
+ 23 Mar 2005; Karl Trygve Kalleberg <karltk@gentoo.org> :
+ Initial import. Ebuild submitted by Ricardo Correia <gentoo-bugs@wizy.org>.
+ Fixes #86406.
+
diff --git a/net-misc/zsync/Manifest b/net-misc/zsync/Manifest
new file mode 100644
index 000000000000..044257441635
--- /dev/null
+++ b/net-misc/zsync/Manifest
@@ -0,0 +1,2 @@
+MD5 24b7693c5d5d26202ea2a81a1cccface zsync-0.3.2.ebuild 470
+MD5 a07bcd0db30b90e6a36f72c8809f996e files/digest-zsync-0.3.2 63
diff --git a/net-misc/zsync/files/digest-zsync-0.3.2 b/net-misc/zsync/files/digest-zsync-0.3.2
new file mode 100644
index 000000000000..27b33694305f
--- /dev/null
+++ b/net-misc/zsync/files/digest-zsync-0.3.2
@@ -0,0 +1 @@
+MD5 0ee66f3a9800eab67fe9625b7aa3e40a zsync-0.3.2.tar.gz 207320
diff --git a/net-misc/zsync/metadata.xml b/net-misc/zsync/metadata.xml
new file mode 100644
index 000000000000..a55e2566a79c
--- /dev/null
+++ b/net-misc/zsync/metadata.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+
+<pkgmetadata>
+<herd>no-herd</herd>
+<maintainer>
+ <email>karltk@gentoo.org</email>
+ <description>Primary maitainer</description>
+</maintainer>
+
+<longdescription>
+From the zsync web page:
+
+"zsync is a file transfer program. It allows you to download a file from a
+remote web server, where you have a copy of an older version of the file on your
+computer already. zsync downloads only the new parts of the file. It uses the
+same algorithm as rsync.
+
+zsync does not require any special server software or a shell account on the
+remote system (rsync, in comparison, requires that you have an rsh or ssh
+account, or that the remote system runs rsyncd). Instead, it uses a control file
+-- a .zsync file -- that describes the file to be downloaded and enables zsync to
+work out which blocks it needs. This file can be created by the admin of the web
+server hosting the download, and placed alongside the file to download -- it is
+generated once, then any downloaders with zsync can use it. Alternatively,
+anyone can download the file, make a .zsync and provide it to other users (this
+is what I am doing for the moment)."
+</longdescription>
+</pkgmetadata>
diff --git a/net-misc/zsync/zsync-0.3.2.ebuild b/net-misc/zsync/zsync-0.3.2.ebuild
new file mode 100644
index 000000000000..1a46d7942af8
--- /dev/null
+++ b/net-misc/zsync/zsync-0.3.2.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/zsync/zsync-0.3.2.ebuild,v 1.1 2005/03/23 19:01:45 karltk Exp $
+
+DESCRIPTION="Partial/differential file download client over HTTP which uses the rsync algorithm"
+HOMEPAGE="http://zsync.moria.org.uk/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+LICENSE="Artistic-2"
+DEPEND="virtual/libc"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+src_install() {
+ dobin zsync zsyncmake
+ dodoc COPYING NEWS README
+ doman doc/zsync.1 doc/zsyncmake.1
+}