diff options
author | Zac Medico <zmedico@gentoo.org> | 2006-07-24 07:20:36 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2006-07-24 07:20:36 +0000 |
commit | 192b9f5324f53e1549c73a5aed655ef1abeb4bea (patch) | |
tree | 83bdde27a81263f6bf0911001fc22e3bdb5e33ed /app-arch/tarsync | |
parent | version bump (diff) | |
download | historical-192b9f5324f53e1549c73a5aed655ef1abeb4bea.tar.gz historical-192b9f5324f53e1549c73a5aed655ef1abeb4bea.tar.bz2 historical-192b9f5324f53e1549c73a5aed655ef1abeb4bea.zip |
Add the new 0.2.1 release and remove the outdated 0.2 release.
Package-Manager: portage-3991-svn
Diffstat (limited to 'app-arch/tarsync')
-rw-r--r-- | app-arch/tarsync/ChangeLog | 8 | ||||
-rw-r--r-- | app-arch/tarsync/files/digest-tarsync-0.2.1 | 3 | ||||
-rw-r--r-- | app-arch/tarsync/tarsync-0.2.1.ebuild | 27 |
3 files changed, 37 insertions, 1 deletions
diff --git a/app-arch/tarsync/ChangeLog b/app-arch/tarsync/ChangeLog index b4965e04b328..92b85f16ae8f 100644 --- a/app-arch/tarsync/ChangeLog +++ b/app-arch/tarsync/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-arch/tarsync # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/tarsync/ChangeLog,v 1.8 2006/07/24 03:22:54 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/tarsync/ChangeLog,v 1.9 2006/07/24 07:20:35 zmedico Exp $ + +*tarsync-0.2.1 (24 Jul 2006) + + 24 Jul 2006; Zac Medico <zmedico@gentoo.org> +tarsync-0.2.1.ebuild, + -files/bug_140593_strcmp.patch, -tarsync-0.2.ebuild, -tarsync-0.2-r1.ebuild: + Add the new 0.2.1 release and remove the outdated 0.2 release. *tarsync-0.2-r1 (24 Jul 2006) diff --git a/app-arch/tarsync/files/digest-tarsync-0.2.1 b/app-arch/tarsync/files/digest-tarsync-0.2.1 new file mode 100644 index 000000000000..6ffc1667c546 --- /dev/null +++ b/app-arch/tarsync/files/digest-tarsync-0.2.1 @@ -0,0 +1,3 @@ +MD5 f8e06b0f6665a244c8e16e85568609b6 tarsync-0.2.1.tar.bz2 13593 +RMD160 f4022308d12536a4df02b64d07818de7b1258efa tarsync-0.2.1.tar.bz2 13593 +SHA256 5cbfdcb637b899c29bfb74e97a09daff6173c45201840aa5ac251eb93aef1775 tarsync-0.2.1.tar.bz2 13593 diff --git a/app-arch/tarsync/tarsync-0.2.1.ebuild b/app-arch/tarsync/tarsync-0.2.1.ebuild new file mode 100644 index 000000000000..30bf3a866ba9 --- /dev/null +++ b/app-arch/tarsync/tarsync-0.2.1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/tarsync/tarsync-0.2.1.ebuild,v 1.1 2006/07/24 07:20:35 zmedico Exp $ + +DESCRIPTION="Delta compression suite for using/generating binary patches" +HOMEPAGE="http://gentooexperimental.org/~ferringb/tarsync/" +SRC_URI="http://gentooexperimental.org/~ferringb/${PN}/${P}.tar.bz2" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~hppa ~ppc ~x86" +IUSE="" + +S="${WORKDIR}/${PN}" + +DEPEND=">=dev-util/diffball-0.7" +RDEPEND="${DEPEND}" + +src_compile() { + cd "${S}" + emake || die "emake failed" +} + +src_install() { + cd ${S} + make DESTDIR="${D}" install || die "failed installing" +} |