public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-libs/rasqal: ChangeLog rasqal-0.9.16.ebuild
@ 2008-08-05 14:53 Alexis Ballier (aballier)
  0 siblings, 0 replies; 11+ messages in thread
From: Alexis Ballier (aballier) @ 2008-08-05 14:53 UTC (permalink / raw
  To: gentoo-commits

aballier    08/08/05 14:53:28

  Modified:             ChangeLog
  Added:                rasqal-0.9.16.ebuild
  Log:
  version bump
  (Portage version: 2.2_rc6/cvs/Linux 2.6.25.7 x86_64)

Revision  Changes    Path
1.21                 dev-libs/rasqal/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?r1=1.20&r2=1.21

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	12 May 2008 09:29:01 -0000	1.20
+++ ChangeLog	5 Aug 2008 14:53:27 -0000	1.21
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/rasqal
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.20 2008/05/12 09:29:01 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.21 2008/08/05 14:53:27 aballier Exp $
+
+*rasqal-0.9.16 (05 Aug 2008)
+
+  05 Aug 2008; Alexis Ballier <aballier@gentoo.org> +rasqal-0.9.16.ebuild:
+  version bump
 
   12 May 2008; Alexis Ballier <aballier@gentoo.org> rasqal-0.9.10.ebuild,
   rasqal-0.9.15.ebuild:



1.1                  dev-libs/rasqal/rasqal-0.9.16.ebuild

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

Index: rasqal-0.9.16.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild,v 1.1 2008/08/05 14:53:27 aballier Exp $

inherit libtool

DESCRIPTION="library that handles Resource Description Framework (RDF)"
HOMEPAGE="http://librdf.org/rasqal"
SRC_URI="http://download.librdf.org/source/${P}.tar.gz"

LICENSE="LGPL-2.1 Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86"
IUSE="debug gmp pcre test xml"

RDEPEND=">=media-libs/raptor-1.4.16
	pcre? ( dev-libs/libpcre )
	xml? ( dev-libs/libxml2 )
	!gmp? ( dev-libs/mpfr )
	gmp? ( dev-libs/gmp )
	debug? ( >=dev-libs/dmalloc-5.5.2-r2 )"
DEPEND="${RDEPEND}
	dev-util/pkgconfig
	sys-devel/flex
	test? ( dev-perl/XML-DOM )"

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

src_compile() {
	local regex
	local decimal

	if use pcre; then
		regex="pcre"
	else
		regex="posix"
	fi

	if use gmp; then
		decimal="gmp"
	else
		decimal="mpfr"
	fi

	econf $(use_enable pcre) $(use_enable xml xml2) $(use_with debug dmalloc) \
		$(use_enable debug maintainer-mode) --with-regex-library=${regex} \
		--with-decimal=${decimal} --with-raptor=system

	emake || die "emake failed."
}

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






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/rasqal: ChangeLog rasqal-0.9.16.ebuild
@ 2008-08-06 23:04 Alexis Ballier (aballier)
  0 siblings, 0 replies; 11+ messages in thread
From: Alexis Ballier (aballier) @ 2008-08-06 23:04 UTC (permalink / raw
  To: gentoo-commits

aballier    08/08/06 23:04:41

  Modified:             ChangeLog rasqal-0.9.16.ebuild
  Log:
  bump raptor version requirement, bug #234047
  (Portage version: 2.2_rc6/cvs/Linux 2.6.26-gentoo x86_64)

Revision  Changes    Path
1.22                 dev-libs/rasqal/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.22&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.22&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?r1=1.21&r2=1.22

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- ChangeLog	5 Aug 2008 14:53:27 -0000	1.21
+++ ChangeLog	6 Aug 2008 23:04:40 -0000	1.22
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/rasqal
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.21 2008/08/05 14:53:27 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.22 2008/08/06 23:04:40 aballier Exp $
+
+  06 Aug 2008; Alexis Ballier <aballier@gentoo.org> rasqal-0.9.16.ebuild:
+  bump raptor version requirement, bug #234047
 
 *rasqal-0.9.16 (05 Aug 2008)
 



1.2                  dev-libs/rasqal/rasqal-0.9.16.ebuild

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

Index: rasqal-0.9.16.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- rasqal-0.9.16.ebuild	5 Aug 2008 14:53:27 -0000	1.1
+++ rasqal-0.9.16.ebuild	6 Aug 2008 23:04:40 -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/dev-libs/rasqal/rasqal-0.9.16.ebuild,v 1.1 2008/08/05 14:53:27 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild,v 1.2 2008/08/06 23:04:40 aballier Exp $
 
 inherit libtool
 
@@ -13,7 +13,7 @@
 KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86"
 IUSE="debug gmp pcre test xml"
 
-RDEPEND=">=media-libs/raptor-1.4.16
+RDEPEND=">=media-libs/raptor-1.4.17
 	pcre? ( dev-libs/libpcre )
 	xml? ( dev-libs/libxml2 )
 	!gmp? ( dev-libs/mpfr )






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/rasqal: ChangeLog rasqal-0.9.16.ebuild
@ 2008-08-21 19:31 Friedrich Oslage (bluebird)
  0 siblings, 0 replies; 11+ messages in thread
From: Friedrich Oslage (bluebird) @ 2008-08-21 19:31 UTC (permalink / raw
  To: gentoo-commits

bluebird    08/08/21 19:31:44

  Modified:             ChangeLog rasqal-0.9.16.ebuild
  Log:
  Add ~sparc keyword at user request, bug #234871
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.23                 dev-libs/rasqal/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?r1=1.22&r2=1.23

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog	6 Aug 2008 23:04:40 -0000	1.22
+++ ChangeLog	21 Aug 2008 19:31:44 -0000	1.23
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/rasqal
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.22 2008/08/06 23:04:40 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.23 2008/08/21 19:31:44 bluebird Exp $
+
+  21 Aug 2008; Friedrich Oslage <bluebird@gentoo.org> rasqal-0.9.16.ebuild:
+  Add ~sparc keyword at user request, bug #234871
 
   06 Aug 2008; Alexis Ballier <aballier@gentoo.org> rasqal-0.9.16.ebuild:
   bump raptor version requirement, bug #234047



1.3                  dev-libs/rasqal/rasqal-0.9.16.ebuild

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

Index: rasqal-0.9.16.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- rasqal-0.9.16.ebuild	6 Aug 2008 23:04:40 -0000	1.2
+++ rasqal-0.9.16.ebuild	21 Aug 2008 19:31:44 -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-libs/rasqal/rasqal-0.9.16.ebuild,v 1.2 2008/08/06 23:04:40 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild,v 1.3 2008/08/21 19:31:44 bluebird Exp $
 
 inherit libtool
 
@@ -10,7 +10,7 @@
 
 LICENSE="LGPL-2.1 Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="debug gmp pcre test xml"
 
 RDEPEND=">=media-libs/raptor-1.4.17






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/rasqal: ChangeLog rasqal-0.9.16.ebuild
@ 2009-03-12 17:27 Jeroen Roovers (jer)
  0 siblings, 0 replies; 11+ messages in thread
From: Jeroen Roovers (jer) @ 2009-03-12 17:27 UTC (permalink / raw
  To: gentoo-commits

jer         09/03/12 17:27:18

  Modified:             ChangeLog rasqal-0.9.16.ebuild
  Log:
  Marked ~hppa (bug #260777).
  (Portage version: 2.2_rc24/cvs/Linux i686)

Revision  Changes    Path
1.24                 dev-libs/rasqal/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?r1=1.23&r2=1.24

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog	21 Aug 2008 19:31:44 -0000	1.23
+++ ChangeLog	12 Mar 2009 17:27:18 -0000	1.24
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/rasqal
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.23 2008/08/21 19:31:44 bluebird Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.24 2009/03/12 17:27:18 jer Exp $
+
+  12 Mar 2009; Jeroen Roovers <jer@gentoo.org> rasqal-0.9.16.ebuild:
+  Marked ~hppa (bug #260777).
 
   21 Aug 2008; Friedrich Oslage <bluebird@gentoo.org> rasqal-0.9.16.ebuild:
   Add ~sparc keyword at user request, bug #234871



1.4                  dev-libs/rasqal/rasqal-0.9.16.ebuild

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

Index: rasqal-0.9.16.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- rasqal-0.9.16.ebuild	21 Aug 2008 19:31:44 -0000	1.3
+++ rasqal-0.9.16.ebuild	12 Mar 2009 17:27:18 -0000	1.4
@@ -1,6 +1,6 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild,v 1.3 2008/08/21 19:31:44 bluebird Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild,v 1.4 2009/03/12 17:27:18 jer Exp $
 
 inherit libtool
 
@@ -10,7 +10,7 @@
 
 LICENSE="LGPL-2.1 Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="debug gmp pcre test xml"
 
 RDEPEND=">=media-libs/raptor-1.4.17






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/rasqal: ChangeLog rasqal-0.9.16.ebuild
@ 2009-05-12 14:20 Ferris McCormick (fmccor)
  0 siblings, 0 replies; 11+ messages in thread
From: Ferris McCormick (fmccor) @ 2009-05-12 14:20 UTC (permalink / raw
  To: gentoo-commits

fmccor      09/05/12 14:20:32

  Modified:             ChangeLog rasqal-0.9.16.ebuild
  Log:
  Sparc stable, bug #269523.
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.26                 dev-libs/rasqal/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?r1=1.25&r2=1.26

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog	12 May 2009 07:26:57 -0000	1.25
+++ ChangeLog	12 May 2009 14:20:32 -0000	1.26
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/rasqal
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.25 2009/05/12 07:26:57 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.26 2009/05/12 14:20:32 fmccor Exp $
+
+  12 May 2009; Ferris McCormick <fmccor@gentoo.org> rasqal-0.9.16.ebuild:
+  Sparc stable, bug #269523.
 
   12 May 2009; Samuli Suominen <ssuominen@gentoo.org> -rasqal-0.9.15.ebuild,
   rasqal-0.9.16.ebuild:



1.6                  dev-libs/rasqal/rasqal-0.9.16.ebuild

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

Index: rasqal-0.9.16.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- rasqal-0.9.16.ebuild	12 May 2009 07:26:57 -0000	1.5
+++ rasqal-0.9.16.ebuild	12 May 2009 14:20:32 -0000	1.6
@@ -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-libs/rasqal/rasqal-0.9.16.ebuild,v 1.5 2009/05/12 07:26:57 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild,v 1.6 2009/05/12 14:20:32 fmccor Exp $
 
 EAPI=2
 inherit libtool
@@ -11,7 +11,7 @@
 
 LICENSE="LGPL-2.1 Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 sparc ~x86"
 IUSE="gmp pcre test xml"
 
 RDEPEND=">=media-libs/raptor-1.4.17






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/rasqal: ChangeLog rasqal-0.9.16.ebuild
@ 2009-05-13 13:59 Jeroen Roovers (jer)
  0 siblings, 0 replies; 11+ messages in thread
From: Jeroen Roovers (jer) @ 2009-05-13 13:59 UTC (permalink / raw
  To: gentoo-commits

jer         09/05/13 13:59:02

  Modified:             ChangeLog rasqal-0.9.16.ebuild
  Log:
  Stable for HPPA (bug #269523).
  (Portage version: 2.2_rc33/cvs/Linux i686)

Revision  Changes    Path
1.27                 dev-libs/rasqal/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?r1=1.26&r2=1.27

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	12 May 2009 14:20:32 -0000	1.26
+++ ChangeLog	13 May 2009 13:59:01 -0000	1.27
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/rasqal
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.26 2009/05/12 14:20:32 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.27 2009/05/13 13:59:01 jer Exp $
+
+  13 May 2009; Jeroen Roovers <jer@gentoo.org> rasqal-0.9.16.ebuild:
+  Stable for HPPA (bug #269523).
 
   12 May 2009; Ferris McCormick <fmccor@gentoo.org> rasqal-0.9.16.ebuild:
   Sparc stable, bug #269523.



1.7                  dev-libs/rasqal/rasqal-0.9.16.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild?r1=1.6&r2=1.7

Index: rasqal-0.9.16.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- rasqal-0.9.16.ebuild	12 May 2009 14:20:32 -0000	1.6
+++ rasqal-0.9.16.ebuild	13 May 2009 13:59:01 -0000	1.7
@@ -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-libs/rasqal/rasqal-0.9.16.ebuild,v 1.6 2009/05/12 14:20:32 fmccor Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild,v 1.7 2009/05/13 13:59:01 jer Exp $
 
 EAPI=2
 inherit libtool
@@ -11,7 +11,7 @@
 
 LICENSE="LGPL-2.1 Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 sparc ~x86"
+KEYWORDS="~amd64 hppa ~ia64 ~ppc ~ppc64 sparc ~x86"
 IUSE="gmp pcre test xml"
 
 RDEPEND=">=media-libs/raptor-1.4.17






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/rasqal: ChangeLog rasqal-0.9.16.ebuild
@ 2009-05-14 20:19 Markus Meier (maekke)
  0 siblings, 0 replies; 11+ messages in thread
From: Markus Meier (maekke) @ 2009-05-14 20:19 UTC (permalink / raw
  To: gentoo-commits

maekke      09/05/14 20:19:48

  Modified:             ChangeLog rasqal-0.9.16.ebuild
  Log:
  amd64/x86 stable, bug #269523
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.28                 dev-libs/rasqal/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?r1=1.27&r2=1.28

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	13 May 2009 13:59:01 -0000	1.27
+++ ChangeLog	14 May 2009 20:19:48 -0000	1.28
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/rasqal
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.27 2009/05/13 13:59:01 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.28 2009/05/14 20:19:48 maekke Exp $
+
+  14 May 2009; Markus Meier <maekke@gentoo.org> rasqal-0.9.16.ebuild:
+  amd64/x86 stable, bug #269523
 
   13 May 2009; Jeroen Roovers <jer@gentoo.org> rasqal-0.9.16.ebuild:
   Stable for HPPA (bug #269523).



1.8                  dev-libs/rasqal/rasqal-0.9.16.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild?r1=1.7&r2=1.8

Index: rasqal-0.9.16.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- rasqal-0.9.16.ebuild	13 May 2009 13:59:01 -0000	1.7
+++ rasqal-0.9.16.ebuild	14 May 2009 20:19:48 -0000	1.8
@@ -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-libs/rasqal/rasqal-0.9.16.ebuild,v 1.7 2009/05/13 13:59:01 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild,v 1.8 2009/05/14 20:19:48 maekke Exp $
 
 EAPI=2
 inherit libtool
@@ -11,7 +11,7 @@
 
 LICENSE="LGPL-2.1 Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 hppa ~ia64 ~ppc ~ppc64 sparc ~x86"
+KEYWORDS="amd64 hppa ~ia64 ~ppc ~ppc64 sparc x86"
 IUSE="gmp pcre test xml"
 
 RDEPEND=">=media-libs/raptor-1.4.17






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/rasqal: ChangeLog rasqal-0.9.16.ebuild
@ 2009-05-19 20:33 Brent Baude (ranger)
  0 siblings, 0 replies; 11+ messages in thread
From: Brent Baude (ranger) @ 2009-05-19 20:33 UTC (permalink / raw
  To: gentoo-commits

ranger      09/05/19 20:33:12

  Modified:             ChangeLog rasqal-0.9.16.ebuild
  Log:
  stable ppc64, bug 269523
  (Portage version: 2.1.6.13/cvs/Linux ppc64)

Revision  Changes    Path
1.29                 dev-libs/rasqal/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.29&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.29&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?r1=1.28&r2=1.29

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog	14 May 2009 20:19:48 -0000	1.28
+++ ChangeLog	19 May 2009 20:33:12 -0000	1.29
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/rasqal
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.28 2009/05/14 20:19:48 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.29 2009/05/19 20:33:12 ranger Exp $
+
+  19 May 2009; Brent Baude <ranger@gentoo.org> rasqal-0.9.16.ebuild:
+  stable ppc64, bug 269523
 
   14 May 2009; Markus Meier <maekke@gentoo.org> rasqal-0.9.16.ebuild:
   amd64/x86 stable, bug #269523



1.9                  dev-libs/rasqal/rasqal-0.9.16.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild?r1=1.8&r2=1.9

Index: rasqal-0.9.16.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- rasqal-0.9.16.ebuild	14 May 2009 20:19:48 -0000	1.8
+++ rasqal-0.9.16.ebuild	19 May 2009 20:33:12 -0000	1.9
@@ -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-libs/rasqal/rasqal-0.9.16.ebuild,v 1.8 2009/05/14 20:19:48 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild,v 1.9 2009/05/19 20:33:12 ranger Exp $
 
 EAPI=2
 inherit libtool
@@ -11,7 +11,7 @@
 
 LICENSE="LGPL-2.1 Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 hppa ~ia64 ~ppc ~ppc64 sparc x86"
+KEYWORDS="amd64 hppa ~ia64 ~ppc ppc64 sparc x86"
 IUSE="gmp pcre test xml"
 
 RDEPEND=">=media-libs/raptor-1.4.17






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/rasqal: ChangeLog rasqal-0.9.16.ebuild
@ 2009-05-21 21:06 Brent Baude (ranger)
  0 siblings, 0 replies; 11+ messages in thread
From: Brent Baude (ranger) @ 2009-05-21 21:06 UTC (permalink / raw
  To: gentoo-commits

ranger      09/05/21 21:06:23

  Modified:             ChangeLog rasqal-0.9.16.ebuild
  Log:
  stable ppc, bug 269523
  (Portage version: 2.1.6.11/cvs/Linux ppc64)

Revision  Changes    Path
1.30                 dev-libs/rasqal/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?r1=1.29&r2=1.30

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog	19 May 2009 20:33:12 -0000	1.29
+++ ChangeLog	21 May 2009 21:06:23 -0000	1.30
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/rasqal
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.29 2009/05/19 20:33:12 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.30 2009/05/21 21:06:23 ranger Exp $
+
+  21 May 2009; Brent Baude <ranger@gentoo.org> rasqal-0.9.16.ebuild:
+  stable ppc, bug 269523
 
   19 May 2009; Brent Baude <ranger@gentoo.org> rasqal-0.9.16.ebuild:
   stable ppc64, bug 269523



1.10                 dev-libs/rasqal/rasqal-0.9.16.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild?r1=1.9&r2=1.10

Index: rasqal-0.9.16.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- rasqal-0.9.16.ebuild	19 May 2009 20:33:12 -0000	1.9
+++ rasqal-0.9.16.ebuild	21 May 2009 21:06:23 -0000	1.10
@@ -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-libs/rasqal/rasqal-0.9.16.ebuild,v 1.9 2009/05/19 20:33:12 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild,v 1.10 2009/05/21 21:06:23 ranger Exp $
 
 EAPI=2
 inherit libtool
@@ -11,7 +11,7 @@
 
 LICENSE="LGPL-2.1 Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 hppa ~ia64 ~ppc ppc64 sparc x86"
+KEYWORDS="amd64 hppa ~ia64 ppc ppc64 sparc x86"
 IUSE="gmp pcre test xml"
 
 RDEPEND=">=media-libs/raptor-1.4.17






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/rasqal: ChangeLog rasqal-0.9.16.ebuild
@ 2009-05-22 15:43 Raul Porcel (armin76)
  0 siblings, 0 replies; 11+ messages in thread
From: Raul Porcel (armin76) @ 2009-05-22 15:43 UTC (permalink / raw
  To: gentoo-commits

armin76     09/05/22 15:43:16

  Modified:             ChangeLog rasqal-0.9.16.ebuild
  Log:
  ia64 stable wrt #269523
  (Portage version: 2.1.6.11/cvs/Linux ia64)

Revision  Changes    Path
1.31                 dev-libs/rasqal/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?r1=1.30&r2=1.31

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog	21 May 2009 21:06:23 -0000	1.30
+++ ChangeLog	22 May 2009 15:43:16 -0000	1.31
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/rasqal
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.30 2009/05/21 21:06:23 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.31 2009/05/22 15:43:16 armin76 Exp $
+
+  22 May 2009; Raúl Porcel <armin76@gentoo.org> rasqal-0.9.16.ebuild:
+  ia64 stable wrt #269523
 
   21 May 2009; Brent Baude <ranger@gentoo.org> rasqal-0.9.16.ebuild:
   stable ppc, bug 269523



1.11                 dev-libs/rasqal/rasqal-0.9.16.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild?r1=1.10&r2=1.11

Index: rasqal-0.9.16.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- rasqal-0.9.16.ebuild	21 May 2009 21:06:23 -0000	1.10
+++ rasqal-0.9.16.ebuild	22 May 2009 15:43:16 -0000	1.11
@@ -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-libs/rasqal/rasqal-0.9.16.ebuild,v 1.10 2009/05/21 21:06:23 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild,v 1.11 2009/05/22 15:43:16 armin76 Exp $
 
 EAPI=2
 inherit libtool
@@ -11,7 +11,7 @@
 
 LICENSE="LGPL-2.1 Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 hppa ~ia64 ppc ppc64 sparc x86"
+KEYWORDS="amd64 hppa ia64 ppc ppc64 sparc x86"
 IUSE="gmp pcre test xml"
 
 RDEPEND=">=media-libs/raptor-1.4.17






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/rasqal: ChangeLog rasqal-0.9.16.ebuild
@ 2009-06-22 13:10 Alexis Ballier (aballier)
  0 siblings, 0 replies; 11+ messages in thread
From: Alexis Ballier (aballier) @ 2009-06-22 13:10 UTC (permalink / raw
  To: gentoo-commits

aballier    09/06/22 13:10:03

  Modified:             ChangeLog rasqal-0.9.16.ebuild
  Log:
  keyword ~x86-fbsd
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.32                 dev-libs/rasqal/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.32&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.32&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/ChangeLog?r1=1.31&r2=1.32

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog	22 May 2009 15:43:16 -0000	1.31
+++ ChangeLog	22 Jun 2009 13:10:03 -0000	1.32
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/rasqal
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.31 2009/05/22 15:43:16 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.32 2009/06/22 13:10:03 aballier Exp $
+
+  22 Jun 2009; Alexis Ballier <aballier@gentoo.org> rasqal-0.9.16.ebuild:
+  keyword ~x86-fbsd
 
   22 May 2009; Raúl Porcel <armin76@gentoo.org> rasqal-0.9.16.ebuild:
   ia64 stable wrt #269523



1.12                 dev-libs/rasqal/rasqal-0.9.16.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild?r1=1.11&r2=1.12

Index: rasqal-0.9.16.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- rasqal-0.9.16.ebuild	22 May 2009 15:43:16 -0000	1.11
+++ rasqal-0.9.16.ebuild	22 Jun 2009 13:10:03 -0000	1.12
@@ -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-libs/rasqal/rasqal-0.9.16.ebuild,v 1.11 2009/05/22 15:43:16 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.16.ebuild,v 1.12 2009/06/22 13:10:03 aballier Exp $
 
 EAPI=2
 inherit libtool
@@ -11,7 +11,7 @@
 
 LICENSE="LGPL-2.1 Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 hppa ia64 ppc ppc64 sparc x86"
+KEYWORDS="amd64 hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
 IUSE="gmp pcre test xml"
 
 RDEPEND=">=media-libs/raptor-1.4.17






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

end of thread, other threads:[~2009-06-22 13:10 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-12 17:27 [gentoo-commits] gentoo-x86 commit in dev-libs/rasqal: ChangeLog rasqal-0.9.16.ebuild Jeroen Roovers (jer)
  -- strict thread matches above, loose matches on Subject: below --
2009-06-22 13:10 Alexis Ballier (aballier)
2009-05-22 15:43 Raul Porcel (armin76)
2009-05-21 21:06 Brent Baude (ranger)
2009-05-19 20:33 Brent Baude (ranger)
2009-05-14 20:19 Markus Meier (maekke)
2009-05-13 13:59 Jeroen Roovers (jer)
2009-05-12 14:20 Ferris McCormick (fmccor)
2008-08-21 19:31 Friedrich Oslage (bluebird)
2008-08-06 23:04 Alexis Ballier (aballier)
2008-08-05 14:53 Alexis Ballier (aballier)

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