public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-util/valgrind: valgrind-3.4.1.ebuild ChangeLog
@ 2009-03-03 18:57 Maurice van der Pot (griffon26)
  0 siblings, 0 replies; 5+ messages in thread
From: Maurice van der Pot (griffon26) @ 2009-03-03 18:57 UTC (permalink / raw
  To: gentoo-commits

griffon26    09/03/03 18:57:33

  Modified:             ChangeLog
  Added:                valgrind-3.4.1.ebuild
  Log:
  Added bug-fix release valgrind-3.4.1.
  (Portage version: 2.1.6.7/cvs/Linux x86_64)

Revision  Changes    Path
1.99                 dev-util/valgrind/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -r1.98 -r1.99
--- ChangeLog	13 Jan 2009 17:24:07 -0000	1.98
+++ ChangeLog	3 Mar 2009 18:57:33 -0000	1.99
@@ -1,6 +1,12 @@
 # ChangeLog for dev-util/valgrind
 # Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v 1.98 2009/01/13 17:24:07 dertobi123 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v 1.99 2009/03/03 18:57:33 griffon26 Exp $
+
+*valgrind-3.4.1 (03 Mar 2009)
+
+  03 Mar 2009; Maurice van der Pot <griffon26@gentoo.org>
+  +valgrind-3.4.1.ebuild:
+  Added bug-fix release valgrind-3.4.1.
 
   13 Jan 2009; Tobias Scherbaum <dertobi123@gentoo.org>
   valgrind-3.4.0.ebuild:



1.1                  dev-util/valgrind/valgrind-3.4.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valgrind/valgrind-3.4.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valgrind/valgrind-3.4.1.ebuild?rev=1.1&content-type=text/plain

Index: valgrind-3.4.1.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/valgrind-3.4.1.ebuild,v 1.1 2009/03/03 18:57:33 griffon26 Exp $

inherit autotools eutils flag-o-matic toolchain-funcs

DESCRIPTION="An open-source memory debugger for GNU/Linux"
HOMEPAGE="http://www.valgrind.org"
SRC_URI="http://www.valgrind.org/downloads/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* ~amd64 ~ppc ~ppc64 ~x86"
IUSE=""

RDEPEND="!dev-util/callgrind"

src_unpack() {
	unpack ${A}
	cd "${S}"

	# make sure our CFLAGS are respected
	einfo "Changing configure.in to respect CFLAGS"
	sed -i -e 's:^CFLAGS="-Wno-long-long":CFLAGS="$CFLAGS -Wno-long-long":' configure.in

	# undefined references to __guard and __stack_smash_handler in VEX (bug #114347)
	einfo "Changing Makefile.flags.am to disable SSP"
	sed -i -e 's:^AM_CFLAGS_BASE = :AM_CFLAGS_BASE = -fno-stack-protector :' Makefile.flags.am

	# Correct hard coded doc location
	sed -i -e "s:doc/valgrind:doc/${P}:" docs/Makefile.am

	# Remove defaulting to ppc32-linux on ppc64 without multilib
	# "valgrind: failed to start tool 'memcheck' for platform 'ppc32-linux':
	#  No such file or directory"
	if use ppc64 && ! has_multilib_profile; then
		epatch "${FILESDIR}/valgrind-3.3.0-only64bit.patch"
	fi

	# Use local labels in inline asm to prevent 'symbol already defined' errors
	# when optimisation is on (bug #234644).
	epatch "${FILESDIR}/valgrind-3.3.1-local-labels.patch"

	# Regenerate autotools files
	eautoreconf
}

src_compile() {
	local myconf

	# -fomit-frame-pointer	"Assembler messages: Error: junk `8' after expression"
	#                       while compiling insn_sse.c in none/tests/x86
	# -fpie                 valgrind seemingly hangs when built with pie on
	#                       amd64 (bug #102157)
	# -fstack-protector     more undefined references to __guard and __stack_smash_handler
	#                       because valgrind doesn't link to glibc (bug #114347)
	# -ggdb3                segmentation fault on startup
	filter-flags -fomit-frame-pointer
	filter-flags -fpie
	filter-flags -fstack-protector
	replace-flags -ggdb3 -ggdb2

	# gcc 3.3.x fails to compile valgrind with -O3 (bug #129776)
	if [ "$(gcc-version)" == "3.3" ] && is-flagq -O3; then
		ewarn "GCC 3.3 cannot compile valgrind with -O3 in CFLAGS, using -O2 instead."
		replace-flags -O3 -O2
	fi

	if use amd64 || use ppc64; then
		! has_multilib_profile && myconf="${myconf} --enable-only64bit"
	fi

	econf ${myconf} --without-mpicc || die "Configure failed!"
	emake || die "Make failed!"
}

src_install() {
	make DESTDIR="${D}" install || die "Install failed!"
	dodoc ACKNOWLEDGEMENTS AUTHORS FAQ.txt NEWS README*
}

pkg_postinst() {
	if use ppc || use ppc64 ; then
		ewarn "Valgrind will not work on ppc or ppc64 if glibc does not have"
		ewarn "debug symbols (see https://bugs.gentoo.org/show_bug.cgi?id=214065)"
		ewarn "To fix this you can add splitdebug to FEATURES in make.conf and"
		ewarn "remerge glibc."
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in dev-util/valgrind: valgrind-3.4.1.ebuild ChangeLog
@ 2009-07-21 14:29 Tony Vroon (chainsaw)
  0 siblings, 0 replies; 5+ messages in thread
From: Tony Vroon (chainsaw) @ 2009-07-21 14:29 UTC (permalink / raw
  To: gentoo-commits

chainsaw    09/07/21 14:29:47

  Modified:             valgrind-3.4.1.ebuild ChangeLog
  Log:
  Marked stable on AMD64 as requested by Olivier Crete <tester@gentoo.org> in bug #278534.
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  dev-util/valgrind/valgrind-3.4.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valgrind/valgrind-3.4.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valgrind/valgrind-3.4.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valgrind/valgrind-3.4.1.ebuild?r1=1.1&r2=1.2

Index: valgrind-3.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/valgrind/valgrind-3.4.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- valgrind-3.4.1.ebuild	3 Mar 2009 18:57:33 -0000	1.1
+++ valgrind-3.4.1.ebuild	21 Jul 2009 14:29:47 -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/dev-util/valgrind/valgrind-3.4.1.ebuild,v 1.1 2009/03/03 18:57:33 griffon26 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/valgrind-3.4.1.ebuild,v 1.2 2009/07/21 14:29:47 chainsaw Exp $
 
 inherit autotools eutils flag-o-matic toolchain-funcs
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="-* ~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="-* amd64 ~ppc ~ppc64 ~x86"
 IUSE=""
 
 RDEPEND="!dev-util/callgrind"



1.100                dev-util/valgrind/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valgrind/ChangeLog?rev=1.100&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valgrind/ChangeLog?rev=1.100&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valgrind/ChangeLog?r1=1.99&r2=1.100

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- ChangeLog	3 Mar 2009 18:57:33 -0000	1.99
+++ ChangeLog	21 Jul 2009 14:29:47 -0000	1.100
@@ -1,6 +1,10 @@
 # ChangeLog for dev-util/valgrind
-# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v 1.99 2009/03/03 18:57:33 griffon26 Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v 1.100 2009/07/21 14:29:47 chainsaw Exp $
+
+  21 Jul 2009; <chainsaw@gentoo.org> valgrind-3.4.1.ebuild:
+  Marked stable on AMD64 as requested by Olivier Crete <tester@gentoo.org>
+  in bug #278534.
 
 *valgrind-3.4.1 (03 Mar 2009)
 






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

* [gentoo-commits] gentoo-x86 commit in dev-util/valgrind: valgrind-3.4.1.ebuild ChangeLog
@ 2009-07-22 16:08 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 5+ messages in thread
From: Christian Faulhammer (fauli) @ 2009-07-22 16:08 UTC (permalink / raw
  To: gentoo-commits

fauli       09/07/22 16:08:31

  Modified:             valgrind-3.4.1.ebuild ChangeLog
  Log:
  stable x86, bug 278534
  (Portage version: 2.1.6.13/cvs/Linux i686)

Revision  Changes    Path
1.3                  dev-util/valgrind/valgrind-3.4.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valgrind/valgrind-3.4.1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valgrind/valgrind-3.4.1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valgrind/valgrind-3.4.1.ebuild?r1=1.2&r2=1.3

Index: valgrind-3.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/valgrind/valgrind-3.4.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- valgrind-3.4.1.ebuild	21 Jul 2009 14:29:47 -0000	1.2
+++ valgrind-3.4.1.ebuild	22 Jul 2009 16:08:31 -0000	1.3
@@ -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/dev-util/valgrind/valgrind-3.4.1.ebuild,v 1.2 2009/07/21 14:29:47 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/valgrind-3.4.1.ebuild,v 1.3 2009/07/22 16:08:31 fauli Exp $
 
 inherit autotools eutils flag-o-matic toolchain-funcs
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="-* amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="-* amd64 ~ppc ~ppc64 x86"
 IUSE=""
 
 RDEPEND="!dev-util/callgrind"



1.101                dev-util/valgrind/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valgrind/ChangeLog?rev=1.101&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valgrind/ChangeLog?rev=1.101&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valgrind/ChangeLog?r1=1.100&r2=1.101

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v
retrieving revision 1.100
retrieving revision 1.101
diff -u -r1.100 -r1.101
--- ChangeLog	21 Jul 2009 14:29:47 -0000	1.100
+++ ChangeLog	22 Jul 2009 16:08:31 -0000	1.101
@@ -1,6 +1,10 @@
 # ChangeLog for dev-util/valgrind
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v 1.100 2009/07/21 14:29:47 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v 1.101 2009/07/22 16:08:31 fauli Exp $
+
+  22 Jul 2009; Christian Faulhammer <fauli@gentoo.org>
+  valgrind-3.4.1.ebuild:
+  stable x86, bug 278534
 
   21 Jul 2009; <chainsaw@gentoo.org> valgrind-3.4.1.ebuild:
   Marked stable on AMD64 as requested by Olivier Crete <tester@gentoo.org>






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

* [gentoo-commits] gentoo-x86 commit in dev-util/valgrind: valgrind-3.4.1.ebuild ChangeLog
@ 2009-07-22 20:23 Joseph Jezak (josejx)
  0 siblings, 0 replies; 5+ messages in thread
From: Joseph Jezak (josejx) @ 2009-07-22 20:23 UTC (permalink / raw
  To: gentoo-commits

josejx      09/07/22 20:23:50

  Modified:             valgrind-3.4.1.ebuild ChangeLog
  Log:
  Marked ppc stable for bug #278534.
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  dev-util/valgrind/valgrind-3.4.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valgrind/valgrind-3.4.1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valgrind/valgrind-3.4.1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valgrind/valgrind-3.4.1.ebuild?r1=1.3&r2=1.4

Index: valgrind-3.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/valgrind/valgrind-3.4.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- valgrind-3.4.1.ebuild	22 Jul 2009 16:08:31 -0000	1.3
+++ valgrind-3.4.1.ebuild	22 Jul 2009 20:23:50 -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/dev-util/valgrind/valgrind-3.4.1.ebuild,v 1.3 2009/07/22 16:08:31 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/valgrind-3.4.1.ebuild,v 1.4 2009/07/22 20:23:50 josejx Exp $
 
 inherit autotools eutils flag-o-matic toolchain-funcs
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="-* amd64 ~ppc ~ppc64 x86"
+KEYWORDS="-* amd64 ppc ~ppc64 x86"
 IUSE=""
 
 RDEPEND="!dev-util/callgrind"



1.102                dev-util/valgrind/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valgrind/ChangeLog?rev=1.102&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valgrind/ChangeLog?rev=1.102&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valgrind/ChangeLog?r1=1.101&r2=1.102

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v
retrieving revision 1.101
retrieving revision 1.102
diff -u -r1.101 -r1.102
--- ChangeLog	22 Jul 2009 16:08:31 -0000	1.101
+++ ChangeLog	22 Jul 2009 20:23:50 -0000	1.102
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/valgrind
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v 1.101 2009/07/22 16:08:31 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v 1.102 2009/07/22 20:23:50 josejx Exp $
+
+  22 Jul 2009; Joseph Jezak <josejx@gentoo.org> valgrind-3.4.1.ebuild:
+  Marked ppc stable for bug #278534.
 
   22 Jul 2009; Christian Faulhammer <fauli@gentoo.org>
   valgrind-3.4.1.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in dev-util/valgrind: valgrind-3.4.1.ebuild ChangeLog
@ 2009-08-31 18:09 Brent Baude (ranger)
  0 siblings, 0 replies; 5+ messages in thread
From: Brent Baude (ranger) @ 2009-08-31 18:09 UTC (permalink / raw
  To: gentoo-commits

ranger      09/08/31 18:09:38

  Modified:             valgrind-3.4.1.ebuild ChangeLog
  Log:
  Marking valgrind-3.4.1 ppc64 for bug 278534
  (Portage version: 2.1.6.13/cvs/Linux ppc64)

Revision  Changes    Path
1.5                  dev-util/valgrind/valgrind-3.4.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valgrind/valgrind-3.4.1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valgrind/valgrind-3.4.1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valgrind/valgrind-3.4.1.ebuild?r1=1.4&r2=1.5

Index: valgrind-3.4.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/valgrind/valgrind-3.4.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- valgrind-3.4.1.ebuild	22 Jul 2009 20:23:50 -0000	1.4
+++ valgrind-3.4.1.ebuild	31 Aug 2009 18:09:37 -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/dev-util/valgrind/valgrind-3.4.1.ebuild,v 1.4 2009/07/22 20:23:50 josejx Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/valgrind-3.4.1.ebuild,v 1.5 2009/08/31 18:09:37 ranger Exp $
 
 inherit autotools eutils flag-o-matic toolchain-funcs
 
@@ -10,7 +10,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="-* amd64 ppc ~ppc64 x86"
+KEYWORDS="-* amd64 ppc ppc64 x86"
 IUSE=""
 
 RDEPEND="!dev-util/callgrind"



1.105                dev-util/valgrind/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valgrind/ChangeLog?rev=1.105&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valgrind/ChangeLog?rev=1.105&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/valgrind/ChangeLog?r1=1.104&r2=1.105

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v
retrieving revision 1.104
retrieving revision 1.105
diff -u -r1.104 -r1.105
--- ChangeLog	8 Aug 2009 18:20:17 -0000	1.104
+++ ChangeLog	31 Aug 2009 18:09:37 -0000	1.105
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/valgrind
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v 1.104 2009/08/08 18:20:17 griffon26 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v 1.105 2009/08/31 18:09:37 ranger Exp $
+
+  31 Aug 2009; Brent Baude <ranger@gentoo.org> valgrind-3.4.1.ebuild:
+  Marking valgrind-3.4.1 ppc64 for bug 278534
 
   08 Aug 2009; Maurice van der Pot <griffon26@gentoo.org>
   valgrind-3.4.1-r1.ebuild, +files/valgrind-3.4.1-local-labels.patch,






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

end of thread, other threads:[~2009-08-31 13:00 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-31 18:09 [gentoo-commits] gentoo-x86 commit in dev-util/valgrind: valgrind-3.4.1.ebuild ChangeLog Brent Baude (ranger)
  -- strict thread matches above, loose matches on Subject: below --
2009-07-22 20:23 Joseph Jezak (josejx)
2009-07-22 16:08 Christian Faulhammer (fauli)
2009-07-21 14:29 Tony Vroon (chainsaw)
2009-03-03 18:57 Maurice van der Pot (griffon26)

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