public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-p2p/rtorrent: ChangeLog rtorrent-0.8.5.ebuild
@ 2009-09-10 17:56 Patrick Lauer (patrick)
  0 siblings, 0 replies; 6+ messages in thread
From: Patrick Lauer (patrick) @ 2009-09-10 17:56 UTC (permalink / raw
  To: gentoo-commits

patrick     09/09/10 17:56:41

  Modified:             ChangeLog
  Added:                rtorrent-0.8.5.ebuild
  Log:
  Bump to 0.8.5, fixes other half of #278660. Thanks to Shark for testing.
  (Portage version: 2.2_rc40/cvs/Linux x86_64)

Revision  Changes    Path
1.139                net-p2p/rtorrent/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/ChangeLog?rev=1.139&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/ChangeLog?rev=1.139&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/ChangeLog?r1=1.138&r2=1.139

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v
retrieving revision 1.138
retrieving revision 1.139
diff -u -r1.138 -r1.139
--- ChangeLog	28 Jul 2009 21:52:33 -0000	1.138
+++ ChangeLog	10 Sep 2009 17:56:41 -0000	1.139
@@ -1,6 +1,11 @@
 # ChangeLog for net-p2p/rtorrent
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.138 2009/07/28 21:52:33 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.139 2009/09/10 17:56:41 patrick Exp $
+
+*rtorrent-0.8.5 (10 Sep 2009)
+
+  10 Sep 2009; Patrick Lauer <patrick@gentoo.org> +rtorrent-0.8.5.ebuild:
+  Bump to 0.8.5, fixes other half of #278660. Thanks to Shark for testing.
 
   28 Jul 2009; Robin H. Johnson <robbat2@gentoo.org> files/rtorrentd.init:
   Bug #262046: If used with a non-local NSS source, we need to start after



1.1                  net-p2p/rtorrent/rtorrent-0.8.5.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild?rev=1.1&content-type=text/plain

Index: rtorrent-0.8.5.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild,v 1.1 2009/09/10 17:56:41 patrick Exp $

inherit base eutils toolchain-funcs flag-o-matic

DESCRIPTION="BitTorrent Client using libtorrent"
HOMEPAGE="http://libtorrent.rakshasa.no/"
SRC_URI="http://libtorrent.rakshasa.no/downloads/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="daemon debug ipv6 xmlrpc"

COMMON_DEPEND=">=net-libs/libtorrent-0.12.${PV##*.}
	>=dev-libs/libsigc++-2.2.2
	>=net-misc/curl-7.19.1
	sys-libs/ncurses
	xmlrpc? ( dev-libs/xmlrpc-c )"
RDEPEND="${COMMON_DEPEND}
	daemon? ( app-misc/screen )"
DEPEND="${COMMON_DEPEND}
	dev-util/pkgconfig"

src_compile() {
	replace-flags -Os -O2
	append-flags -fno-strict-aliasing

	if [[ $(tc-arch) = "x86" ]]; then
		filter-flags -fomit-frame-pointer -fforce-addr
	fi

	econf	$(use_enable debug) \
		$(use_enable ipv6) \
		$(use_with xmlrpc xmlrpc-c) \
		--disable-dependency-tracking \
		|| die "econf failed"

	emake || die "emake failed"
}

src_install() {
	emake DESTDIR="${D}" install || die "make install failed"
	dodoc AUTHORS README TODO doc/rtorrent.rc

	if use daemon; then
		newinitd "${FILESDIR}/rtorrentd.init" rtorrentd || die "newinitd failed"
		newconfd "${FILESDIR}/rtorrentd.conf" rtorrentd || die "newconfd failed"
	fi
}

pkg_postinst() {
	elog "rtorrent now supports a configuration file."
	elog "A sample configuration file for rtorrent can be found"
	elog "in rtorrent.rc in ${ROOT}usr/share/doc/${PF}/"
	elog ""
	ewarn "If you're upgrading from rtorrent <0.8.0, you will have to delete your"
	ewarn "session directory or run the fixSession080-c.py script from this address:"
	ewarn "http://rssdler.googlecode.com/files/fixSession080-c.py"
	ewarn "See http://libtorrent.rakshasa.no/wiki/LibTorrentKnownIssues for more info."
}






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-p2p/rtorrent: ChangeLog rtorrent-0.8.5.ebuild
@ 2009-10-27 18:11 Patrick Lauer (patrick)
  0 siblings, 0 replies; 6+ messages in thread
From: Patrick Lauer (patrick) @ 2009-10-27 18:11 UTC (permalink / raw
  To: gentoo-commits

patrick     09/10/27 18:11:23

  Modified:             ChangeLog rtorrent-0.8.5.ebuild
  Log:
  Readding 0.8.2-gcc34.patch for #224031
  (Portage version: 2.2_rc46/cvs/Linux x86_64)

Revision  Changes    Path
1.140                net-p2p/rtorrent/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/ChangeLog?rev=1.140&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/ChangeLog?rev=1.140&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/ChangeLog?r1=1.139&r2=1.140

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v
retrieving revision 1.139
retrieving revision 1.140
diff -u -r1.139 -r1.140
--- ChangeLog	10 Sep 2009 17:56:41 -0000	1.139
+++ ChangeLog	27 Oct 2009 18:11:22 -0000	1.140
@@ -1,6 +1,9 @@
 # ChangeLog for net-p2p/rtorrent
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.139 2009/09/10 17:56:41 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.140 2009/10/27 18:11:22 patrick Exp $
+
+  27 Oct 2009; Patrick Lauer <patrick@gentoo.org> rtorrent-0.8.5.ebuild:
+  Readding 0.8.2-gcc34.patch for #224031
 
 *rtorrent-0.8.5 (10 Sep 2009)
 



1.2                  net-p2p/rtorrent/rtorrent-0.8.5.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild?r1=1.1&r2=1.2

Index: rtorrent-0.8.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- rtorrent-0.8.5.ebuild	10 Sep 2009 17:56:41 -0000	1.1
+++ rtorrent-0.8.5.ebuild	27 Oct 2009 18:11:22 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild,v 1.1 2009/09/10 17:56:41 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild,v 1.2 2009/10/27 18:11:22 patrick Exp $
 
 inherit base eutils toolchain-funcs flag-o-matic
 
@@ -23,6 +23,8 @@
 DEPEND="${COMMON_DEPEND}
 	dev-util/pkgconfig"
 
+PATCHES=( "${FILESDIR}/${PN}-0.8.2-gcc34.patch" )
+
 src_compile() {
 	replace-flags -Os -O2
 	append-flags -fno-strict-aliasing






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-p2p/rtorrent: ChangeLog rtorrent-0.8.5.ebuild
@ 2009-11-18 20:17 Brent Baude (ranger)
  0 siblings, 0 replies; 6+ messages in thread
From: Brent Baude (ranger) @ 2009-11-18 20:17 UTC (permalink / raw
  To: gentoo-commits

ranger      09/11/18 20:17:13

  Modified:             ChangeLog rtorrent-0.8.5.ebuild
  Log:
  Marking rtorrent-0.8.5 ppc64 for bug 291036
  (Portage version: 2.1.7.1/cvs/Linux ppc64)

Revision  Changes    Path
1.141                net-p2p/rtorrent/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/ChangeLog?rev=1.141&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/ChangeLog?rev=1.141&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/ChangeLog?r1=1.140&r2=1.141

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v
retrieving revision 1.140
retrieving revision 1.141
diff -u -r1.140 -r1.141
--- ChangeLog	27 Oct 2009 18:11:22 -0000	1.140
+++ ChangeLog	18 Nov 2009 20:17:13 -0000	1.141
@@ -1,6 +1,9 @@
 # ChangeLog for net-p2p/rtorrent
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.140 2009/10/27 18:11:22 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.141 2009/11/18 20:17:13 ranger Exp $
+
+  18 Nov 2009; Brent Baude <ranger@gentoo.org> rtorrent-0.8.5.ebuild:
+  Marking rtorrent-0.8.5 ppc64 for bug 291036
 
   27 Oct 2009; Patrick Lauer <patrick@gentoo.org> rtorrent-0.8.5.ebuild:
   Readding 0.8.2-gcc34.patch for #224031



1.4                  net-p2p/rtorrent/rtorrent-0.8.5.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild?r1=1.3&r2=1.4

Index: rtorrent-0.8.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- rtorrent-0.8.5.ebuild	16 Nov 2009 13:06:25 -0000	1.3
+++ rtorrent-0.8.5.ebuild	18 Nov 2009 20:17:13 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild,v 1.3 2009/11/16 13:06:25 cla Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild,v 1.4 2009/11/18 20:17:13 ranger Exp $
 
 inherit base eutils toolchain-funcs flag-o-matic
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ~hppa ~ia64 ~ppc ppc64 ~sparc ~x86 ~x86-fbsd"
 IUSE="daemon debug ipv6 xmlrpc"
 
 COMMON_DEPEND=">=net-libs/libtorrent-0.12.${PV##*.}






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-p2p/rtorrent: ChangeLog rtorrent-0.8.5.ebuild
@ 2009-11-23 21:04 Markus Meier (maekke)
  0 siblings, 0 replies; 6+ messages in thread
From: Markus Meier (maekke) @ 2009-11-23 21:04 UTC (permalink / raw
  To: gentoo-commits

maekke      09/11/23 21:04:54

  Modified:             ChangeLog rtorrent-0.8.5.ebuild
  Log:
  x86 stable, bug #291036
  (Portage version: 2.2_rc51/cvs/Linux x86_64)

Revision  Changes    Path
1.142                net-p2p/rtorrent/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/ChangeLog?rev=1.142&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/ChangeLog?rev=1.142&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/ChangeLog?r1=1.141&r2=1.142

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v
retrieving revision 1.141
retrieving revision 1.142
diff -u -r1.141 -r1.142
--- ChangeLog	18 Nov 2009 20:17:13 -0000	1.141
+++ ChangeLog	23 Nov 2009 21:04:54 -0000	1.142
@@ -1,6 +1,9 @@
 # ChangeLog for net-p2p/rtorrent
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.141 2009/11/18 20:17:13 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.142 2009/11/23 21:04:54 maekke Exp $
+
+  23 Nov 2009; Markus Meier <maekke@gentoo.org> rtorrent-0.8.5.ebuild:
+  x86 stable, bug #291036
 
   18 Nov 2009; Brent Baude <ranger@gentoo.org> rtorrent-0.8.5.ebuild:
   Marking rtorrent-0.8.5 ppc64 for bug 291036



1.5                  net-p2p/rtorrent/rtorrent-0.8.5.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild?r1=1.4&r2=1.5

Index: rtorrent-0.8.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- rtorrent-0.8.5.ebuild	18 Nov 2009 20:17:13 -0000	1.4
+++ rtorrent-0.8.5.ebuild	23 Nov 2009 21:04:54 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild,v 1.4 2009/11/18 20:17:13 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild,v 1.5 2009/11/23 21:04:54 maekke Exp $
 
 inherit base eutils toolchain-funcs flag-o-matic
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~hppa ~ia64 ~ppc ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ~hppa ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="daemon debug ipv6 xmlrpc"
 
 COMMON_DEPEND=">=net-libs/libtorrent-0.12.${PV##*.}






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-p2p/rtorrent: ChangeLog rtorrent-0.8.5.ebuild
@ 2009-12-08  5:32 Jeroen Roovers (jer)
  0 siblings, 0 replies; 6+ messages in thread
From: Jeroen Roovers (jer) @ 2009-12-08  5:32 UTC (permalink / raw
  To: gentoo-commits

jer         09/12/08 05:32:39

  Modified:             ChangeLog rtorrent-0.8.5.ebuild
  Log:
  Stable for HPPA (bug #291036).
  (Portage version: 2.2_rc56/cvs/Linux i686)

Revision  Changes    Path
1.143                net-p2p/rtorrent/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/ChangeLog?rev=1.143&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/ChangeLog?rev=1.143&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/ChangeLog?r1=1.142&r2=1.143

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v
retrieving revision 1.142
retrieving revision 1.143
diff -u -r1.142 -r1.143
--- ChangeLog	23 Nov 2009 21:04:54 -0000	1.142
+++ ChangeLog	8 Dec 2009 05:32:39 -0000	1.143
@@ -1,6 +1,9 @@
 # ChangeLog for net-p2p/rtorrent
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.142 2009/11/23 21:04:54 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.143 2009/12/08 05:32:39 jer Exp $
+
+  08 Dec 2009; Jeroen Roovers <jer@gentoo.org> rtorrent-0.8.5.ebuild:
+  Stable for HPPA (bug #291036).
 
   23 Nov 2009; Markus Meier <maekke@gentoo.org> rtorrent-0.8.5.ebuild:
   x86 stable, bug #291036



1.6                  net-p2p/rtorrent/rtorrent-0.8.5.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild?r1=1.5&r2=1.6

Index: rtorrent-0.8.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- rtorrent-0.8.5.ebuild	23 Nov 2009 21:04:54 -0000	1.5
+++ rtorrent-0.8.5.ebuild	8 Dec 2009 05:32:39 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild,v 1.5 2009/11/23 21:04:54 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild,v 1.6 2009/12/08 05:32:39 jer Exp $
 
 inherit base eutils toolchain-funcs flag-o-matic
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~hppa ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="amd64 hppa ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="daemon debug ipv6 xmlrpc"
 
 COMMON_DEPEND=">=net-libs/libtorrent-0.12.${PV##*.}






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-p2p/rtorrent: ChangeLog rtorrent-0.8.5.ebuild
@ 2009-12-09 19:28 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 6+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2009-12-09 19:28 UTC (permalink / raw
  To: gentoo-commits

nixnut      09/12/09 19:28:05

  Modified:             ChangeLog rtorrent-0.8.5.ebuild
  Log:
  ppc stable #291036
  (Portage version: 2.1.6.13/cvs/Linux ppc)

Revision  Changes    Path
1.144                net-p2p/rtorrent/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/ChangeLog?rev=1.144&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/ChangeLog?rev=1.144&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/ChangeLog?r1=1.143&r2=1.144

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v
retrieving revision 1.143
retrieving revision 1.144
diff -u -r1.143 -r1.144
--- ChangeLog	8 Dec 2009 05:32:39 -0000	1.143
+++ ChangeLog	9 Dec 2009 19:28:04 -0000	1.144
@@ -1,6 +1,9 @@
 # ChangeLog for net-p2p/rtorrent
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.143 2009/12/08 05:32:39 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.144 2009/12/09 19:28:04 nixnut Exp $
+
+  09 Dec 2009; nixnut <nixnut@gentoo.org> rtorrent-0.8.5.ebuild:
+  ppc stable #291036
 
   08 Dec 2009; Jeroen Roovers <jer@gentoo.org> rtorrent-0.8.5.ebuild:
   Stable for HPPA (bug #291036).



1.7                  net-p2p/rtorrent/rtorrent-0.8.5.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild?r1=1.6&r2=1.7

Index: rtorrent-0.8.5.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- rtorrent-0.8.5.ebuild	8 Dec 2009 05:32:39 -0000	1.6
+++ rtorrent-0.8.5.ebuild	9 Dec 2009 19:28:04 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild,v 1.6 2009/12/08 05:32:39 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.8.5.ebuild,v 1.7 2009/12/09 19:28:04 nixnut Exp $
 
 inherit base eutils toolchain-funcs flag-o-matic
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 hppa ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="amd64 hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="daemon debug ipv6 xmlrpc"
 
 COMMON_DEPEND=">=net-libs/libtorrent-0.12.${PV##*.}






^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2009-12-09 19:28 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-18 20:17 [gentoo-commits] gentoo-x86 commit in net-p2p/rtorrent: ChangeLog rtorrent-0.8.5.ebuild Brent Baude (ranger)
  -- strict thread matches above, loose matches on Subject: below --
2009-12-09 19:28 Gysbert Wassenaar (nixnut)
2009-12-08  5:32 Jeroen Roovers (jer)
2009-11-23 21:04 Markus Meier (maekke)
2009-10-27 18:11 Patrick Lauer (patrick)
2009-09-10 17:56 Patrick Lauer (patrick)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox