diff options
author | Brian Harring <ferringb@gentoo.org> | 2005-05-24 12:43:44 +0000 |
---|---|---|
committer | Brian Harring <ferringb@gentoo.org> | 2005-05-24 12:43:44 +0000 |
commit | c01b93ac6d17a31cb9a54888f2dc031d40fe0e03 (patch) | |
tree | 96c88462b6e198c60257b59a8f654e8221da83b1 /app-arch/tarsync | |
parent | bug 92224 and optional tarsync support (diff) | |
download | gentoo-2-c01b93ac6d17a31cb9a54888f2dc031d40fe0e03.tar.gz gentoo-2-c01b93ac6d17a31cb9a54888f2dc031d40fe0e03.tar.bz2 gentoo-2-c01b93ac6d17a31cb9a54888f2dc031d40fe0e03.zip |
Initial import. used for syncing a directory against a tarball, including doing deletions.
(Portage version: 1.586-cvs)
Diffstat (limited to 'app-arch/tarsync')
-rw-r--r-- | app-arch/tarsync/ChangeLog | 9 | ||||
-rw-r--r-- | app-arch/tarsync/Manifest | 2 | ||||
-rw-r--r-- | app-arch/tarsync/files/digest-tarsync-0.1 | 1 | ||||
-rw-r--r-- | app-arch/tarsync/metadata.xml | 9 | ||||
-rw-r--r-- | app-arch/tarsync/tarsync-0.1.ebuild | 26 |
5 files changed, 47 insertions, 0 deletions
diff --git a/app-arch/tarsync/ChangeLog b/app-arch/tarsync/ChangeLog new file mode 100644 index 000000000000..e94860b46514 --- /dev/null +++ b/app-arch/tarsync/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for app-portage/emerge-delta-webrsync +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/tarsync/ChangeLog,v 1.1 2005/05/24 12:43:44 ferringb Exp $ + +*tarsync-0.1: May 24 2005 + + 24 May 2005; Brian Harring <ferringb@gentoo.org> tarsync-0.1.ebuild: + Initial import. Used for sync'ing a directory against a tarball, _including_ + doing deletions (tar lacks the latter). diff --git a/app-arch/tarsync/Manifest b/app-arch/tarsync/Manifest new file mode 100644 index 000000000000..bbd5c7ef6fc4 --- /dev/null +++ b/app-arch/tarsync/Manifest @@ -0,0 +1,2 @@ +MD5 d00c028f4139933f825d69f08e8dc278 tarsync-0.1.ebuild 617 +MD5 d6de84394cbec4ea28a448cbf0983596 files/digest-tarsync-0.1 63 diff --git a/app-arch/tarsync/files/digest-tarsync-0.1 b/app-arch/tarsync/files/digest-tarsync-0.1 new file mode 100644 index 000000000000..10fe4f11aa39 --- /dev/null +++ b/app-arch/tarsync/files/digest-tarsync-0.1 @@ -0,0 +1 @@ +MD5 3319960db5f248f03071fac89cd9d8ba tarsync-0.1.tar.bz2 18884 diff --git a/app-arch/tarsync/metadata.xml b/app-arch/tarsync/metadata.xml new file mode 100644 index 000000000000..ca27256a7981 --- /dev/null +++ b/app-arch/tarsync/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>None</herd> +<maintainer> + <email>ferringb@gentoo.org</email> +<description>Author/maintainer</description> +</maintainer> +</pkgmetadata> diff --git a/app-arch/tarsync/tarsync-0.1.ebuild b/app-arch/tarsync/tarsync-0.1.ebuild new file mode 100644 index 000000000000..654372f432fb --- /dev/null +++ b/app-arch/tarsync/tarsync-0.1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/tarsync/tarsync-0.1.ebuild,v 1.1 2005/05/24 12:43:44 ferringb Exp $ + + +DESCRIPTION="Delta compression suite for using/generating binary patches" +HOMEPAGE="http://dev.gentoo.org/~ferringb/" +SRC_URI="http://dev.gentoo.org/~ferringb/${P}.tar.bz2" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" +S="${WORKDIR}/${PN}" + +DEPEND=">=sys-libs/zlib-1.1.4 + >=app-arch/bzip2-1.0.2" + +src_compile() { + emake tarsync || die "emake failed" +} + +src_install() { + cd ${S} + einstall || die + +} |