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

griffon26    08/06/06 18:20:40

  Modified:             ChangeLog
  Added:                valgrind-3.3.1.ebuild
  Log:
  Bumped valgrind to version 3.3.1 (bug #225081).
  (Portage version: 2.1.5)

Revision  Changes    Path
1.88                 dev-util/valgrind/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- ChangeLog	18 May 2008 10:22:48 -0000	1.87
+++ ChangeLog	6 Jun 2008 18:20:39 -0000	1.88
@@ -1,6 +1,12 @@
 # ChangeLog for dev-util/valgrind
 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v 1.87 2008/05/18 10:22:48 griffon26 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v 1.88 2008/06/06 18:20:39 griffon26 Exp $
+
+*valgrind-3.3.1 (06 Jun 2008)
+
+  06 Jun 2008; Maurice van der Pot <griffon26@gentoo.org>
+  +valgrind-3.3.1.ebuild:
+  Version bump to 3.3.1 (closes bug #225081).
 
 *valgrind-3.3.0-r1 (18 May 2008)
 



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

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

Index: valgrind-3.3.1.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/valgrind-3.3.1.ebuild,v 1.1 2008/06/06 18:20:39 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="X"

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

	# Fix incorrect --libs output in valgrind.pc (bug #147904)
	epatch "${FILESDIR}/${PN}-3.2.3-pkg-config.patch"

	# 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

	# 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

	# Optionally build in X suppression files
	use X && myconf="--with-x" || myconf="--with-x=no"

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

	econf ${myconf} || 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
}



-- 
gentoo-commits@lists.gentoo.org mailing list



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

* [gentoo-commits] gentoo-x86 commit in dev-util/valgrind: ChangeLog valgrind-3.3.1.ebuild
@ 2008-08-13 20:29 Maurice van der Pot (griffon26)
  0 siblings, 0 replies; 5+ messages in thread
From: Maurice van der Pot (griffon26) @ 2008-08-13 20:29 UTC (permalink / raw
  To: gentoo-commits

griffon26    08/08/13 20:29:40

  Modified:             ChangeLog valgrind-3.3.1.ebuild
  Log:
  Fix error during compilation of tests for valgrind (bug #234644)
  (Portage version: 2.2_rc3/cvs/Linux 2.6.26 x86_64)

Revision  Changes    Path
1.90                 dev-util/valgrind/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- ChangeLog	27 Jul 2008 17:55:23 -0000	1.89
+++ ChangeLog	13 Aug 2008 20:29:40 -0000	1.90
@@ -1,6 +1,12 @@
 # ChangeLog for dev-util/valgrind
 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v 1.89 2008/07/27 17:55:23 tester Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v 1.90 2008/08/13 20:29:40 griffon26 Exp $
+
+  13 Aug 2008; Maurice van der Pot <griffon26@gentoo.org>
+  +files/valgrind-3.3.1-local-labels.patch, valgrind-3.3.1.ebuild:
+  Use local labels in inline asm to prevent duplicate definition of symbols
+  when optimisation is turned on (bug #234644 reported by Olivier Huber
+  <oli.huber@gmail.com>).
 
   27 Jul 2008; Olivier Crête <tester@gentoo.org> valgrind-3.3.0.ebuild,
   valgrind-3.3.0-r1.ebuild, valgrind-3.3.1.ebuild:



1.3                  dev-util/valgrind/valgrind-3.3.1.ebuild

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

Index: valgrind-3.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/valgrind/valgrind-3.3.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- valgrind-3.3.1.ebuild	27 Jul 2008 17:55:23 -0000	1.2
+++ valgrind-3.3.1.ebuild	13 Aug 2008 20:29:40 -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/dev-util/valgrind/valgrind-3.3.1.ebuild,v 1.2 2008/07/27 17:55:23 tester Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/valgrind-3.3.1.ebuild,v 1.3 2008/08/13 20:29:40 griffon26 Exp $
 
 inherit autotools eutils flag-o-matic toolchain-funcs
 
@@ -40,6 +40,10 @@
 		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
 }






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

* [gentoo-commits] gentoo-x86 commit in dev-util/valgrind: ChangeLog valgrind-3.3.1.ebuild
@ 2008-08-15 20:04 Markus Meier (maekke)
  0 siblings, 0 replies; 5+ messages in thread
From: Markus Meier (maekke) @ 2008-08-15 20:04 UTC (permalink / raw
  To: gentoo-commits

maekke      08/08/15 20:04:18

  Modified:             ChangeLog valgrind-3.3.1.ebuild
  Log:
  amd64/x86 stable, bug #234526
  (Portage version: 2.2_rc8/cvs/Linux 2.6.27-rc2 i686)

Revision  Changes    Path
1.91                 dev-util/valgrind/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- ChangeLog	13 Aug 2008 20:29:40 -0000	1.90
+++ ChangeLog	15 Aug 2008 20:04:17 -0000	1.91
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/valgrind
 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v 1.90 2008/08/13 20:29:40 griffon26 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v 1.91 2008/08/15 20:04:17 maekke Exp $
+
+  15 Aug 2008; Markus Meier <maekke@gentoo.org> valgrind-3.3.1.ebuild:
+  amd64/x86 stable, bug #234526
 
   13 Aug 2008; Maurice van der Pot <griffon26@gentoo.org>
   +files/valgrind-3.3.1-local-labels.patch, valgrind-3.3.1.ebuild:



1.4                  dev-util/valgrind/valgrind-3.3.1.ebuild

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

Index: valgrind-3.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/valgrind/valgrind-3.3.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- valgrind-3.3.1.ebuild	13 Aug 2008 20:29:40 -0000	1.3
+++ valgrind-3.3.1.ebuild	15 Aug 2008 20:04:17 -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/dev-util/valgrind/valgrind-3.3.1.ebuild,v 1.3 2008/08/13 20:29:40 griffon26 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/valgrind-3.3.1.ebuild,v 1.4 2008/08/15 20:04:17 maekke 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="X"
 
 RDEPEND="!dev-util/callgrind"






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

* [gentoo-commits] gentoo-x86 commit in dev-util/valgrind: ChangeLog valgrind-3.3.1.ebuild
@ 2008-08-16 16:29 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 5+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2008-08-16 16:29 UTC (permalink / raw
  To: gentoo-commits

nixnut      08/08/16 16:29:40

  Modified:             ChangeLog valgrind-3.3.1.ebuild
  Log:
  Stable on ppc wrt bug 234526
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.92                 dev-util/valgrind/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v
retrieving revision 1.91
retrieving revision 1.92
diff -u -r1.91 -r1.92
--- ChangeLog	15 Aug 2008 20:04:17 -0000	1.91
+++ ChangeLog	16 Aug 2008 16:29:39 -0000	1.92
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/valgrind
 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v 1.91 2008/08/15 20:04:17 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v 1.92 2008/08/16 16:29:39 nixnut Exp $
+
+  16 Aug 2008; nixnut <nixnut@gentoo.org> valgrind-3.3.1.ebuild:
+  Stable on ppc wrt bug 234526
 
   15 Aug 2008; Markus Meier <maekke@gentoo.org> valgrind-3.3.1.ebuild:
   amd64/x86 stable, bug #234526



1.5                  dev-util/valgrind/valgrind-3.3.1.ebuild

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

Index: valgrind-3.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/valgrind/valgrind-3.3.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- valgrind-3.3.1.ebuild	15 Aug 2008 20:04:17 -0000	1.4
+++ valgrind-3.3.1.ebuild	16 Aug 2008 16:29:40 -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/dev-util/valgrind/valgrind-3.3.1.ebuild,v 1.4 2008/08/15 20:04:17 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/valgrind-3.3.1.ebuild,v 1.5 2008/08/16 16:29:40 nixnut 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="X"
 
 RDEPEND="!dev-util/callgrind"






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

* [gentoo-commits] gentoo-x86 commit in dev-util/valgrind: ChangeLog valgrind-3.3.1.ebuild
@ 2008-08-24 11:42 Markus Rothe (corsair)
  0 siblings, 0 replies; 5+ messages in thread
From: Markus Rothe (corsair) @ 2008-08-24 11:42 UTC (permalink / raw
  To: gentoo-commits

corsair     08/08/24 11:42:00

  Modified:             ChangeLog valgrind-3.3.1.ebuild
  Log:
  Stable on ppc64; bug #234526
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.93                 dev-util/valgrind/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -r1.92 -r1.93
--- ChangeLog	16 Aug 2008 16:29:39 -0000	1.92
+++ ChangeLog	24 Aug 2008 11:41:59 -0000	1.93
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/valgrind
 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v 1.92 2008/08/16 16:29:39 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/ChangeLog,v 1.93 2008/08/24 11:41:59 corsair Exp $
+
+  24 Aug 2008; Markus Rothe <corsair@gentoo.org> valgrind-3.3.1.ebuild:
+  Stable on ppc64; bug #234526
 
   16 Aug 2008; nixnut <nixnut@gentoo.org> valgrind-3.3.1.ebuild:
   Stable on ppc wrt bug 234526



1.6                  dev-util/valgrind/valgrind-3.3.1.ebuild

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

Index: valgrind-3.3.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/valgrind/valgrind-3.3.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- valgrind-3.3.1.ebuild	16 Aug 2008 16:29:40 -0000	1.5
+++ valgrind-3.3.1.ebuild	24 Aug 2008 11:41:59 -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/dev-util/valgrind/valgrind-3.3.1.ebuild,v 1.5 2008/08/16 16:29:40 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/valgrind/valgrind-3.3.1.ebuild,v 1.6 2008/08/24 11:41:59 corsair 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="X"
 
 RDEPEND="!dev-util/callgrind"






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

end of thread, other threads:[~2008-08-24 11:42 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-24 11:42 [gentoo-commits] gentoo-x86 commit in dev-util/valgrind: ChangeLog valgrind-3.3.1.ebuild Markus Rothe (corsair)
  -- strict thread matches above, loose matches on Subject: below --
2008-08-16 16:29 Gysbert Wassenaar (nixnut)
2008-08-15 20:04 Markus Meier (maekke)
2008-08-13 20:29 Maurice van der Pot (griffon26)
2008-06-06 18:20 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