public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-libs/libtorrent: ChangeLog libtorrent-0.12.2-r4.ebuild
@ 2008-08-26 21:17 Peter Alfredsen (loki_val)
  0 siblings, 0 replies; 6+ messages in thread
From: Peter Alfredsen (loki_val) @ 2008-08-26 21:17 UTC (permalink / raw
  To: gentoo-commits

loki_val    08/08/26 21:17:16

  Modified:             ChangeLog
  Added:                libtorrent-0.12.2-r4.ebuild
  Log:
  Fixes an interoperability issue in the get_peers handling, now it behaves according to the clarified BEP-0005. Also fixes a minor issue of not being able to generate error packets. Patch by Josef Drexler.
  (Portage version: 2.2_rc8/cvs/Linux 2.6.25.8 i686)

Revision  Changes    Path
1.123                net-libs/libtorrent/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libtorrent/ChangeLog?rev=1.123&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libtorrent/ChangeLog?rev=1.123&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libtorrent/ChangeLog?r1=1.122&r2=1.123

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libtorrent/ChangeLog,v
retrieving revision 1.122
retrieving revision 1.123
diff -u -r1.122 -r1.123
--- ChangeLog	25 Aug 2008 20:19:48 -0000	1.122
+++ ChangeLog	26 Aug 2008 21:17:15 -0000	1.123
@@ -1,6 +1,15 @@
 # ChangeLog for net-libs/libtorrent
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/ChangeLog,v 1.122 2008/08/25 20:19:48 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/ChangeLog,v 1.123 2008/08/26 21:17:15 loki_val Exp $
+
+*libtorrent-0.12.2-r4 (26 Aug 2008)
+
+  26 Aug 2008; Peter Alfredsen <loki_val@gentoo.org>
+  +files/libtorrent-0.12.2-fix_dht-get_peers.patch,
+  +libtorrent-0.12.2-r4.ebuild:
+  Fixes an interoperability issue in the get_peers handling, now it behaves
+  according to the clarified BEP-0005. Also fixes a minor issue of not being
+  able to generate error packets. Patch by Josef Drexler.
 
   25 Aug 2008; Jeroen Roovers <jer@gentoo.org> libtorrent-0.12.2-r3.ebuild:
   Stable for HPPA (bug #233122).



1.1                  net-libs/libtorrent/libtorrent-0.12.2-r4.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libtorrent/libtorrent-0.12.2-r4.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libtorrent/libtorrent-0.12.2-r4.ebuild?rev=1.1&content-type=text/plain

Index: libtorrent-0.12.2-r4.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/libtorrent-0.12.2-r4.ebuild,v 1.1 2008/08/26 21:17:15 loki_val Exp $

inherit autotools eutils toolchain-funcs flag-o-matic libtool

DESCRIPTION="LibTorrent is a BitTorrent library written in C++ for *nix."
HOMEPAGE="http://libtorrent.rakshasa.no/"
SRC_URI="http://libtorrent.rakshasa.no/downloads/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"

IUSE="debug ipv6"

RDEPEND=">=dev-libs/libsigc++-2"
DEPEND="${RDEPEND}
	dev-util/pkgconfig"

src_unpack() {
	unpack ${A}
	cd "${S}"
	epatch "${FILESDIR}"/${PN}-0.11.9+gcc-4.3.patch
	epatch "${FILESDIR}"/${P}-dht_bounds_fix.patch
	epatch "${FILESDIR}"/${P}-fix_cull.patch
	epatch "${FILESDIR}"/${P}-fix_dht_target.patch
	epatch "${FILESDIR}"/${P}-fix_have_timer.patch
	epatch "${FILESDIR}"/${P}-fix_pex_leak.patch
	epatch "${FILESDIR}"/${P}-fix_write_datagram.patch
	epatch "${FILESDIR}"/${P}-lt-ver.patch
	epatch "${FILESDIR}"/${P}-tracker_timer_fix.patch
	epatch "${FILESDIR}"/${P}-fix_dht-get_peers.patch

	elibtoolize #Don't remove
	eautoreconf
}

src_compile() {
	replace-flags -Os -O2

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

	econf \
		$(use_enable debug) \
		$(use_enable ipv6) \
		--enable-aligned \
		--enable-static \
		--enable-shared \
		--disable-dependency-tracking \
		|| die "econf failed"

	emake || die "emake failed"
}

src_install() {
	emake DESTDIR="${D}" install || die "make install failed"
	dodoc AUTHORS NEWS README
}






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

* [gentoo-commits] gentoo-x86 commit in net-libs/libtorrent: ChangeLog libtorrent-0.12.2-r4.ebuild
@ 2008-09-25 20:49 Kenneth Prugh (ken69267)
  0 siblings, 0 replies; 6+ messages in thread
From: Kenneth Prugh (ken69267) @ 2008-09-25 20:49 UTC (permalink / raw
  To: gentoo-commits

ken69267    08/09/25 20:49:53

  Modified:             ChangeLog libtorrent-0.12.2-r4.ebuild
  Log:
  amd64 stable, bug #238611
  (Portage version: 2.2_rc9/cvs/Linux 2.6.26-gentoo-r1 x86_64)

Revision  Changes    Path
1.125                net-libs/libtorrent/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libtorrent/ChangeLog?rev=1.125&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libtorrent/ChangeLog?rev=1.125&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libtorrent/ChangeLog?r1=1.124&r2=1.125

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libtorrent/ChangeLog,v
retrieving revision 1.124
retrieving revision 1.125
diff -u -r1.124 -r1.125
--- ChangeLog	16 Sep 2008 07:11:42 -0000	1.124
+++ ChangeLog	25 Sep 2008 20:49:52 -0000	1.125
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/libtorrent
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/ChangeLog,v 1.124 2008/09/16 07:11:42 loki_val Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/ChangeLog,v 1.125 2008/09/25 20:49:52 ken69267 Exp $
+
+  25 Sep 2008; Kenneth Prugh <ken69267@gentoo.org>
+  libtorrent-0.12.2-r4.ebuild:
+  amd64 stable, bug #238611
 
 *libtorrent-0.12.3 (16 Sep 2008)
 



1.2                  net-libs/libtorrent/libtorrent-0.12.2-r4.ebuild

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

Index: libtorrent-0.12.2-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libtorrent/libtorrent-0.12.2-r4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libtorrent-0.12.2-r4.ebuild	26 Aug 2008 21:17:15 -0000	1.1
+++ libtorrent-0.12.2-r4.ebuild	25 Sep 2008 20:49:52 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/libtorrent-0.12.2-r4.ebuild,v 1.1 2008/08/26 21:17:15 loki_val Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/libtorrent-0.12.2-r4.ebuild,v 1.2 2008/09/25 20:49:52 ken69267 Exp $
 
 inherit autotools eutils toolchain-funcs flag-o-matic libtool
 
@@ -9,7 +9,7 @@
 SRC_URI="http://libtorrent.rakshasa.no/downloads/${P}.tar.gz"
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
 
 IUSE="debug ipv6"
 






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

* [gentoo-commits] gentoo-x86 commit in net-libs/libtorrent: ChangeLog libtorrent-0.12.2-r4.ebuild
@ 2008-09-26 16:16 Jeroen Roovers (jer)
  0 siblings, 0 replies; 6+ messages in thread
From: Jeroen Roovers (jer) @ 2008-09-26 16:16 UTC (permalink / raw
  To: gentoo-commits

jer         08/09/26 16:16:21

  Modified:             ChangeLog libtorrent-0.12.2-r4.ebuild
  Log:
  Stable for HPPA (bug #238611).
  (Portage version: 2.2_rc9/cvs/Linux 2.6.25-gentoo-r7-JeR i686)

Revision  Changes    Path
1.126                net-libs/libtorrent/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libtorrent/ChangeLog?rev=1.126&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libtorrent/ChangeLog?rev=1.126&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libtorrent/ChangeLog?r1=1.125&r2=1.126

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libtorrent/ChangeLog,v
retrieving revision 1.125
retrieving revision 1.126
diff -u -r1.125 -r1.126
--- ChangeLog	25 Sep 2008 20:49:52 -0000	1.125
+++ ChangeLog	26 Sep 2008 16:16:20 -0000	1.126
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/libtorrent
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/ChangeLog,v 1.125 2008/09/25 20:49:52 ken69267 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/ChangeLog,v 1.126 2008/09/26 16:16:20 jer Exp $
+
+  26 Sep 2008; Jeroen Roovers <jer@gentoo.org> libtorrent-0.12.2-r4.ebuild:
+  Stable for HPPA (bug #238611).
 
   25 Sep 2008; Kenneth Prugh <ken69267@gentoo.org>
   libtorrent-0.12.2-r4.ebuild:



1.3                  net-libs/libtorrent/libtorrent-0.12.2-r4.ebuild

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

Index: libtorrent-0.12.2-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libtorrent/libtorrent-0.12.2-r4.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libtorrent-0.12.2-r4.ebuild	25 Sep 2008 20:49:52 -0000	1.2
+++ libtorrent-0.12.2-r4.ebuild	26 Sep 2008 16:16:20 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/libtorrent-0.12.2-r4.ebuild,v 1.2 2008/09/25 20:49:52 ken69267 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/libtorrent-0.12.2-r4.ebuild,v 1.3 2008/09/26 16:16:20 jer Exp $
 
 inherit autotools eutils toolchain-funcs flag-o-matic libtool
 
@@ -9,7 +9,7 @@
 SRC_URI="http://libtorrent.rakshasa.no/downloads/${P}.tar.gz"
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
 
 IUSE="debug ipv6"
 






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

* [gentoo-commits] gentoo-x86 commit in net-libs/libtorrent: ChangeLog libtorrent-0.12.2-r4.ebuild
@ 2008-09-27 10:37 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 6+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2008-09-27 10:37 UTC (permalink / raw
  To: gentoo-commits

nixnut      08/09/27 10:37:40

  Modified:             ChangeLog libtorrent-0.12.2-r4.ebuild
  Log:
  Stable on ppc wrt bug 238611
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.127                net-libs/libtorrent/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libtorrent/ChangeLog?rev=1.127&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libtorrent/ChangeLog?rev=1.127&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libtorrent/ChangeLog?r1=1.126&r2=1.127

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libtorrent/ChangeLog,v
retrieving revision 1.126
retrieving revision 1.127
diff -u -r1.126 -r1.127
--- ChangeLog	26 Sep 2008 16:16:20 -0000	1.126
+++ ChangeLog	27 Sep 2008 10:37:40 -0000	1.127
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/libtorrent
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/ChangeLog,v 1.126 2008/09/26 16:16:20 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/ChangeLog,v 1.127 2008/09/27 10:37:40 nixnut Exp $
+
+  27 Sep 2008; nixnut <nixnut@gentoo.org> libtorrent-0.12.2-r4.ebuild:
+  Stable on ppc wrt bug 238611
 
   26 Sep 2008; Jeroen Roovers <jer@gentoo.org> libtorrent-0.12.2-r4.ebuild:
   Stable for HPPA (bug #238611).



1.4                  net-libs/libtorrent/libtorrent-0.12.2-r4.ebuild

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

Index: libtorrent-0.12.2-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libtorrent/libtorrent-0.12.2-r4.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libtorrent-0.12.2-r4.ebuild	26 Sep 2008 16:16:20 -0000	1.3
+++ libtorrent-0.12.2-r4.ebuild	27 Sep 2008 10:37:40 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/libtorrent-0.12.2-r4.ebuild,v 1.3 2008/09/26 16:16:20 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/libtorrent-0.12.2-r4.ebuild,v 1.4 2008/09/27 10:37:40 nixnut Exp $
 
 inherit autotools eutils toolchain-funcs flag-o-matic libtool
 
@@ -9,7 +9,7 @@
 SRC_URI="http://libtorrent.rakshasa.no/downloads/${P}.tar.gz"
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="amd64 hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 hppa ~ia64 ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
 
 IUSE="debug ipv6"
 






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

* [gentoo-commits] gentoo-x86 commit in net-libs/libtorrent: ChangeLog libtorrent-0.12.2-r4.ebuild
@ 2008-09-27 12:04 Dawid Weglinski (cla)
  0 siblings, 0 replies; 6+ messages in thread
From: Dawid Weglinski (cla) @ 2008-09-27 12:04 UTC (permalink / raw
  To: gentoo-commits

cla         08/09/27 12:04:28

  Modified:             ChangeLog libtorrent-0.12.2-r4.ebuild
  Log:
  Stable on x86 (bug #238611)
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.128                net-libs/libtorrent/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libtorrent/ChangeLog?rev=1.128&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libtorrent/ChangeLog?rev=1.128&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libtorrent/ChangeLog?r1=1.127&r2=1.128

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libtorrent/ChangeLog,v
retrieving revision 1.127
retrieving revision 1.128
diff -u -r1.127 -r1.128
--- ChangeLog	27 Sep 2008 10:37:40 -0000	1.127
+++ ChangeLog	27 Sep 2008 12:04:28 -0000	1.128
@@ -1,6 +1,10 @@
 # ChangeLog for net-libs/libtorrent
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/ChangeLog,v 1.127 2008/09/27 10:37:40 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/ChangeLog,v 1.128 2008/09/27 12:04:28 cla Exp $
+
+  27 Sep 2008; Dawid Węgliński <cla@gentoo.org>
+  libtorrent-0.12.2-r4.ebuild:
+  Stable on x86 (bug #238611)
 
   27 Sep 2008; nixnut <nixnut@gentoo.org> libtorrent-0.12.2-r4.ebuild:
   Stable on ppc wrt bug 238611



1.5                  net-libs/libtorrent/libtorrent-0.12.2-r4.ebuild

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

Index: libtorrent-0.12.2-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libtorrent/libtorrent-0.12.2-r4.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- libtorrent-0.12.2-r4.ebuild	27 Sep 2008 10:37:40 -0000	1.4
+++ libtorrent-0.12.2-r4.ebuild	27 Sep 2008 12:04:28 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/libtorrent-0.12.2-r4.ebuild,v 1.4 2008/09/27 10:37:40 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/libtorrent-0.12.2-r4.ebuild,v 1.5 2008/09/27 12:04:28 cla Exp $
 
 inherit autotools eutils toolchain-funcs flag-o-matic libtool
 
@@ -9,7 +9,7 @@
 SRC_URI="http://libtorrent.rakshasa.no/downloads/${P}.tar.gz"
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="amd64 hppa ~ia64 ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 hppa ~ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 
 IUSE="debug ipv6"
 






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

* [gentoo-commits] gentoo-x86 commit in net-libs/libtorrent: ChangeLog libtorrent-0.12.2-r4.ebuild
@ 2008-10-04 12:57 Brent Baude (ranger)
  0 siblings, 0 replies; 6+ messages in thread
From: Brent Baude (ranger) @ 2008-10-04 12:57 UTC (permalink / raw
  To: gentoo-commits

ranger      08/10/04 12:57:07

  Modified:             ChangeLog libtorrent-0.12.2-r4.ebuild
  Log:
  Marking libtorrent-0.12.2-r4 ppc64 for bug 238611
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.129                net-libs/libtorrent/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libtorrent/ChangeLog?rev=1.129&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libtorrent/ChangeLog?rev=1.129&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/libtorrent/ChangeLog?r1=1.128&r2=1.129

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libtorrent/ChangeLog,v
retrieving revision 1.128
retrieving revision 1.129
diff -u -r1.128 -r1.129
--- ChangeLog	27 Sep 2008 12:04:28 -0000	1.128
+++ ChangeLog	4 Oct 2008 12:57:07 -0000	1.129
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/libtorrent
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/ChangeLog,v 1.128 2008/09/27 12:04:28 cla Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/ChangeLog,v 1.129 2008/10/04 12:57:07 ranger Exp $
+
+  04 Oct 2008; Brent Baude <ranger@gentoo.org> libtorrent-0.12.2-r4.ebuild:
+  Marking libtorrent-0.12.2-r4 ppc64 for bug 238611
 
   27 Sep 2008; Dawid Węgliński <cla@gentoo.org>
   libtorrent-0.12.2-r4.ebuild:



1.6                  net-libs/libtorrent/libtorrent-0.12.2-r4.ebuild

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

Index: libtorrent-0.12.2-r4.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libtorrent/libtorrent-0.12.2-r4.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- libtorrent-0.12.2-r4.ebuild	27 Sep 2008 12:04:28 -0000	1.5
+++ libtorrent-0.12.2-r4.ebuild	4 Oct 2008 12:57:07 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2008 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/libtorrent-0.12.2-r4.ebuild,v 1.5 2008/09/27 12:04:28 cla Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libtorrent/libtorrent-0.12.2-r4.ebuild,v 1.6 2008/10/04 12:57:07 ranger Exp $
 
 inherit autotools eutils toolchain-funcs flag-o-matic libtool
 
@@ -9,7 +9,7 @@
 SRC_URI="http://libtorrent.rakshasa.no/downloads/${P}.tar.gz"
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="amd64 hppa ~ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="amd64 hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd"
 
 IUSE="debug ipv6"
 






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

end of thread, other threads:[~2008-10-04 12:57 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-26 16:16 [gentoo-commits] gentoo-x86 commit in net-libs/libtorrent: ChangeLog libtorrent-0.12.2-r4.ebuild Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2008-10-04 12:57 Brent Baude (ranger)
2008-09-27 12:04 Dawid Weglinski (cla)
2008-09-27 10:37 Gysbert Wassenaar (nixnut)
2008-09-25 20:49 Kenneth Prugh (ken69267)
2008-08-26 21:17 Peter Alfredsen (loki_val)

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