public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-ruby/json: ChangeLog json-1.4.3-r1.ebuild
@ 2010-05-23 21:47 Diego Petteno (flameeyes)
  0 siblings, 0 replies; 8+ messages in thread
From: Diego Petteno (flameeyes) @ 2010-05-23 21:47 UTC (permalink / raw
  To: gentoo-commits

flameeyes    10/05/23 21:47:50

  Modified:             ChangeLog
  Added:                json-1.4.3-r1.ebuild
  Log:
  Version bump, install the extensions in the right paths so that they are actually picked up (yes, all the older versions were still using the pure-ruby implementation after building the C extension.
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.31                 dev-ruby/json/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/json/ChangeLog?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/json/ChangeLog?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/json/ChangeLog?r1=1.30&r2=1.31

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog	22 May 2010 22:54:33 -0000	1.30
+++ ChangeLog	23 May 2010 21:47:50 -0000	1.31
@@ -1,6 +1,14 @@
 # ChangeLog for dev-ruby/json
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v 1.30 2010/05/22 22:54:33 a3li Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v 1.31 2010/05/23 21:47:50 flameeyes Exp $
+
+*json-1.4.3-r1 (23 May 2010)
+
+  23 May 2010; Diego E. Pettenò <flameeyes@gentoo.org>
+  +json-1.4.3-r1.ebuild:
+  Version bump, install the extensions in the right paths so that they are
+  actually picked up (yes, all the older versions were still using the
+  pure-ruby implementation after building the C extension.
 
   22 May 2010; Alex Legler <a3li@gentoo.org> json-1.4.3.ebuild:
   Add REE18 support



1.1                  dev-ruby/json/json-1.4.3-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/json/json-1.4.3-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/json/json-1.4.3-r1.ebuild?rev=1.1&content-type=text/plain

Index: json-1.4.3-r1.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/json-1.4.3-r1.ebuild,v 1.1 2010/05/23 21:47:50 flameeyes Exp $

EAPI=2
USE_RUBY="ruby18 ree18 ruby19 jruby"

RUBY_FAKEGEM_TASK_DOC="doc"
RUBY_FAKEGEM_EXTRADOC="CHANGES TODO README"
RUBY_FAKEGEM_DOCDIR="doc"

inherit ruby-fakegem

DESCRIPTION="A JSON implementation as a Ruby extension."
HOMEPAGE="http://json.rubyforge.org/"
LICENSE="|| ( Ruby GPL-2 )"
SRC_URI="mirror://rubygems/${P}.gem"

KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
SLOT="0"
IUSE=""

RDEPEND="${RDEPEND}"
DEPEND="${DEPEND}
	dev-util/ragel"

ruby_add_bdepend "dev-ruby/rake
	test? ( virtual/ruby-test-unit )"

all_ruby_prepare() {
	# Avoid building the extension twice!
	sed -i \
		-e 's| => :compile_ext||' \
		-e 's| => :clean||' \
		Rakefile || die "rakefile fix failed"
}

each_ruby_compile() {
	if [[ $(basename ${RUBY}) != "jruby" ]]; then
		${RUBY} -S rake compile_ext || die "extension compile failed"
	fi
}

each_ruby_test() {
	# We have to set RUBYLIB because otherwise the tests will run
	# against the sytem-installed json; at the same time, we cannot
	# use the -I parameter because rake won't let it pass to the
	# testrb call that is executed down the road.

	RUBYLIB="${RUBYLIB}${RUBYLIB+:}lib:ext/json/ext" \
		${RUBY} -S rake test_pure || die "pure ruby tests failed"

	if [[ $(basename ${RUBY}) != "jruby" ]]; then
		RUBYLIB="${RUBYLIB}${RUBYLIB+:}lib:ext" \
			${RUBY} -Ilib:ext -S rake test_ext || die " ruby extension tests failed"
	fi
}

each_ruby_install() {
	each_fakegem_install
	if [[ $(basename ${RUBY}) != "jruby" ]]; then
		ruby_fakegem_newins ext/json/ext/generator.so lib/json/ext/generator.so
		ruby_fakegem_newins ext/json/ext/parser.so lib/json/ext/parser.so
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/json: ChangeLog json-1.4.3-r1.ebuild
@ 2010-06-12 10:43 Hans de Graaff (graaff)
  0 siblings, 0 replies; 8+ messages in thread
From: Hans de Graaff (graaff) @ 2010-06-12 10:43 UTC (permalink / raw
  To: gentoo-commits

graaff      10/06/12 10:43:28

  Modified:             ChangeLog json-1.4.3-r1.ebuild
  Log:
  Fix static modname and add x64-macos keyword, fixing bug 323371. Thanks to Ramon van Alteren for the patch.
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.33                 dev-ruby/json/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/json/ChangeLog?rev=1.33&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/json/ChangeLog?rev=1.33&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/json/ChangeLog?r1=1.32&r2=1.33

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog	24 May 2010 19:09:49 -0000	1.32
+++ ChangeLog	12 Jun 2010 10:43:28 -0000	1.33
@@ -1,6 +1,10 @@
 # ChangeLog for dev-ruby/json
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v 1.32 2010/05/24 19:09:49 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v 1.33 2010/06/12 10:43:28 graaff Exp $
+
+  12 Jun 2010; Hans de Graaff <graaff@gentoo.org> json-1.4.3-r1.ebuild:
+  Fix static modname and add x64-macos keyword, fixing bug 323371. Thanks to
+  Ramon van Alteren for the patch.
 
   24 May 2010; Pacho Ramos <pacho@gentoo.org> json-1.2.2.ebuild:
   stable amd64, bug 316883



1.2                  dev-ruby/json/json-1.4.3-r1.ebuild

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

Index: json-1.4.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/json/json-1.4.3-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- json-1.4.3-r1.ebuild	23 May 2010 21:47:50 -0000	1.1
+++ json-1.4.3-r1.ebuild	12 Jun 2010 10:43:28 -0000	1.2
@@ -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-ruby/json/json-1.4.3-r1.ebuild,v 1.1 2010/05/23 21:47:50 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/json-1.4.3-r1.ebuild,v 1.2 2010/06/12 10:43:28 graaff Exp $
 
 EAPI=2
 USE_RUBY="ruby18 ree18 ruby19 jruby"
@@ -9,14 +9,14 @@
 RUBY_FAKEGEM_EXTRADOC="CHANGES TODO README"
 RUBY_FAKEGEM_DOCDIR="doc"
 
-inherit ruby-fakegem
+inherit multilib ruby-fakegem
 
 DESCRIPTION="A JSON implementation as a Ruby extension."
 HOMEPAGE="http://json.rubyforge.org/"
 LICENSE="|| ( Ruby GPL-2 )"
 SRC_URI="mirror://rubygems/${P}.gem"
 
-KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris ~x64-macos"
 SLOT="0"
 IUSE=""
 
@@ -59,7 +59,7 @@
 each_ruby_install() {
 	each_fakegem_install
 	if [[ $(basename ${RUBY}) != "jruby" ]]; then
-		ruby_fakegem_newins ext/json/ext/generator.so lib/json/ext/generator.so
-		ruby_fakegem_newins ext/json/ext/parser.so lib/json/ext/parser.so
+		ruby_fakegem_newins ext/json/ext/generator$(get_modname) lib/json/ext/generator$(get_modname)
+		ruby_fakegem_newins ext/json/ext/parser$(get_modname) lib/json/ext/parser$(get_modname)
 	fi
 }






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/json: ChangeLog json-1.4.3-r1.ebuild
@ 2010-06-29 10:31 Christoph Mende (angelos)
  0 siblings, 0 replies; 8+ messages in thread
From: Christoph Mende (angelos) @ 2010-06-29 10:31 UTC (permalink / raw
  To: gentoo-commits

angelos     10/06/29 10:31:57

  Modified:             ChangeLog json-1.4.3-r1.ebuild
  Log:
  Stable on amd64 wrt bug #325695
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.35                 dev-ruby/json/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/json/ChangeLog?rev=1.35&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/json/ChangeLog?rev=1.35&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/json/ChangeLog?r1=1.34&r2=1.35

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog	26 Jun 2010 11:48:40 -0000	1.34
+++ ChangeLog	29 Jun 2010 10:31:57 -0000	1.35
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/json
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v 1.34 2010/06/26 11:48:40 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v 1.35 2010/06/29 10:31:57 angelos Exp $
+
+  29 Jun 2010; Christoph Mende <angelos@gentoo.org> json-1.4.3-r1.ebuild:
+  Stable on amd64 wrt bug #325695
 
 *json-1.4.3-r2 (26 Jun 2010)
 



1.4                  dev-ruby/json/json-1.4.3-r1.ebuild

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

Index: json-1.4.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/json/json-1.4.3-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- json-1.4.3-r1.ebuild	26 Jun 2010 11:48:40 -0000	1.3
+++ json-1.4.3-r1.ebuild	29 Jun 2010 10:31:57 -0000	1.4
@@ -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-ruby/json/json-1.4.3-r1.ebuild,v 1.3 2010/06/26 11:48:40 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/json-1.4.3-r1.ebuild,v 1.4 2010/06/29 10:31:57 angelos Exp $
 
 EAPI=2
 USE_RUBY="ruby18 jruby"
@@ -16,7 +16,7 @@
 LICENSE="|| ( Ruby GPL-2 )"
 SRC_URI="mirror://rubygems/${P}.gem"
 
-KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris ~x64-macos"
+KEYWORDS="amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 SLOT="0"
 IUSE=""
 






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/json: ChangeLog json-1.4.3-r1.ebuild
@ 2010-07-15 20:07 Markus Meier (maekke)
  0 siblings, 0 replies; 8+ messages in thread
From: Markus Meier (maekke) @ 2010-07-15 20:07 UTC (permalink / raw
  To: gentoo-commits

maekke      10/07/15 20:07:18

  Modified:             ChangeLog json-1.4.3-r1.ebuild
  Log:
  x86 stable, bug #325695
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.36                 dev-ruby/json/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/json/ChangeLog?rev=1.36&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/json/ChangeLog?rev=1.36&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/json/ChangeLog?r1=1.35&r2=1.36

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog	29 Jun 2010 10:31:57 -0000	1.35
+++ ChangeLog	15 Jul 2010 20:07:18 -0000	1.36
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/json
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v 1.35 2010/06/29 10:31:57 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v 1.36 2010/07/15 20:07:18 maekke Exp $
+
+  15 Jul 2010; Markus Meier <maekke@gentoo.org> json-1.4.3-r1.ebuild:
+  x86 stable, bug #325695
 
   29 Jun 2010; Christoph Mende <angelos@gentoo.org> json-1.4.3-r1.ebuild:
   Stable on amd64 wrt bug #325695



1.5                  dev-ruby/json/json-1.4.3-r1.ebuild

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

Index: json-1.4.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/json/json-1.4.3-r1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- json-1.4.3-r1.ebuild	29 Jun 2010 10:31:57 -0000	1.4
+++ json-1.4.3-r1.ebuild	15 Jul 2010 20:07:18 -0000	1.5
@@ -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-ruby/json/json-1.4.3-r1.ebuild,v 1.4 2010/06/29 10:31:57 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/json-1.4.3-r1.ebuild,v 1.5 2010/07/15 20:07:18 maekke Exp $
 
 EAPI=2
 USE_RUBY="ruby18 jruby"
@@ -16,7 +16,7 @@
 LICENSE="|| ( Ruby GPL-2 )"
 SRC_URI="mirror://rubygems/${P}.gem"
 
-KEYWORDS="amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 SLOT="0"
 IUSE=""
 






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/json: ChangeLog json-1.4.3-r1.ebuild
@ 2010-07-24 17:00 Raul Porcel (armin76)
  0 siblings, 0 replies; 8+ messages in thread
From: Raul Porcel (armin76) @ 2010-07-24 17:00 UTC (permalink / raw
  To: gentoo-commits

armin76     10/07/24 17:00:08

  Modified:             ChangeLog json-1.4.3-r1.ebuild
  Log:
  ia64/sparc stable wrt #325695
  (Portage version: 2.1.8.3/cvs/Linux ia64)

Revision  Changes    Path
1.37                 dev-ruby/json/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/json/ChangeLog?rev=1.37&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/json/ChangeLog?rev=1.37&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/json/ChangeLog?r1=1.36&r2=1.37

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog	15 Jul 2010 20:07:18 -0000	1.36
+++ ChangeLog	24 Jul 2010 17:00:08 -0000	1.37
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/json
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v 1.36 2010/07/15 20:07:18 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v 1.37 2010/07/24 17:00:08 armin76 Exp $
+
+  24 Jul 2010; Raúl Porcel <armin76@gentoo.org> json-1.4.3-r1.ebuild:
+  ia64/sparc stable wrt #325695
 
   15 Jul 2010; Markus Meier <maekke@gentoo.org> json-1.4.3-r1.ebuild:
   x86 stable, bug #325695



1.6                  dev-ruby/json/json-1.4.3-r1.ebuild

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

Index: json-1.4.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/json/json-1.4.3-r1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- json-1.4.3-r1.ebuild	15 Jul 2010 20:07:18 -0000	1.5
+++ json-1.4.3-r1.ebuild	24 Jul 2010 17:00:08 -0000	1.6
@@ -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-ruby/json/json-1.4.3-r1.ebuild,v 1.5 2010/07/15 20:07:18 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/json-1.4.3-r1.ebuild,v 1.6 2010/07/24 17:00:08 armin76 Exp $
 
 EAPI=2
 USE_RUBY="ruby18 jruby"
@@ -16,7 +16,7 @@
 LICENSE="|| ( Ruby GPL-2 )"
 SRC_URI="mirror://rubygems/${P}.gem"
 
-KEYWORDS="amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="amd64 ~hppa ia64 ~ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 SLOT="0"
 IUSE=""
 






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/json: ChangeLog json-1.4.3-r1.ebuild
@ 2010-08-17  0:28 Jeroen Roovers (jer)
  0 siblings, 0 replies; 8+ messages in thread
From: Jeroen Roovers (jer) @ 2010-08-17  0:28 UTC (permalink / raw
  To: gentoo-commits

jer         10/08/17 00:28:13

  Modified:             ChangeLog json-1.4.3-r1.ebuild
  Log:
  Stable for HPPA (bug #321043).
  (Portage version: 2.2_rc67/cvs/Linux i686)

Revision  Changes    Path
1.39                 dev-ruby/json/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/json/ChangeLog?rev=1.39&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/json/ChangeLog?rev=1.39&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/json/ChangeLog?r1=1.38&r2=1.39

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog	5 Aug 2010 17:07:39 -0000	1.38
+++ ChangeLog	17 Aug 2010 00:28:13 -0000	1.39
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/json
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v 1.38 2010/08/05 17:07:39 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v 1.39 2010/08/17 00:28:13 jer Exp $
+
+  17 Aug 2010; Jeroen Roovers <jer@gentoo.org> json-1.4.3-r1.ebuild:
+  Stable for HPPA (bug #321043).
 
   05 Aug 2010; Markus Meier <maekke@gentoo.org> json-1.4.3-r2.ebuild:
   add ~arm, bug #331061



1.7                  dev-ruby/json/json-1.4.3-r1.ebuild

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

Index: json-1.4.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/json/json-1.4.3-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- json-1.4.3-r1.ebuild	24 Jul 2010 17:00:08 -0000	1.6
+++ json-1.4.3-r1.ebuild	17 Aug 2010 00:28:13 -0000	1.7
@@ -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-ruby/json/json-1.4.3-r1.ebuild,v 1.6 2010/07/24 17:00:08 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/json-1.4.3-r1.ebuild,v 1.7 2010/08/17 00:28:13 jer Exp $
 
 EAPI=2
 USE_RUBY="ruby18 jruby"
@@ -16,7 +16,7 @@
 LICENSE="|| ( Ruby GPL-2 )"
 SRC_URI="mirror://rubygems/${P}.gem"
 
-KEYWORDS="amd64 ~hppa ia64 ~ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="amd64 hppa ia64 ~ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 SLOT="0"
 IUSE=""
 






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/json: ChangeLog json-1.4.3-r1.ebuild
@ 2010-09-28 18:38 Brent Baude (ranger)
  0 siblings, 0 replies; 8+ messages in thread
From: Brent Baude (ranger) @ 2010-09-28 18:38 UTC (permalink / raw
  To: gentoo-commits

ranger      10/09/28 18:38:06

  Modified:             ChangeLog json-1.4.3-r1.ebuild
  Log:
  Marking json-1.4.3-r1 ppc for bug 325695
  (Portage version: 2.1.8.3/cvs/Linux ppc64)

Revision  Changes    Path
1.44                 dev-ruby/json/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog	30 Aug 2010 22:46:22 -0000	1.43
+++ ChangeLog	28 Sep 2010 18:38:06 -0000	1.44
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/json
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v 1.43 2010/08/30 22:46:22 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v 1.44 2010/09/28 18:38:06 ranger Exp $
+
+  28 Sep 2010; Brent Baude <ranger@gentoo.org> json-1.4.3-r1.ebuild:
+  Marking json-1.4.3-r1 ppc for bug 325695
 
   30 Aug 2010; Diego E. Pettenò <flameeyes@gentoo.org> -json-1.2.2.ebuild:
   Re-remove json 1.2.2 since chef-* was fixed.



1.8                  dev-ruby/json/json-1.4.3-r1.ebuild

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

Index: json-1.4.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/json/json-1.4.3-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- json-1.4.3-r1.ebuild	17 Aug 2010 00:28:13 -0000	1.7
+++ json-1.4.3-r1.ebuild	28 Sep 2010 18:38:06 -0000	1.8
@@ -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-ruby/json/json-1.4.3-r1.ebuild,v 1.7 2010/08/17 00:28:13 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/json-1.4.3-r1.ebuild,v 1.8 2010/09/28 18:38:06 ranger Exp $
 
 EAPI=2
 USE_RUBY="ruby18 jruby"
@@ -16,7 +16,7 @@
 LICENSE="|| ( Ruby GPL-2 )"
 SRC_URI="mirror://rubygems/${P}.gem"
 
-KEYWORDS="amd64 hppa ia64 ~ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="amd64 hppa ia64 ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 SLOT="0"
 IUSE=""
 






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/json: ChangeLog json-1.4.3-r1.ebuild
@ 2010-09-29 21:34 Brent Baude (ranger)
  0 siblings, 0 replies; 8+ messages in thread
From: Brent Baude (ranger) @ 2010-09-29 21:34 UTC (permalink / raw
  To: gentoo-commits

ranger      10/09/29 21:34:10

  Modified:             ChangeLog json-1.4.3-r1.ebuild
  Log:
  Marking json-1.4.3-r1 ppc64 for bug 325695
  (Portage version: 2.1.8.3/cvs/Linux ppc64)

Revision  Changes    Path
1.45                 dev-ruby/json/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ChangeLog	28 Sep 2010 18:38:06 -0000	1.44
+++ ChangeLog	29 Sep 2010 21:34:10 -0000	1.45
@@ -1,6 +1,9 @@
 # ChangeLog for dev-ruby/json
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v 1.44 2010/09/28 18:38:06 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v 1.45 2010/09/29 21:34:10 ranger Exp $
+
+  29 Sep 2010; Brent Baude <ranger@gentoo.org> json-1.4.3-r1.ebuild:
+  Marking json-1.4.3-r1 ppc64 for bug 325695
 
   28 Sep 2010; Brent Baude <ranger@gentoo.org> json-1.4.3-r1.ebuild:
   Marking json-1.4.3-r1 ppc for bug 325695



1.9                  dev-ruby/json/json-1.4.3-r1.ebuild

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

Index: json-1.4.3-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/json/json-1.4.3-r1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- json-1.4.3-r1.ebuild	28 Sep 2010 18:38:06 -0000	1.8
+++ json-1.4.3-r1.ebuild	29 Sep 2010 21:34:10 -0000	1.9
@@ -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-ruby/json/json-1.4.3-r1.ebuild,v 1.8 2010/09/28 18:38:06 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/json-1.4.3-r1.ebuild,v 1.9 2010/09/29 21:34:10 ranger Exp $
 
 EAPI=2
 USE_RUBY="ruby18 jruby"
@@ -16,7 +16,7 @@
 LICENSE="|| ( Ruby GPL-2 )"
 SRC_URI="mirror://rubygems/${P}.gem"
 
-KEYWORDS="amd64 hppa ia64 ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="amd64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 SLOT="0"
 IUSE=""
 






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

end of thread, other threads:[~2010-09-29 21:34 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-29 10:31 [gentoo-commits] gentoo-x86 commit in dev-ruby/json: ChangeLog json-1.4.3-r1.ebuild Christoph Mende (angelos)
  -- strict thread matches above, loose matches on Subject: below --
2010-09-29 21:34 Brent Baude (ranger)
2010-09-28 18:38 Brent Baude (ranger)
2010-08-17  0:28 Jeroen Roovers (jer)
2010-07-24 17:00 Raul Porcel (armin76)
2010-07-15 20:07 Markus Meier (maekke)
2010-06-12 10:43 Hans de Graaff (graaff)
2010-05-23 21:47 Diego Petteno (flameeyes)

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