Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-p2p/ctorrent: ChangeLog ctorrent-3.3.2-r2.ebuild
Date: Sun, 16 Jan 2011 01:15:58
Message-Id: 20110116011549.8A61720054@flycatcher.gentoo.org
1 vapier 11/01/16 01:15:49
2
3 Modified: ChangeLog
4 Added: ctorrent-3.3.2-r2.ebuild
5 Log:
6 Update to EAPI 2 and fix parsing of torrents with negative ints.
7
8 (Portage version: 2.2.0_alpha13/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.51 net-p2p/ctorrent/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/ctorrent/ChangeLog?rev=1.51&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/ctorrent/ChangeLog?rev=1.51&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/ctorrent/ChangeLog?r1=1.50&r2=1.51
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-p2p/ctorrent/ChangeLog,v
20 retrieving revision 1.50
21 retrieving revision 1.51
22 diff -u -r1.50 -r1.51
23 --- ChangeLog 19 Sep 2010 17:55:11 -0000 1.50
24 +++ ChangeLog 16 Jan 2011 01:15:49 -0000 1.51
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-p2p/ctorrent
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/ctorrent/ChangeLog,v 1.50 2010/09/19 17:55:11 armin76 Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/ctorrent/ChangeLog,v 1.51 2011/01/16 01:15:49 vapier Exp $
31 +
32 +*ctorrent-3.3.2-r2 (16 Jan 2011)
33 +
34 + 16 Jan 2011; Mike Frysinger <vapier@g.o> +ctorrent-3.3.2-r2.ebuild,
35 + +files/ctorrent-3.3.2-negative-ints.patch:
36 + Update to EAPI 2 and fix parsing of torrents with negative ints.
37
38 19 Sep 2010; Raúl Porcel <armin76@g.o> ctorrent-3.3.2-r1.ebuild:
39 arm/s390/sh stable wrt #266953
40
41
42
43 1.1 net-p2p/ctorrent/ctorrent-3.3.2-r2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/ctorrent/ctorrent-3.3.2-r2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/ctorrent/ctorrent-3.3.2-r2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: ctorrent-3.3.2-r2.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-p2p/ctorrent/ctorrent-3.3.2-r2.ebuild,v 1.1 2011/01/16 01:15:49 vapier Exp $
53
54 EAPI="2"
55
56 inherit eutils
57
58 MY_P="${PN}-dnh${PV}"
59
60 DESCRIPTION="Enhanced CTorrent is a BitTorrent console client written in C and C++"
61 HOMEPAGE="http://www.rahul.net/dholmes/ctorrent/"
62 SRC_URI="mirror://sourceforge/dtorrent/${MY_P}.tar.gz"
63
64 LICENSE="GPL-2"
65 SLOT="0"
66 KEYWORDS="~amd64 ~arm ~ppc ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
67 IUSE=""
68
69 S=${WORKDIR}/${MY_P}
70
71 DEPEND="dev-libs/openssl"
72
73 src_prepare() {
74 epatch "${FILESDIR}"/${PN}-CVE-2009-1759.patch
75 epatch "${FILESDIR}"/${P}-negative-ints.patch
76 }
77
78 src_install() {
79 emake DESTDIR="${D}" install || die
80 dodoc AUTHORS ChangeLog README-DNH.TXT README NEWS
81 }