public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: ChangeLog boost-build-1.42.0.ebuild
@ 2010-03-03 12:32 Dirkjan Ochtman (djc)
  0 siblings, 0 replies; 10+ messages in thread
From: Dirkjan Ochtman (djc) @ 2010-03-03 12:32 UTC (permalink / raw
  To: gentoo-commits

djc         10/03/03 12:32:09

  Modified:             ChangeLog
  Added:                boost-build-1.42.0.ebuild
  Log:
  Version bump dev-util/boost-build to 1.42.0.
  (Portage version: 2.1.7.16/cvs/Linux x86_64)

Revision  Changes    Path
1.49                 dev-util/boost-build/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog	3 Mar 2010 10:54:48 -0000	1.48
+++ ChangeLog	3 Mar 2010 12:32:08 -0000	1.49
@@ -1,6 +1,12 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.48 2010/03/03 10:54:48 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.49 2010/03/03 12:32:08 djc Exp $
+
+*boost-build-1.42.0 (03 Mar 2010)
+
+  03 Mar 2010; Dirkjan Ochtman <djc@gentoo.org>
+  +files/boost-1.42-fix-mpich2-detection.patch, +boost-build-1.42.0.ebuild:
+  Version bump to dev-util/boost-build-1.42.0.
 
   03 Mar 2010; Christian Faulhammer <fauli@gentoo.org>
   boost-build-1.41.0.ebuild:



1.1                  dev-util/boost-build/boost-build-1.42.0.ebuild

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

Index: boost-build-1.42.0.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild,v 1.1 2010/03/03 12:32:08 djc Exp $

EAPI="2"

inherit flag-o-matic toolchain-funcs versionator

MY_PV=$(replace_all_version_separators _)
MAJOR_PV="$(replace_all_version_separators _ $(get_version_component_range 1-2))"

DESCRIPTION="A system for large project software construction, which is simple to use and powerful."
HOMEPAGE="http://www.boost.org/doc/tools/build/index.html"
SRC_URI="mirror://sourceforge/boost/boost_${MY_PV}.tar.bz2"
LICENSE="Boost-1.0"
SLOT="$(get_version_component_range 1-2)"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE="examples python"

DEPEND="!<dev-libs/boost-1.34.0
	!<=dev-util/boost-build-1.35.0-r1
	python? ( dev-lang/python )"
RDEPEND="${DEPEND}"

S="${WORKDIR}/boost_${MY_PV}/tools"

pkg_setup() {
	ewarn "Compilation of boost-build is known to break if {C,LD}FLAGS contain"
	ewarn "extra white space (bug 293652)"
}

src_unpack() {
	tar xjpf "${DISTDIR}/${A}" boost_${MY_PV}/tools/{jam,build/v2} || die
}

src_prepare() {
	epatch "${FILESDIR}/boost-1.42-fix-mpich2-detection.patch"

	# Remove stripping option
	cd "${S}/jam/src"
	sed -i -e 's|-s\b||' \
		build.jam || die "sed failed"

	# Force regeneration
	rm jambase.c

	# This patch allows us to fully control optimization
	# and stripping flags when bjam is used as build-system
	# We simply extend the optimization and debug-symbols feature
	# with empty dummies called 'none'
	cd "${S}/build/v2"
	sed -i \
		-e 's/\(off speed space\)/\1 none/' \
		-e 's/\(debug-symbols      : on off\)/\1 none/' \
		tools/builtin.jam || die "sed failed"
}

src_compile() {
	cd jam/src
	local toolset

	if [[ ${CHOST} == *-darwin* ]] ; then
		toolset=darwin
	else
		# Using boost's generic toolset here, which respects CC and CFLAGS
		toolset=cc
	fi

	append-flags -fno-strict-aliasing

	# For slotting
	sed -i \
		-e "s|/usr/share/boost-build|/usr/share/boost-build-${MAJOR_PV}|" \
		Jambase || die "sed failed"

	# The build.jam file for building bjam using a bootstrapped jam0 ignores
	# the LDFLAGS env var (bug #209794). We have now two options:
	# a) change the cc-target definition in build.jam to include separate compile
	#    and link targets to make it use the LDFLAGS var, or
	# b) a simple dirty workaround by injecting the LDFLAGS in the LIBS env var
	#    (which should not be set by us).
	if [[ -z "${LDFLAGS}" ]] ; then
		CC=$(tc-getCC) ./build.sh ${toolset} $(use_with python) \
			|| die "building bjam failed"
	else
		LIBS=${LDFLAGS} CC=$(tc-getCC) ./build.sh ${toolset} \
			$(use_with python) || die "building bjam failed"
	fi
}

src_install() {
	newbin jam/src/bin.*/bjam bjam-${MAJOR_PV}

	cd "${S}/build/v2"
	insinto /usr/share/boost-build-${MAJOR_PV}
	doins -r boost-build.jam bootstrap.jam build-system.jam site-config.jam user-config.jam \
		build kernel options tools util || die

	dodoc changes.txt hacking.txt release_procedure.txt \
		notes/build_dir_option.txt notes/relative_source_paths.txt

	if use examples ; then
		insinto /usr/share/doc/${PF}
		doins -r example
	fi
}

src_test() {
	cd jam/test
	./test.sh || die "tests failed"
}






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

* [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: ChangeLog boost-build-1.42.0.ebuild
@ 2010-11-24 14:51 Jeroen Roovers (jer)
  0 siblings, 0 replies; 10+ messages in thread
From: Jeroen Roovers (jer) @ 2010-11-24 14:51 UTC (permalink / raw
  To: gentoo-commits

jer         10/11/24 14:51:25

  Modified:             ChangeLog boost-build-1.42.0.ebuild
  Log:
  Stable for HPPA (bug #344677).
  
  (Portage version: 2.1.9.24/cvs/Linux i686)

Revision  Changes    Path
1.58                 dev-util/boost-build/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.58&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.58&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?r1=1.57&r2=1.58

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -r1.57 -r1.58
--- ChangeLog	19 Sep 2010 17:52:31 -0000	1.57
+++ ChangeLog	24 Nov 2010 14:51:25 -0000	1.58
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.57 2010/09/19 17:52:31 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.58 2010/11/24 14:51:25 jer Exp $
+
+  24 Nov 2010; Jeroen Roovers <jer@gentoo.org> boost-build-1.42.0.ebuild:
+  Stable for HPPA (bug #344677).
 
   19 Sep 2010; Raúl Porcel <armin76@gentoo.org> boost-build-1.41.0.ebuild:
   s390 stable wrt #306335



1.3                  dev-util/boost-build/boost-build-1.42.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild?r1=1.2&r2=1.3

Index: boost-build-1.42.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- boost-build-1.42.0.ebuild	14 Aug 2010 06:35:54 -0000	1.2
+++ boost-build-1.42.0.ebuild	24 Nov 2010 14:51:25 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild,v 1.2 2010/08/14 06:35:54 dirtyepic Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild,v 1.3 2010/11/24 14:51:25 jer Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 SRC_URI="mirror://sourceforge/boost/boost_${MY_PV}.tar.bz2"
 LICENSE="Boost-1.0"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
 IUSE="examples python"
 
 DEPEND="!<dev-libs/boost-1.34.0






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

* [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: ChangeLog boost-build-1.42.0.ebuild
@ 2011-01-01 23:57 Thomas Kahle (tomka)
  0 siblings, 0 replies; 10+ messages in thread
From: Thomas Kahle (tomka) @ 2011-01-01 23:57 UTC (permalink / raw
  To: gentoo-commits

tomka       11/01/01 23:57:41

  Modified:             ChangeLog boost-build-1.42.0.ebuild
  Log:
  x86 stable per bug 344677
  
  (Portage version: 2.1.9.26/cvs/Linux i686)

Revision  Changes    Path
1.61                 dev-util/boost-build/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.61&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.61&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?r1=1.60&r2=1.61

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- ChangeLog	12 Dec 2010 20:24:32 -0000	1.60
+++ ChangeLog	1 Jan 2011 23:57:40 -0000	1.61
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/boost-build
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.60 2010/12/12 20:24:32 hwoarang Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.61 2011/01/01 23:57:40 tomka Exp $
+
+  01 Jan 2011; Thomas Kahle <tomka@gentoo.org> boost-build-1.42.0.ebuild:
+  x86 stable per bug 344677
 
   12 Dec 2010; Markos Chandras <hwoarang@gentoo.org> metadata.xml:
   add myself on metadata



1.4                  dev-util/boost-build/boost-build-1.42.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild?r1=1.3&r2=1.4

Index: boost-build-1.42.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- boost-build-1.42.0.ebuild	24 Nov 2010 14:51:25 -0000	1.3
+++ boost-build-1.42.0.ebuild	1 Jan 2011 23:57:40 -0000	1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild,v 1.3 2010/11/24 14:51:25 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild,v 1.4 2011/01/01 23:57:40 tomka Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 SRC_URI="mirror://sourceforge/boost/boost_${MY_PV}.tar.bz2"
 LICENSE="Boost-1.0"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
 IUSE="examples python"
 
 DEPEND="!<dev-libs/boost-1.34.0






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

* [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: ChangeLog boost-build-1.42.0.ebuild
@ 2011-01-08  1:29 Brent Baude (ranger)
  0 siblings, 0 replies; 10+ messages in thread
From: Brent Baude (ranger) @ 2011-01-08  1:29 UTC (permalink / raw
  To: gentoo-commits

ranger      11/01/08 01:29:55

  Modified:             ChangeLog boost-build-1.42.0.ebuild
  Log:
  Marking boost-build-1.42.0 ppc for bug 344677
  
  (Portage version: 2.1.9.25/cvs/Linux ppc64)

Revision  Changes    Path
1.63                 dev-util/boost-build/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.63&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.63&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?r1=1.62&r2=1.63

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- ChangeLog	6 Jan 2011 14:00:10 -0000	1.62
+++ ChangeLog	8 Jan 2011 01:29:55 -0000	1.63
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.62 2011/01/06 14:00:10 dev-zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.63 2011/01/08 01:29:55 ranger Exp $
+
+  08 Jan 2011; Brent Baude <ranger@gentoo.org> boost-build-1.42.0.ebuild:
+  Marking boost-build-1.42.0 ppc for bug 344677
 
 *boost-build-1.45.0 (06 Jan 2011)
 



1.5                  dev-util/boost-build/boost-build-1.42.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild?r1=1.4&r2=1.5

Index: boost-build-1.42.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- boost-build-1.42.0.ebuild	1 Jan 2011 23:57:40 -0000	1.4
+++ boost-build-1.42.0.ebuild	8 Jan 2011 01:29:55 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild,v 1.4 2011/01/01 23:57:40 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild,v 1.5 2011/01/08 01:29:55 ranger Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 SRC_URI="mirror://sourceforge/boost/boost_${MY_PV}.tar.bz2"
 LICENSE="Boost-1.0"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
+KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86"
 IUSE="examples python"
 
 DEPEND="!<dev-libs/boost-1.34.0






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

* [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: ChangeLog boost-build-1.42.0.ebuild
@ 2011-01-10 12:26 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 10+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-01-10 12:26 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/01/10 12:26:51

  Modified:             ChangeLog boost-build-1.42.0.ebuild
  Log:
  Stable on amd64 wrt bug 344677
  
  (Portage version: 2.1.9.30/cvs/Linux x86_64)

Revision  Changes    Path
1.64                 dev-util/boost-build/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.64&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.64&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?r1=1.63&r2=1.64

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog	8 Jan 2011 01:29:55 -0000	1.63
+++ ChangeLog	10 Jan 2011 12:26:51 -0000	1.64
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.63 2011/01/08 01:29:55 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.64 2011/01/10 12:26:51 hwoarang Exp $
+
+  10 Jan 2011; Markos Chandras <hwoarang@gentoo.org> boost-build-1.42.0.ebuild:
+  Stable on amd64 wrt bug 344677
 
   08 Jan 2011; Brent Baude <ranger@gentoo.org> boost-build-1.42.0.ebuild:
   Marking boost-build-1.42.0 ppc for bug 344677



1.6                  dev-util/boost-build/boost-build-1.42.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild?r1=1.5&r2=1.6

Index: boost-build-1.42.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- boost-build-1.42.0.ebuild	8 Jan 2011 01:29:55 -0000	1.5
+++ boost-build-1.42.0.ebuild	10 Jan 2011 12:26:51 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild,v 1.5 2011/01/08 01:29:55 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild,v 1.6 2011/01/10 12:26:51 hwoarang Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 SRC_URI="mirror://sourceforge/boost/boost_${MY_PV}.tar.bz2"
 LICENSE="Boost-1.0"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86"
 IUSE="examples python"
 
 DEPEND="!<dev-libs/boost-1.34.0






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

* [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: ChangeLog boost-build-1.42.0.ebuild
@ 2011-02-21 21:33 Michael Weber (xmw)
  0 siblings, 0 replies; 10+ messages in thread
From: Michael Weber (xmw) @ 2011-02-21 21:33 UTC (permalink / raw
  To: gentoo-commits

xmw         11/02/21 21:33:48

  Modified:             ChangeLog boost-build-1.42.0.ebuild
  Log:
  sparc stable, bug 344677
  
  (Portage version: 2.1.9.25/cvs/Linux x86_64)

Revision  Changes    Path
1.65                 dev-util/boost-build/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.65&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.65&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?r1=1.64&r2=1.65

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- ChangeLog	10 Jan 2011 12:26:51 -0000	1.64
+++ ChangeLog	21 Feb 2011 21:33:48 -0000	1.65
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.64 2011/01/10 12:26:51 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.65 2011/02/21 21:33:48 xmw Exp $
+
+  21 Feb 2011; Michael Weber <xmw@gentoo.org> boost-build-1.42.0.ebuild:
+  sparc stable, bug 344677
 
   10 Jan 2011; Markos Chandras <hwoarang@gentoo.org> boost-build-1.42.0.ebuild:
   Stable on amd64 wrt bug 344677



1.7                  dev-util/boost-build/boost-build-1.42.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild?r1=1.6&r2=1.7

Index: boost-build-1.42.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- boost-build-1.42.0.ebuild	10 Jan 2011 12:26:51 -0000	1.6
+++ boost-build-1.42.0.ebuild	21 Feb 2011 21:33:48 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild,v 1.6 2011/01/10 12:26:51 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild,v 1.7 2011/02/21 21:33:48 xmw Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 SRC_URI="mirror://sourceforge/boost/boost_${MY_PV}.tar.bz2"
 LICENSE="Boost-1.0"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc x86"
 IUSE="examples python"
 
 DEPEND="!<dev-libs/boost-1.34.0






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

* [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: ChangeLog boost-build-1.42.0.ebuild
@ 2011-03-06  9:40 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 10+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-03-06  9:40 UTC (permalink / raw
  To: gentoo-commits

xarthisius    11/03/06 09:40:07

  Modified:             ChangeLog boost-build-1.42.0.ebuild
  Log:
  ppc64 stable wrt #344677
  
  (Portage version: 2.2.0_alpha26/cvs/Linux x86_64)

Revision  Changes    Path
1.66                 dev-util/boost-build/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.66&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.66&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?r1=1.65&r2=1.66

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ChangeLog	21 Feb 2011 21:33:48 -0000	1.65
+++ ChangeLog	6 Mar 2011 09:40:07 -0000	1.66
@@ -1,6 +1,10 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.65 2011/02/21 21:33:48 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.66 2011/03/06 09:40:07 xarthisius Exp $
+
+  06 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org>
+  boost-build-1.42.0.ebuild:
+  ppc64 stable wrt #344677
 
   21 Feb 2011; Michael Weber <xmw@gentoo.org> boost-build-1.42.0.ebuild:
   sparc stable, bug 344677



1.8                  dev-util/boost-build/boost-build-1.42.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild?r1=1.7&r2=1.8

Index: boost-build-1.42.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- boost-build-1.42.0.ebuild	21 Feb 2011 21:33:48 -0000	1.7
+++ boost-build-1.42.0.ebuild	6 Mar 2011 09:40:07 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild,v 1.7 2011/02/21 21:33:48 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild,v 1.8 2011/03/06 09:40:07 xarthisius Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 SRC_URI="mirror://sourceforge/boost/boost_${MY_PV}.tar.bz2"
 LICENSE="Boost-1.0"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc x86"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86"
 IUSE="examples python"
 
 DEPEND="!<dev-libs/boost-1.34.0






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

* [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: ChangeLog boost-build-1.42.0.ebuild
@ 2011-03-08 16:15 Tobias Klausmann (klausman)
  0 siblings, 0 replies; 10+ messages in thread
From: Tobias Klausmann (klausman) @ 2011-03-08 16:15 UTC (permalink / raw
  To: gentoo-commits

klausman    11/03/08 16:15:20

  Modified:             ChangeLog boost-build-1.42.0.ebuild
  Log:
  Stable on alpha, bug #344677
  
  (Portage version: 2.1.9.42/cvs/Linux x86_64)

Revision  Changes    Path
1.67                 dev-util/boost-build/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.67&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.67&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?r1=1.66&r2=1.67

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- ChangeLog	6 Mar 2011 09:40:07 -0000	1.66
+++ ChangeLog	8 Mar 2011 16:15:20 -0000	1.67
@@ -1,6 +1,10 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.66 2011/03/06 09:40:07 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.67 2011/03/08 16:15:20 klausman Exp $
+
+  08 Mar 2011; Tobias Klausmann <klausman@gentoo.org>
+  boost-build-1.42.0.ebuild:
+  Stable on alpha, bug #344677
 
   06 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org>
   boost-build-1.42.0.ebuild:



1.9                  dev-util/boost-build/boost-build-1.42.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild?r1=1.8&r2=1.9

Index: boost-build-1.42.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- boost-build-1.42.0.ebuild	6 Mar 2011 09:40:07 -0000	1.8
+++ boost-build-1.42.0.ebuild	8 Mar 2011 16:15:20 -0000	1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild,v 1.8 2011/03/06 09:40:07 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild,v 1.9 2011/03/08 16:15:20 klausman Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 SRC_URI="mirror://sourceforge/boost/boost_${MY_PV}.tar.bz2"
 LICENSE="Boost-1.0"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86"
+KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86"
 IUSE="examples python"
 
 DEPEND="!<dev-libs/boost-1.34.0






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

* [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: ChangeLog boost-build-1.42.0.ebuild
@ 2011-03-13  0:53 Markus Meier (maekke)
  0 siblings, 0 replies; 10+ messages in thread
From: Markus Meier (maekke) @ 2011-03-13  0:53 UTC (permalink / raw
  To: gentoo-commits

maekke      11/03/13 00:53:30

  Modified:             ChangeLog boost-build-1.42.0.ebuild
  Log:
  arm stable, bug #344677
  
  (Portage version: 2.1.9.42/cvs/Linux i686)

Revision  Changes    Path
1.68                 dev-util/boost-build/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.68&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.68&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?r1=1.67&r2=1.68

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -r1.67 -r1.68
--- ChangeLog	8 Mar 2011 16:15:20 -0000	1.67
+++ ChangeLog	13 Mar 2011 00:53:30 -0000	1.68
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.67 2011/03/08 16:15:20 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.68 2011/03/13 00:53:30 maekke Exp $
+
+  13 Mar 2011; Markus Meier <maekke@gentoo.org> boost-build-1.42.0.ebuild:
+  arm stable, bug #344677
 
   08 Mar 2011; Tobias Klausmann <klausman@gentoo.org>
   boost-build-1.42.0.ebuild:



1.10                 dev-util/boost-build/boost-build-1.42.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild?r1=1.9&r2=1.10

Index: boost-build-1.42.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- boost-build-1.42.0.ebuild	8 Mar 2011 16:15:20 -0000	1.9
+++ boost-build-1.42.0.ebuild	13 Mar 2011 00:53:30 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild,v 1.9 2011/03/08 16:15:20 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild,v 1.10 2011/03/13 00:53:30 maekke Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 SRC_URI="mirror://sourceforge/boost/boost_${MY_PV}.tar.bz2"
 LICENSE="Boost-1.0"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86"
 IUSE="examples python"
 
 DEPEND="!<dev-libs/boost-1.34.0






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

* [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: ChangeLog boost-build-1.42.0.ebuild
@ 2011-04-16 11:29 Raul Porcel (armin76)
  0 siblings, 0 replies; 10+ messages in thread
From: Raul Porcel (armin76) @ 2011-04-16 11:29 UTC (permalink / raw
  To: gentoo-commits

armin76     11/04/16 11:29:07

  Modified:             ChangeLog boost-build-1.42.0.ebuild
  Log:
  ia64/s390/sh stable wrt #344677
  
  (Portage version: 2.1.9.45/cvs/Linux ia64)

Revision  Changes    Path
1.70                 dev-util/boost-build/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.70&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?rev=1.70&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/ChangeLog?r1=1.69&r2=1.70

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- ChangeLog	22 Mar 2011 09:51:18 -0000	1.69
+++ ChangeLog	16 Apr 2011 11:29:07 -0000	1.70
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/boost-build
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.69 2011/03/22 09:51:18 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/ChangeLog,v 1.70 2011/04/16 11:29:07 armin76 Exp $
+
+  16 Apr 2011; Raúl Porcel <armin76@gentoo.org> boost-build-1.42.0.ebuild:
+  ia64/s390/sh stable wrt #344677
 
 *boost-build-1.46.1 (22 Mar 2011)
 



1.11                 dev-util/boost-build/boost-build-1.42.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild?r1=1.10&r2=1.11

Index: boost-build-1.42.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- boost-build-1.42.0.ebuild	13 Mar 2011 00:53:30 -0000	1.10
+++ boost-build-1.42.0.ebuild	16 Apr 2011 11:29:07 -0000	1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild,v 1.10 2011/03/13 00:53:30 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/boost-build/boost-build-1.42.0.ebuild,v 1.11 2011/04/16 11:29:07 armin76 Exp $
 
 EAPI="2"
 
@@ -14,7 +14,7 @@
 SRC_URI="mirror://sourceforge/boost/boost_${MY_PV}.tar.bz2"
 LICENSE="Boost-1.0"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86"
 IUSE="examples python"
 
 DEPEND="!<dev-libs/boost-1.34.0






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

end of thread, other threads:[~2011-04-16 11:29 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-24 14:51 [gentoo-commits] gentoo-x86 commit in dev-util/boost-build: ChangeLog boost-build-1.42.0.ebuild Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2011-04-16 11:29 Raul Porcel (armin76)
2011-03-13  0:53 Markus Meier (maekke)
2011-03-08 16:15 Tobias Klausmann (klausman)
2011-03-06  9:40 Kacper Kowalik (xarthisius)
2011-02-21 21:33 Michael Weber (xmw)
2011-01-10 12:26 Markos Chandras (hwoarang)
2011-01-08  1:29 Brent Baude (ranger)
2011-01-01 23:57 Thomas Kahle (tomka)
2010-03-03 12:32 Dirkjan Ochtman (djc)

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