Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/xdelta: ChangeLog xdelta-3.0v.ebuild
Date: Sun, 28 Jun 2009 17:49:43
Message-Id: E1MKyVY-0007jD-2p@stork.gentoo.org
1 patrick 09/06/28 17:49:40
2
3 Modified: ChangeLog
4 Added: xdelta-3.0v.ebuild
5 Log:
6 Bump to 3.0v (actually v2), small changes in emake call to fix tests failing #272775
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.40 dev-util/xdelta/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/xdelta/ChangeLog?rev=1.40&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/xdelta/ChangeLog?rev=1.40&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/xdelta/ChangeLog?r1=1.39&r2=1.40
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/xdelta/ChangeLog,v
19 retrieving revision 1.39
20 retrieving revision 1.40
21 diff -u -r1.39 -r1.40
22 --- ChangeLog 4 Sep 2008 19:27:45 -0000 1.39
23 +++ ChangeLog 28 Jun 2009 17:49:40 -0000 1.40
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-util/xdelta
26 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/xdelta/ChangeLog,v 1.39 2008/09/04 19:27:45 nyhm Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/xdelta/ChangeLog,v 1.40 2009/06/28 17:49:40 patrick Exp $
30 +
31 +*xdelta-3.0v (28 Jun 2009)
32 +
33 + 28 Jun 2009; Patrick Lauer <patrick@g.o> +xdelta-3.0v.ebuild:
34 + Bump to 3.0v (actually v2), small changes in emake call to fix tests
35 + failing #272775
36
37 *xdelta-1.1.4-r1 (04 Sep 2008)
38
39
40
41
42 1.1 dev-util/xdelta/xdelta-3.0v.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/xdelta/xdelta-3.0v.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/xdelta/xdelta-3.0v.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xdelta-3.0v.ebuild
48 ===================================================================
49 # Copyright 1999-2009 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-util/xdelta/xdelta-3.0v.ebuild,v 1.1 2009/06/28 17:49:40 patrick Exp $
52
53 inherit distutils
54
55 # there was a 3.0v2 release
56 MY_P=${PN}${PV}2
57
58 DESCRIPTION="a binary diff and differential compression tools. VCDIFF (RFC 3284) delta compression."
59 HOMEPAGE="http://xdelta.org"
60 SRC_URI="http://${PN}.googlecode.com/files/${MY_P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="3"
64 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
65 IUSE=""
66
67 RDEPEND="dev-lang/python"
68 DEPEND="${RDEPEND}"
69
70 # but the v2 doesn't show in the tarball. sigh!
71 S=${WORKDIR}/${PN}${PV}
72
73 DOCS="draft-korn-vcdiff.txt"
74
75 # made redundant
76 #pkg_setup() {
77 # if use alpha || use amd64 || use ia64 || use ppc64 || use sparc; then
78 # xdelta="xdelta3-64"
79 # else
80 # xdelta="xdelta3"
81 # fi
82 #}
83
84 src_compile() {
85 distutils_src_compile
86 emake all || die "emake all failed."
87 }
88
89 src_install() {
90 dobin xdelta3 || die "dobin xdelta failed."
91 distutils_src_install
92 }