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.19.ebuild
@ 2010-04-25 13:33 Alexis Ballier (aballier)
  0 siblings, 0 replies; 7+ messages in thread
From: Alexis Ballier (aballier) @ 2010-04-25 13:33 UTC (permalink / raw
  To: gentoo-commits

aballier    10/04/25 13:33:34

  Modified:             ChangeLog
  Added:                rasqal-0.9.19.ebuild
  Log:
  version bump
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.42                 dev-libs/rasqal/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog	18 Apr 2010 13:58:20 -0000	1.41
+++ ChangeLog	25 Apr 2010 13:33:34 -0000	1.42
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/rasqal
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.41 2010/04/18 13:58:20 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.42 2010/04/25 13:33:34 aballier Exp $
+
+*rasqal-0.9.19 (25 Apr 2010)
+
+  25 Apr 2010; Alexis Ballier <aballier@gentoo.org> +rasqal-0.9.19.ebuild:
+  version bump
 
   18 Apr 2010; Samuli Suominen <ssuominen@gentoo.org> rasqal-0.9.17.ebuild:
   amd64 stable wrt #301306



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

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

Index: rasqal-0.9.19.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.19.ebuild,v 1.1 2010/04/25 13:33:34 aballier Exp $

EAPI=2
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="Apache-2.0 GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos"
IUSE="gmp pcre test xml"

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

src_prepare() {
	elibtoolize
}

src_configure() {
	use prefix || EPREFIX=
	local regex="posix"
	local decimal="mpfr"

	use pcre && regex="pcre"
	use gmp && decimal="gmp"

	econf \
		--disable-dependency-tracking \
		--with-raptor=system \
		$(use_enable pcre) \
		$(use_enable xml xml2) \
		--with-regex-library=${regex} \
		--with-decimal=${decimal} \
		--with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html
}

src_install() {
	emake DESTDIR="${D}" install || die
	dodoc AUTHORS ChangeLog NEWS README
	dohtml {NEWS,README,RELEASE}.html
}






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/rasqal: ChangeLog rasqal-0.9.19.ebuild
@ 2010-08-11 15:49 Tomas Chvatal (scarabeus)
  0 siblings, 0 replies; 7+ messages in thread
From: Tomas Chvatal (scarabeus) @ 2010-08-11 15:49 UTC (permalink / raw
  To: gentoo-commits

scarabeus    10/08/11 15:49:17

  Modified:             ChangeLog rasqal-0.9.19.ebuild
  Log:
  Disable static libs.
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.44                 dev-libs/rasqal/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.44&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.44&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/rasqal/ChangeLog?r1=1.43&r2=1.44

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog	3 Jul 2010 23:08:47 -0000	1.43
+++ ChangeLog	11 Aug 2010 15:49:17 -0000	1.44
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/rasqal
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.43 2010/07/03 23:08:47 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.44 2010/08/11 15:49:17 scarabeus Exp $
+
+  11 Aug 2010; Tomáš Chvátal <scarabeus@gentoo.org> rasqal-0.9.19.ebuild:
+  Disable static libs.
 
   03 Jul 2010; Samuli Suominen <ssuominen@gentoo.org> rasqal-0.9.17.ebuild:
   ppc64 stable wrt #301306



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

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

Index: rasqal-0.9.19.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.19.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- rasqal-0.9.19.ebuild	25 Apr 2010 13:33:34 -0000	1.1
+++ rasqal-0.9.19.ebuild	11 Aug 2010 15:49:17 -0000	1.2
@@ -1,8 +1,8 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.19.ebuild,v 1.1 2010/04/25 13:33:34 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.19.ebuild,v 1.2 2010/08/11 15:49:17 scarabeus Exp $
 
-EAPI=2
+EAPI=3
 inherit libtool
 
 DESCRIPTION="library that handles Resource Description Framework (RDF)"
@@ -29,7 +29,6 @@
 }
 
 src_configure() {
-	use prefix || EPREFIX=
 	local regex="posix"
 	local decimal="mpfr"
 
@@ -38,6 +37,7 @@
 
 	econf \
 		--disable-dependency-tracking \
+		--disable-static \
 		--with-raptor=system \
 		$(use_enable pcre) \
 		$(use_enable xml xml2) \






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/rasqal: ChangeLog rasqal-0.9.19.ebuild
@ 2011-08-02 20:19 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 7+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-08-02 20:19 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/08/02 20:19:28

  Modified:             ChangeLog rasqal-0.9.19.ebuild
  Log:
  Stable on amd64 wrt bug #376893
  
  (Portage version: 2.2.0_alpha46/cvs/Linux x86_64)

Revision  Changes    Path
1.56                 dev-libs/rasqal/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.56&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/rasqal/ChangeLog?rev=1.56&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/rasqal/ChangeLog?r1=1.55&r2=1.56

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- ChangeLog	29 Jul 2011 10:26:56 -0000	1.55
+++ ChangeLog	2 Aug 2011 20:19:28 -0000	1.56
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/rasqal
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.55 2011/07/29 10:26:56 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.56 2011/08/02 20:19:28 hwoarang Exp $
+
+  02 Aug 2011; Markos Chandras <hwoarang@gentoo.org> rasqal-0.9.19.ebuild:
+  Stable on amd64 wrt bug #376893
 
   29 Jul 2011; Samuli Suominen <ssuominen@gentoo.org> -rasqal-0.9.24.ebuild:
   [This is a placeholder. Please ignore.]



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

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

Index: rasqal-0.9.19.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.19.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- rasqal-0.9.19.ebuild	29 Jan 2011 21:43:08 -0000	1.5
+++ rasqal-0.9.19.ebuild	2 Aug 2011 20:19:28 -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-libs/rasqal/rasqal-0.9.19.ebuild,v 1.5 2011/01/29 21:43:08 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.19.ebuild,v 1.6 2011/08/02 20:19:28 hwoarang Exp $
 
 EAPI=3
 inherit libtool
@@ -11,7 +11,7 @@
 
 LICENSE="Apache-2.0 GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos"
 IUSE="gmp pcre test xml"
 
 RDEPEND=">=media-libs/raptor-1.4.18






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/rasqal: ChangeLog rasqal-0.9.19.ebuild
@ 2011-08-05 20:12 Jeroen Roovers (jer)
  0 siblings, 0 replies; 7+ messages in thread
From: Jeroen Roovers (jer) @ 2011-08-05 20:12 UTC (permalink / raw
  To: gentoo-commits

jer         11/08/05 20:12:07

  Modified:             ChangeLog rasqal-0.9.19.ebuild
  Log:
  Stable for HPPA (bug #376893).
  
  (Portage version: 2.2.0_alpha50/cvs/Linux x86_64)

Revision  Changes    Path
1.57                 dev-libs/rasqal/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog	2 Aug 2011 20:19:28 -0000	1.56
+++ ChangeLog	5 Aug 2011 20:12:07 -0000	1.57
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/rasqal
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.56 2011/08/02 20:19:28 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.57 2011/08/05 20:12:07 jer Exp $
+
+  05 Aug 2011; Jeroen Roovers <jer@gentoo.org> rasqal-0.9.19.ebuild:
+  Stable for HPPA (bug #376893).
 
   02 Aug 2011; Markos Chandras <hwoarang@gentoo.org> rasqal-0.9.19.ebuild:
   Stable on amd64 wrt bug #376893



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

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

Index: rasqal-0.9.19.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.19.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- rasqal-0.9.19.ebuild	2 Aug 2011 20:19:28 -0000	1.6
+++ rasqal-0.9.19.ebuild	5 Aug 2011 20:12:07 -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-libs/rasqal/rasqal-0.9.19.ebuild,v 1.6 2011/08/02 20:19:28 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.19.ebuild,v 1.7 2011/08/05 20:12:07 jer Exp $
 
 EAPI=3
 inherit libtool
@@ -11,7 +11,7 @@
 
 LICENSE="Apache-2.0 GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="amd64 ~arm hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos"
 IUSE="gmp pcre test xml"
 
 RDEPEND=">=media-libs/raptor-1.4.18






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/rasqal: ChangeLog rasqal-0.9.19.ebuild
@ 2011-08-07 15:29 Markus Meier (maekke)
  0 siblings, 0 replies; 7+ messages in thread
From: Markus Meier (maekke) @ 2011-08-07 15:29 UTC (permalink / raw
  To: gentoo-commits

maekke      11/08/07 15:29:38

  Modified:             ChangeLog rasqal-0.9.19.ebuild
  Log:
  x86 stable, bug #376893
  
  (Portage version: 2.1.10.10/cvs/Linux x86_64)

Revision  Changes    Path
1.58                 dev-libs/rasqal/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -r1.57 -r1.58
--- ChangeLog	5 Aug 2011 20:12:07 -0000	1.57
+++ ChangeLog	7 Aug 2011 15:29:38 -0000	1.58
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/rasqal
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.57 2011/08/05 20:12:07 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.58 2011/08/07 15:29:38 maekke Exp $
+
+  07 Aug 2011; Markus Meier <maekke@gentoo.org> rasqal-0.9.19.ebuild:
+  x86 stable, bug #376893
 
   05 Aug 2011; Jeroen Roovers <jer@gentoo.org> rasqal-0.9.19.ebuild:
   Stable for HPPA (bug #376893).



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

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

Index: rasqal-0.9.19.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.19.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- rasqal-0.9.19.ebuild	5 Aug 2011 20:12:07 -0000	1.7
+++ rasqal-0.9.19.ebuild	7 Aug 2011 15:29:38 -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-libs/rasqal/rasqal-0.9.19.ebuild,v 1.7 2011/08/05 20:12:07 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.19.ebuild,v 1.8 2011/08/07 15:29:38 maekke Exp $
 
 EAPI=3
 inherit libtool
@@ -11,7 +11,7 @@
 
 LICENSE="Apache-2.0 GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="amd64 ~arm hppa ~ppc ~ppc64 x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos"
 IUSE="gmp pcre test xml"
 
 RDEPEND=">=media-libs/raptor-1.4.18






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/rasqal: ChangeLog rasqal-0.9.19.ebuild
@ 2011-08-09 13:09 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 7+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2011-08-09 13:09 UTC (permalink / raw
  To: gentoo-commits

xarthisius    11/08/09 13:09:00

  Modified:             ChangeLog rasqal-0.9.19.ebuild
  Log:
  ppc/ppc64 stable wrt #376893
  
  (Portage version: 2.2.0_alpha50/cvs/Linux x86_64)

Revision  Changes    Path
1.59                 dev-libs/rasqal/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- ChangeLog	7 Aug 2011 15:29:38 -0000	1.58
+++ ChangeLog	9 Aug 2011 13:09:00 -0000	1.59
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/rasqal
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.58 2011/08/07 15:29:38 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.59 2011/08/09 13:09:00 xarthisius Exp $
+
+  09 Aug 2011; Kacper Kowalik <xarthisius@gentoo.org> rasqal-0.9.19.ebuild:
+  ppc/ppc64 stable wrt #376893
 
   07 Aug 2011; Markus Meier <maekke@gentoo.org> rasqal-0.9.19.ebuild:
   x86 stable, bug #376893



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

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

Index: rasqal-0.9.19.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.19.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- rasqal-0.9.19.ebuild	7 Aug 2011 15:29:38 -0000	1.8
+++ rasqal-0.9.19.ebuild	9 Aug 2011 13:09:00 -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-libs/rasqal/rasqal-0.9.19.ebuild,v 1.8 2011/08/07 15:29:38 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.19.ebuild,v 1.9 2011/08/09 13:09:00 xarthisius Exp $
 
 EAPI=3
 inherit libtool
@@ -11,7 +11,7 @@
 
 LICENSE="Apache-2.0 GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm hppa ~ppc ~ppc64 x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="amd64 ~arm hppa ppc ppc64 x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos"
 IUSE="gmp pcre test xml"
 
 RDEPEND=">=media-libs/raptor-1.4.18






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/rasqal: ChangeLog rasqal-0.9.19.ebuild
@ 2011-08-13 17:24 Markus Meier (maekke)
  0 siblings, 0 replies; 7+ messages in thread
From: Markus Meier (maekke) @ 2011-08-13 17:24 UTC (permalink / raw
  To: gentoo-commits

maekke      11/08/13 17:24:25

  Modified:             ChangeLog rasqal-0.9.19.ebuild
  Log:
  arm stable, bug #376893
  
  (Portage version: 2.1.10.10/cvs/Linux i686)

Revision  Changes    Path
1.60                 dev-libs/rasqal/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- ChangeLog	9 Aug 2011 13:09:00 -0000	1.59
+++ ChangeLog	13 Aug 2011 17:24:25 -0000	1.60
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/rasqal
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.59 2011/08/09 13:09:00 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/ChangeLog,v 1.60 2011/08/13 17:24:25 maekke Exp $
+
+  13 Aug 2011; Markus Meier <maekke@gentoo.org> rasqal-0.9.19.ebuild:
+  arm stable, bug #376893
 
   09 Aug 2011; Kacper Kowalik <xarthisius@gentoo.org> rasqal-0.9.19.ebuild:
   ppc/ppc64 stable wrt #376893



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

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

Index: rasqal-0.9.19.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.19.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- rasqal-0.9.19.ebuild	9 Aug 2011 13:09:00 -0000	1.9
+++ rasqal-0.9.19.ebuild	13 Aug 2011 17:24:25 -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-libs/rasqal/rasqal-0.9.19.ebuild,v 1.9 2011/08/09 13:09:00 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.19.ebuild,v 1.10 2011/08/13 17:24:25 maekke Exp $
 
 EAPI=3
 inherit libtool
@@ -11,7 +11,7 @@
 
 LICENSE="Apache-2.0 GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm hppa ppc ppc64 x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="amd64 arm hppa ppc ppc64 x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos"
 IUSE="gmp pcre test xml"
 
 RDEPEND=">=media-libs/raptor-1.4.18






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

end of thread, other threads:[~2011-08-13 17:24 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-07 15:29 [gentoo-commits] gentoo-x86 commit in dev-libs/rasqal: ChangeLog rasqal-0.9.19.ebuild Markus Meier (maekke)
  -- strict thread matches above, loose matches on Subject: below --
2011-08-13 17:24 Markus Meier (maekke)
2011-08-09 13:09 Kacper Kowalik (xarthisius)
2011-08-05 20:12 Jeroen Roovers (jer)
2011-08-02 20:19 Markos Chandras (hwoarang)
2010-08-11 15:49 Tomas Chvatal (scarabeus)
2010-04-25 13:33 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