Gentoo Archives: gentoo-commits

From: "Stanislav Ochotnicky (sochotnicky)" <sochotnicky@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-p2p/rtorrent: ChangeLog rtorrent-0.9.1.ebuild rtorrent-0.9.0.ebuild
Date: Sun, 08 Apr 2012 18:21:59
Message-Id: 20120408182145.55CE82004B@flycatcher.gentoo.org
1 sochotnicky 12/04/08 18:21:45
2
3 Modified: ChangeLog
4 Added: rtorrent-0.9.1.ebuild
5 Removed: rtorrent-0.9.0.ebuild
6 Log:
7 Version bump (#411041), drop upstreamed patches and support for color. Too
8 much work to keep working and delays updates.
9
10 (Portage version: 2.1.10.49/cvs/Linux x86_64)
11
12 Revision Changes Path
13 1.174 net-p2p/rtorrent/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/rtorrent/ChangeLog?rev=1.174&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/rtorrent/ChangeLog?rev=1.174&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/rtorrent/ChangeLog?r1=1.173&r2=1.174
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v
22 retrieving revision 1.173
23 retrieving revision 1.174
24 diff -u -r1.173 -r1.174
25 --- ChangeLog 9 Mar 2012 00:15:08 -0000 1.173
26 +++ ChangeLog 8 Apr 2012 18:21:45 -0000 1.174
27 @@ -1,6 +1,15 @@
28 # ChangeLog for net-p2p/rtorrent
29 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.173 2012/03/09 00:15:08 sochotnicky Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.174 2012/04/08 18:21:45 sochotnicky Exp $
32 +
33 +*rtorrent-0.9.1 (08 Apr 2012)
34 +
35 + 08 Apr 2012; Stanislav Ochotnicky <sochotnicky@g.o>
36 + -rtorrent-0.9.0.ebuild, -files/rtorrent-0.9.0-canvas-fix.patch,
37 + -files/rtorrent-0.9.0-clang.patch, -files/rtorrent-0.9.0-gold.patch,
38 + +rtorrent-0.9.1.ebuild, +files/rtorrent-0.9.1-ncurses.patch:
39 + Version bump (#411041), drop upstreamed patches and support for color. Too
40 + much work to keep working and delays updates.
41
42 09 Mar 2012; Stanislav Ochotnicky <sochotnicky@g.o>
43 rtorrent-0.9.0.ebuild, +files/rtorrent-0.9.0-clang.patch:
44
45
46
47 1.1 net-p2p/rtorrent/rtorrent-0.9.1.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/rtorrent/rtorrent-0.9.1.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/rtorrent/rtorrent-0.9.1.ebuild?rev=1.1&content-type=text/plain
51
52 Index: rtorrent-0.9.1.ebuild
53 ===================================================================
54 # Copyright 1999-2012 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.9.1.ebuild,v 1.1 2012/04/08 18:21:45 sochotnicky Exp $
57
58 EAPI=2
59
60 inherit eutils
61
62 DESCRIPTION="BitTorrent Client using libtorrent"
63 HOMEPAGE="http://libtorrent.rakshasa.no/"
64 SRC_URI="http://libtorrent.rakshasa.no/downloads/${P}.tar.gz"
65
66 LICENSE="GPL-2"
67 SLOT="0"
68 KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
69 IUSE="daemon debug ipv6 test xmlrpc"
70
71 COMMON_DEPEND=">=net-libs/libtorrent-0.13.${PV##*.}
72 >=dev-libs/libsigc++-2.2.2:2
73 >=net-misc/curl-7.19.1
74 sys-libs/ncurses
75 xmlrpc? ( dev-libs/xmlrpc-c )"
76 RDEPEND="${COMMON_DEPEND}
77 daemon? ( app-misc/screen )"
78 DEPEND="${COMMON_DEPEND}
79 test? ( dev-util/cppunit )
80 dev-util/pkgconfig"
81
82 src_prepare() {
83 # bug #358271
84 epatch "${FILESDIR}"/${P}-ncurses.patch
85 }
86
87 src_configure() {
88 econf \
89 --disable-dependency-tracking \
90 $(use_enable debug) \
91 $(use_enable ipv6) \
92 $(use_with xmlrpc xmlrpc-c)
93 }
94
95 src_install() {
96 emake DESTDIR="${D}" install || die
97 dodoc AUTHORS README doc/rtorrent.rc
98
99 if use daemon; then
100 newinitd "${FILESDIR}/rtorrentd.init" rtorrentd || die "newinitd failed"
101 newconfd "${FILESDIR}/rtorrentd.conf" rtorrentd || die "newconfd failed"
102 fi
103 }