Gentoo Archives: gentoo-commits

From: Alexey Shvetsov <alexxy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] dev/alexxy:master commit in: net-libs/libtorrent/, net-p2p/rtorrent/, dev-libs/clover/, ...
Date: Sun, 05 Feb 2012 17:00:56
Message-Id: 945dd48bcc81bf6e89cb2acda3ddacf5253c4d2d.alexxy@gentoo
1 commit: 945dd48bcc81bf6e89cb2acda3ddacf5253c4d2d
2 Author: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 5 16:59:56 2012 +0000
4 Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 5 16:59:56 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/alexxy.git;a=commit;h=945dd48b
7
8 Drop old stuff
9
10 (Portage version: 2.2.0_alpha85/git/Linux x86_64, unsigned Manifest commit)
11
12 ---
13 dev-libs/clover/clover-9999.ebuild | 34 ---------------
14 net-libs/libtorrent/libtorrent-9999.ebuild | 50 -----------------------
15 net-libs/libtorrent/metadata.xml | 5 --
16 net-p2p/rtorrent/files/rtorrentd.conf | 1 -
17 net-p2p/rtorrent/files/rtorrentd.init | 34 ---------------
18 net-p2p/rtorrent/metadata.xml | 15 -------
19 net-p2p/rtorrent/rtorrent-9999.ebuild | 61 ----------------------------
20 7 files changed, 0 insertions(+), 200 deletions(-)
21
22 diff --git a/dev-libs/clover/clover-9999.ebuild b/dev-libs/clover/clover-9999.ebuild
23 deleted file mode 100644
24 index 0825b1e..0000000
25 --- a/dev-libs/clover/clover-9999.ebuild
26 +++ /dev/null
27 @@ -1,34 +0,0 @@
28 -# Copyright 1999-2011 Gentoo Foundation
29 -# Distributed under the terms of the GNU General Public License v2
30 -# $Header: $
31 -
32 -EAPI=4
33 -
34 -inherit git-2 cmake-utils
35 -
36 -DESCRIPTION="Mesa OpenCL implementation (software and Gallium-based)"
37 -HOMEPAGE="http://cgit.freedesktop.org/~steckdenis/clover/"
38 -EGIT_REPO_URI="git://anongit.freedesktop.org/~steckdenis/clover"
39 -
40 -LICENSE="LGPL-2"
41 -SLOT="0"
42 -KEYWORDS="~amd64"
43 -IUSE=""
44 -
45 -DEPEND="
46 - media-libs/mesa[llvm,gallium]
47 - sys-devel/clang
48 - sys-devel/llvm
49 -"
50 -RDEPEND="${DEPEND}"
51 -
52 -src_unpack() {
53 - default
54 - [[ $PV = 9999* ]] && git-2_src_unpack
55 -}
56 -
57 -src_install() {
58 - cmake-utils_src_install
59 - insinto /usr/include
60 - doins -r "${S}/include/CL"
61 -}
62
63 diff --git a/net-libs/libtorrent/libtorrent-9999.ebuild b/net-libs/libtorrent/libtorrent-9999.ebuild
64 deleted file mode 100644
65 index 0ce13f4..0000000
66 --- a/net-libs/libtorrent/libtorrent-9999.ebuild
67 +++ /dev/null
68 @@ -1,50 +0,0 @@
69 -# Copyright 1999-2011 Gentoo Foundation
70 -# Distributed under the terms of the GNU General Public License v2
71 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/libtorrent-0.12.7.ebuild,v 1.3 2011/04/13 21:30:46 sochotnicky Exp $
72 -
73 -EAPI=4
74 -inherit autotools eutils subversion toolchain-funcs
75 -
76 -DESCRIPTION="BitTorrent library written in C++ for *nix"
77 -HOMEPAGE="http://libtorrent.rakshasa.no/"
78 -ESVN_REPO_URI="svn://rakshasa.no/libtorrent/trunk/libtorrent"
79 -
80 -LICENSE="GPL-2"
81 -SLOT="0"
82 -KEYWORDS=""
83 -IUSE="debug ipv6 ssl"
84 -
85 -RDEPEND=">=dev-libs/libsigc++-2.2.2:2
86 - ssl? ( dev-libs/openssl )"
87 -DEPEND="${RDEPEND}
88 - dev-util/cppunit
89 - dev-util/pkgconfig"
90 -
91 -src_prepare() {
92 - eautoreconf
93 -}
94 -
95 -src_configure() {
96 - # the configure check for posix_fallocate is wrong.
97 - # reported upstream as Ticket 2416.
98 - local myconf
99 - echo "int main(){return posix_fallocate();}" > "${T}"/posix_fallocate.c
100 - if $(tc-getCC) ${CFLAGS} ${LDFLAGS} "${T}"/posix_fallocate.c -o /dev/null 2>/dev/null ; then
101 - myconf="--with-posix-fallocate"
102 - else
103 - myconf="--without-posix-fallocate"
104 - fi
105 -
106 - econf \
107 - --disable-dependency-tracking \
108 - --enable-aligned \
109 - $(use_enable debug) \
110 - $(use_enable ipv6) \
111 - $(use_enable ssl openssl) \
112 - ${myconf}
113 -}
114 -
115 -src_install() {
116 - emake DESTDIR="${D}" install || die
117 - dodoc AUTHORS NEWS README
118 -}
119
120 diff --git a/net-libs/libtorrent/metadata.xml b/net-libs/libtorrent/metadata.xml
121 deleted file mode 100644
122 index aa0f366..0000000
123 --- a/net-libs/libtorrent/metadata.xml
124 +++ /dev/null
125 @@ -1,5 +0,0 @@
126 -<?xml version="1.0" encoding="UTF-8"?>
127 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
128 -<pkgmetadata>
129 -<herd>net-p2p</herd>
130 -</pkgmetadata>
131
132 diff --git a/net-p2p/rtorrent/files/rtorrentd.conf b/net-p2p/rtorrent/files/rtorrentd.conf
133 deleted file mode 100644
134 index 5ff2328..0000000
135 --- a/net-p2p/rtorrent/files/rtorrentd.conf
136 +++ /dev/null
137 @@ -1 +0,0 @@
138 -USER="$USER"
139
140 diff --git a/net-p2p/rtorrent/files/rtorrentd.init b/net-p2p/rtorrent/files/rtorrentd.init
141 deleted file mode 100644
142 index e160b99..0000000
143 --- a/net-p2p/rtorrent/files/rtorrentd.init
144 +++ /dev/null
145 @@ -1,34 +0,0 @@
146 -#!/sbin/runscript
147 -# Copyright 1999-2011 Gentoo Foundation
148 -# Distributed under the terms of the GNU General Public License v2
149 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/files/rtorrentd.init,v 1.7 2011/05/09 21:34:21 sochotnicky Exp $
150 -
151 -depend() {
152 - use net ypbind nis
153 - after slapd mysqld postgresql
154 -}
155 -
156 -start() {
157 - PWHOME="$(getent passwd $USER | awk -F: '{ print $6 }')"
158 -
159 - ebegin "Starting rtorrent"
160 - env TERM="xterm" \
161 - start-stop-daemon \
162 - --start \
163 - --make-pidfile \
164 - --pidfile /var/run/rtorrentd.pid \
165 - --background \
166 - --user $USER \
167 - --chuid $USER \
168 - --env HOME="${PWHOME:-/home/$USER}" \
169 - --name rtorrent \
170 - --exec /usr/bin/screen -- -D -m -S rtorrentd /usr/bin/rtorrent
171 - eend $?
172 -}
173 -
174 -stop() {
175 - ebegin "Stopping rtorrent"
176 - start-stop-daemon --stop --signal 15 \
177 - --pidfile /var/run/rtorrentd.pid
178 - eend $?
179 -}
180
181 diff --git a/net-p2p/rtorrent/metadata.xml b/net-p2p/rtorrent/metadata.xml
182 deleted file mode 100644
183 index dd9423d..0000000
184 --- a/net-p2p/rtorrent/metadata.xml
185 +++ /dev/null
186 @@ -1,15 +0,0 @@
187 -<?xml version="1.0" encoding="UTF-8"?>
188 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
189 -<pkgmetadata>
190 -<herd>net-p2p</herd>
191 -<longdescription lang="en">
192 - Console BitTorrent client using ncurses based on libtorrent written in C++.
193 -</longdescription>
194 -<use>
195 - <flag name='daemon'>Uses <pkg>app-misc/screen</pkg> to daemonize this
196 - application
197 - </flag>
198 - <flag name='color'>Add custom color support for torrent list</flag>
199 -</use>
200 -
201 -</pkgmetadata>
202
203 diff --git a/net-p2p/rtorrent/rtorrent-9999.ebuild b/net-p2p/rtorrent/rtorrent-9999.ebuild
204 deleted file mode 100644
205 index 2d07376..0000000
206 --- a/net-p2p/rtorrent/rtorrent-9999.ebuild
207 +++ /dev/null
208 @@ -1,61 +0,0 @@
209 -# Copyright 1999-2011 Gentoo Foundation
210 -# Distributed under the terms of the GNU General Public License v2
211 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.7-r3.ebuild,v 1.1 2011/05/09 21:34:21 sochotnicky Exp $
212 -
213 -EAPI=4
214 -
215 -inherit autotools eutils subversion
216 -
217 -DESCRIPTION="BitTorrent Client using libtorrent"
218 -HOMEPAGE="http://libtorrent.rakshasa.no/"
219 -ESVN_REPO_URI="svn://rakshasa.no/libtorrent/trunk/rtorrent"
220 -
221 -LICENSE="GPL-2"
222 -SLOT="0"
223 -KEYWORDS=""
224 -IUSE="color daemon debug ipv6 test xmlrpc"
225 -
226 -COMMON_DEPEND=">=net-libs/libtorrent-0.12.${PV##*.}
227 - >=dev-libs/libsigc++-2.2.2:2
228 - >=net-misc/curl-7.19.1
229 - sys-libs/ncurses
230 - xmlrpc? ( dev-libs/xmlrpc-c )"
231 -RDEPEND="${COMMON_DEPEND}
232 - daemon? ( app-misc/screen )"
233 -DEPEND="${COMMON_DEPEND}
234 - test? ( dev-util/cppunit )
235 - dev-util/pkgconfig"
236 -
237 -src_prepare() {
238 - use color && EPATCH_OPTS="-p1" epatch "${FILESDIR}"/${P}-canvas-fix.patch
239 - eautoreconf
240 -}
241 -
242 -src_configure() {
243 - econf \
244 - --disable-dependency-tracking \
245 - $(use_enable debug) \
246 - $(use_enable ipv6) \
247 - $(use_with xmlrpc xmlrpc-c)
248 -}
249 -
250 -src_install() {
251 - emake DESTDIR="${D}" install || die
252 - dodoc AUTHORS README TODO doc/rtorrent.rc
253 -
254 - if use daemon; then
255 - newinitd "${FILESDIR}/rtorrentd.init" rtorrentd || die "newinitd failed"
256 - newconfd "${FILESDIR}/rtorrentd.conf" rtorrentd || die "newconfd failed"
257 - fi
258 -}
259 -
260 -pkg_postinst() {
261 - if use color; then
262 - elog "rtorrent colors patch"
263 - elog "Set colors using the options below in .rtorrent.rc:"
264 - elog "Options: done_fg_color, done_bg_color, active_fg_color, active_bg_color"
265 - elog "Colors: 0 = black, 1 = red, 2 = green, 3 = yellow, 4 = blue,"
266 - elog "5 = magenta, 6 = cyan and 7 = white"
267 - elog "Example: done_fg_color = 1"
268 - fi
269 -}