Gentoo Archives: gentoo-commits

From: "Victor Ostorga (vostorga)" <vostorga@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-p2p/rtorrent: ChangeLog rtorrent-0.9.4.ebuild rtorrent-0.8.6-r1.ebuild rtorrent-0.8.6-r4.ebuild rtorrent-0.8.7-r4.ebuild
Date: Sun, 29 Jun 2014 16:06:28
Message-Id: 20140629160624.C86612004E@flycatcher.gentoo.org
1 vostorga 14/06/29 16:06:24
2
3 Modified: ChangeLog
4 Added: rtorrent-0.9.4.ebuild
5 Removed: rtorrent-0.8.6-r1.ebuild rtorrent-0.8.6-r4.ebuild
6 rtorrent-0.8.7-r4.ebuild
7 Log:
8 Cleaning up old ebuild, version bump for bug #509932
9
10 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0xE25EE336)
11
12 Revision Changes Path
13 1.185 net-p2p/rtorrent/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/rtorrent/ChangeLog?rev=1.185&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/rtorrent/ChangeLog?rev=1.185&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/rtorrent/ChangeLog?r1=1.184&r2=1.185
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v
22 retrieving revision 1.184
23 retrieving revision 1.185
24 diff -u -r1.184 -r1.185
25 --- ChangeLog 18 May 2014 19:58:08 -0000 1.184
26 +++ ChangeLog 29 Jun 2014 16:06:24 -0000 1.185
27 @@ -1,6 +1,15 @@
28 # ChangeLog for net-p2p/rtorrent
29 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.184 2014/05/18 19:58:08 swift Exp $
31 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.185 2014/06/29 16:06:24 vostorga Exp $
32 +
33 +*rtorrent-0.9.4 (29 Jun 2014)
34 +
35 + 29 Jun 2014; Victor Ostorga <vostorga@g.o>
36 + -files/rtorrent-0.8.2-gcc34.patch, -rtorrent-0.8.6-r1.ebuild,
37 + -rtorrent-0.8.6-r4.ebuild, -files/rtorrent-0.8.6-canvas-fix.patch,
38 + -files/rtorrent-0.8.6-ncurses.patch, -rtorrent-0.8.7-r4.ebuild,
39 + +rtorrent-0.9.4.ebuild:
40 + Cleaning up old ebuild, version bump for bug #509932
41
42 18 May 2014; Sven Vermeulen <swift@g.o> rtorrent-0.8.6-r1.ebuild,
43 rtorrent-0.8.6-r4.ebuild, rtorrent-0.8.7-r4.ebuild, rtorrent-0.8.9.ebuild,
44
45
46
47 1.1 net-p2p/rtorrent/rtorrent-0.9.4.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/rtorrent/rtorrent-0.9.4.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-p2p/rtorrent/rtorrent-0.9.4.ebuild?rev=1.1&content-type=text/plain
51
52 Index: rtorrent-0.9.4.ebuild
53 ===================================================================
54 # Copyright 1999-2014 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.4.ebuild,v 1.1 2014/06/29 16:06:24 vostorga Exp $
57
58 EAPI=4
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 ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris"
69 IUSE="daemon debug ipv6 selinux 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 selinux? ( sec-policy/selinux-rtorrent )
76 xmlrpc? ( dev-libs/xmlrpc-c )"
77 RDEPEND="${COMMON_DEPEND}
78 daemon? ( app-misc/screen )"
79 DEPEND="${COMMON_DEPEND}
80 test? ( dev-util/cppunit )
81 virtual/pkgconfig"
82
83 DOCS=( doc/rtorrent.rc )
84
85 src_prepare() {
86 # bug #358271
87 epatch "${FILESDIR}"/${PN}-0.9.1-ncurses.patch
88
89 # upstream forgot to include
90 cp "${FILESDIR}"/rtorrent.1 "${S}"/doc/ || die
91 }
92
93 src_configure() {
94 # configure needs bash or script bombs out on some null shift, bug #291229
95 CONFIG_SHELL=${BASH} econf \
96 --disable-dependency-tracking \
97 $(use_enable debug) \
98 $(use_enable ipv6) \
99 $(use_with xmlrpc xmlrpc-c)
100 }
101
102 src_install() {
103 default
104 doman doc/rtorrent.1
105
106 if use daemon; then
107 newinitd "${FILESDIR}/rtorrentd.init" rtorrentd
108 newconfd "${FILESDIR}/rtorrentd.conf" rtorrentd
109 fi
110 }