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.7.8.ebuild
@ 2007-09-08 14:36 Timothy Redaelli (drizzt)
  0 siblings, 0 replies; 6+ messages in thread
From: Timothy Redaelli (drizzt) @ 2007-09-08 14:36 UTC (permalink / raw
  To: gentoo-commits

drizzt      07/09/08 14:36:52

  Modified:             ChangeLog
  Added:                rtorrent-0.7.8.ebuild
  Log:
  Version bump wrt bug #182816.
  
  (Portage version: 2.1.3.7)

Revision  Changes    Path
1.92                 net-p2p/rtorrent/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -r1.91 -r1.92
--- ChangeLog	24 May 2007 15:47:04 -0000	1.91
+++ ChangeLog	8 Sep 2007 14:36:52 -0000	1.92
@@ -1,6 +1,11 @@
 # ChangeLog for net-p2p/rtorrent
 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.91 2007/05/24 15:47:04 drizzt Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.92 2007/09/08 14:36:52 drizzt Exp $
+
+*rtorrent-0.7.8 (08 Sep 2007)
+
+  08 Sep 2007; Timothy Redaelli <drizzt@gentoo.org> +rtorrent-0.7.8.ebuild:
+  Version bump wrt bug #182816.
 
   24 May 2007; Timothy Redaelli <drizzt@gentoo.org> rtorrent-0.7.4.ebuild:
   append-flags -fno-strict-aliasing wrt bug #179554



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

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

Index: rtorrent-0.7.8.ebuild
===================================================================
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.7.8.ebuild,v 1.1 2007/09/08 14:36:52 drizzt Exp $

inherit 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 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="debug"

RDEPEND=">=net-libs/libtorrent-0.11.${PV##*.}
	>=dev-libs/libsigc++-2.0
	>=net-misc/curl-7.15
	sys-libs/ncurses"
DEPEND="${RDEPEND}"

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) \
		--disable-xmlrpc-c \			# I want to keep it disabled while >=dev-libs/xmlrpc-c-1.07 is masked
		--disable-dependency-tracking \
		|| die "econf failed"

	emake || die "emake failed"
}

pkg_postinst() {
	elog "rtorrent now supports a configuration file."
	elog "A sample configuration file for rtorrent is can be found"
	elog "in ${ROOT}usr/share/doc/${PF}/rtorrent.rc.gz."
}

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



-- 
gentoo-commits@gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in net-p2p/rtorrent: ChangeLog rtorrent-0.7.8.ebuild
@ 2007-09-08 22:20 hanno (hanno)
  0 siblings, 0 replies; 6+ messages in thread
From: hanno (hanno) @ 2007-09-08 22:20 UTC (permalink / raw
  To: gentoo-commits

hanno       07/09/08 22:20:01

  Modified:             ChangeLog rtorrent-0.7.8.ebuild
  Log:
  fix comment-breakage in rtorrent ebuild
  (Portage version: 2.1.3.9)

Revision  Changes    Path
1.93                 net-p2p/rtorrent/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -r1.92 -r1.93
--- ChangeLog	8 Sep 2007 14:36:52 -0000	1.92
+++ ChangeLog	8 Sep 2007 22:20:00 -0000	1.93
@@ -1,6 +1,9 @@
 # ChangeLog for net-p2p/rtorrent
 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.92 2007/09/08 14:36:52 drizzt Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.93 2007/09/08 22:20:00 hanno Exp $
+
+  08 Sep 2007; Hanno Boeck <hanno@gentoo.org> ChangeLog:
+  Place comment below econf-line, else it breaks.
 
 *rtorrent-0.7.8 (08 Sep 2007)
 



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

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

Index: rtorrent-0.7.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.7.8.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- rtorrent-0.7.8.ebuild	8 Sep 2007 14:36:52 -0000	1.1
+++ rtorrent-0.7.8.ebuild	8 Sep 2007 22:20:00 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2007 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.7.8.ebuild,v 1.1 2007/09/08 14:36:52 drizzt Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.7.8.ebuild,v 1.2 2007/09/08 22:20:00 hanno Exp $
 
 inherit eutils toolchain-funcs flag-o-matic
 
@@ -29,9 +29,10 @@
 
 	econf \
 		$(use_enable debug) \
-		--disable-xmlrpc-c \			# I want to keep it disabled while >=dev-libs/xmlrpc-c-1.07 is masked
+		--disable-xmlrpc-c \
 		--disable-dependency-tracking \
 		|| die "econf failed"
+	# --disable-xmlrpc-c: I want to keep it disabled while >=dev-libs/xmlrpc-c-1.07 is masked
 
 	emake || die "emake failed"
 }



-- 
gentoo-commits@gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in net-p2p/rtorrent: ChangeLog rtorrent-0.7.8.ebuild
@ 2007-11-09 15:53 Dawid Weglinski (cla)
  0 siblings, 0 replies; 6+ messages in thread
From: Dawid Weglinski (cla) @ 2007-11-09 15:53 UTC (permalink / raw
  To: gentoo-commits

cla         07/11/09 15:53:09

  Modified:             ChangeLog rtorrent-0.7.8.ebuild
  Log:
  Stable on x86, bug #198558
  (Portage version: 2.1.3.19)

Revision  Changes    Path
1.95                 net-p2p/rtorrent/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v
retrieving revision 1.94
retrieving revision 1.95
diff -u -r1.94 -r1.95
--- ChangeLog	25 Oct 2007 19:24:21 -0000	1.94
+++ ChangeLog	9 Nov 2007 15:53:08 -0000	1.95
@@ -1,6 +1,9 @@
 # ChangeLog for net-p2p/rtorrent
 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.94 2007/10/25 19:24:21 drizzt Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.95 2007/11/09 15:53:08 cla Exp $
+
+  09 Nov 2007; Dawid Węgliński <cla@gentoo.org> rtorrent-0.7.8.ebuild:
+  Stable on x86 (bug #198558)
 
 *rtorrent-0.7.9 (25 Oct 2007)
 



1.3                  net-p2p/rtorrent/rtorrent-0.7.8.ebuild

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

Index: rtorrent-0.7.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.7.8.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- rtorrent-0.7.8.ebuild	8 Sep 2007 22:20:00 -0000	1.2
+++ rtorrent-0.7.8.ebuild	9 Nov 2007 15:53:08 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2007 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.7.8.ebuild,v 1.2 2007/09/08 22:20:00 hanno Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.7.8.ebuild,v 1.3 2007/11/09 15:53:08 cla Exp $
 
 inherit eutils toolchain-funcs flag-o-matic
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="debug"
 
 RDEPEND=">=net-libs/libtorrent-0.11.${PV##*.}



-- 
gentoo-commits@gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in net-p2p/rtorrent: ChangeLog rtorrent-0.7.8.ebuild
@ 2007-11-09 18:37 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 6+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2007-11-09 18:37 UTC (permalink / raw
  To: gentoo-commits

nixnut      07/11/09 18:37:39

  Modified:             ChangeLog rtorrent-0.7.8.ebuild
  Log:
  Stable on ppc wrt bug 198558
  (Portage version: 2.1.3.19)

Revision  Changes    Path
1.96                 net-p2p/rtorrent/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v
retrieving revision 1.95
retrieving revision 1.96
diff -u -r1.95 -r1.96
--- ChangeLog	9 Nov 2007 15:53:08 -0000	1.95
+++ ChangeLog	9 Nov 2007 18:37:39 -0000	1.96
@@ -1,6 +1,9 @@
 # ChangeLog for net-p2p/rtorrent
 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.95 2007/11/09 15:53:08 cla Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.96 2007/11/09 18:37:39 nixnut Exp $
+
+  09 Nov 2007; nixnut <nixnut@gentoo.org> rtorrent-0.7.8.ebuild:
+  Stable on ppc wrt bug 198558
 
   09 Nov 2007; Dawid Węgliński <cla@gentoo.org> rtorrent-0.7.8.ebuild:
   Stable on x86 (bug #198558)



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

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

Index: rtorrent-0.7.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.7.8.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- rtorrent-0.7.8.ebuild	9 Nov 2007 15:53:08 -0000	1.3
+++ rtorrent-0.7.8.ebuild	9 Nov 2007 18:37:39 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2007 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.7.8.ebuild,v 1.3 2007/11/09 15:53:08 cla Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.7.8.ebuild,v 1.4 2007/11/09 18:37:39 nixnut Exp $
 
 inherit eutils toolchain-funcs flag-o-matic
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~amd64 ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="debug"
 
 RDEPEND=">=net-libs/libtorrent-0.11.${PV##*.}



-- 
gentoo-commits@gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in net-p2p/rtorrent: ChangeLog rtorrent-0.7.8.ebuild
@ 2007-11-10 21:52 Markus Rothe (corsair)
  0 siblings, 0 replies; 6+ messages in thread
From: Markus Rothe (corsair) @ 2007-11-10 21:52 UTC (permalink / raw
  To: gentoo-commits

corsair     07/11/10 21:52:29

  Modified:             ChangeLog rtorrent-0.7.8.ebuild
  Log:
  Stable on ppc64; bug #198558
  (Portage version: 2.1.3.19)

Revision  Changes    Path
1.97                 net-p2p/rtorrent/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -r1.96 -r1.97
--- ChangeLog	9 Nov 2007 18:37:39 -0000	1.96
+++ ChangeLog	10 Nov 2007 21:52:28 -0000	1.97
@@ -1,6 +1,9 @@
 # ChangeLog for net-p2p/rtorrent
 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.96 2007/11/09 18:37:39 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.97 2007/11/10 21:52:28 corsair Exp $
+
+  10 Nov 2007; Markus Rothe <corsair@gentoo.org> rtorrent-0.7.8.ebuild:
+  Stable on ppc64; bug #198558
 
   09 Nov 2007; nixnut <nixnut@gentoo.org> rtorrent-0.7.8.ebuild:
   Stable on ppc wrt bug 198558



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

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

Index: rtorrent-0.7.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.7.8.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- rtorrent-0.7.8.ebuild	9 Nov 2007 18:37:39 -0000	1.4
+++ rtorrent-0.7.8.ebuild	10 Nov 2007 21:52:28 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2007 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.7.8.ebuild,v 1.4 2007/11/09 18:37:39 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.7.8.ebuild,v 1.5 2007/11/10 21:52:28 corsair Exp $
 
 inherit eutils toolchain-funcs flag-o-matic
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~amd64 ppc ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="debug"
 
 RDEPEND=">=net-libs/libtorrent-0.11.${PV##*.}



-- 
gentoo-commits@gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in net-p2p/rtorrent: ChangeLog rtorrent-0.7.8.ebuild
@ 2007-11-13 16:32 Samuli Suominen (drac)
  0 siblings, 0 replies; 6+ messages in thread
From: Samuli Suominen (drac) @ 2007-11-13 16:32 UTC (permalink / raw
  To: gentoo-commits

drac        07/11/13 16:32:17

  Modified:             ChangeLog rtorrent-0.7.8.ebuild
  Log:
  amd64 stable wrt #198558, thanks to Angelo Arrifano for testing.
  (Portage version: 2.1.3.19)

Revision  Changes    Path
1.99                 net-p2p/rtorrent/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -r1.98 -r1.99
--- ChangeLog	13 Nov 2007 15:24:59 -0000	1.98
+++ ChangeLog	13 Nov 2007 16:32:17 -0000	1.99
@@ -1,6 +1,9 @@
 # ChangeLog for net-p2p/rtorrent
 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.98 2007/11/13 15:24:59 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/ChangeLog,v 1.99 2007/11/13 16:32:17 drac Exp $
+
+  13 Nov 2007; Samuli Suominen <drac@gentoo.org> rtorrent-0.7.8.ebuild:
+  amd64 stable wrt #198558, thanks to Angelo Arrifano for testing.
 
   13 Nov 2007; Raúl Porcel <armin76@gentoo.org> rtorrent-0.7.9.ebuild:
   Add ~ia64 wrt #198844



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

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

Index: rtorrent-0.7.8.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.7.8.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- rtorrent-0.7.8.ebuild	10 Nov 2007 21:52:28 -0000	1.5
+++ rtorrent-0.7.8.ebuild	13 Nov 2007 16:32:17 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2007 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.7.8.ebuild,v 1.5 2007/11/10 21:52:28 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/rtorrent/rtorrent-0.7.8.ebuild,v 1.6 2007/11/13 16:32:17 drac Exp $
 
 inherit eutils toolchain-funcs flag-o-matic
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="amd64 ppc ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="debug"
 
 RDEPEND=">=net-libs/libtorrent-0.11.${PV##*.}



-- 
gentoo-commits@gentoo.org mailing list



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

end of thread, other threads:[~2007-11-13 16:32 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-09 18:37 [gentoo-commits] gentoo-x86 commit in net-p2p/rtorrent: ChangeLog rtorrent-0.7.8.ebuild Gysbert Wassenaar (nixnut)
  -- strict thread matches above, loose matches on Subject: below --
2007-11-13 16:32 Samuli Suominen (drac)
2007-11-10 21:52 Markus Rothe (corsair)
2007-11-09 15:53 Dawid Weglinski (cla)
2007-09-08 22:20 hanno (hanno)
2007-09-08 14:36 Timothy Redaelli (drizzt)

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