public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-ruby/json: json-1.2.2.ebuild ChangeLog
@ 2010-03-01  7:09 Hans de Graaff (graaff)
  0 siblings, 0 replies; 6+ messages in thread
From: Hans de Graaff (graaff) @ 2010-03-01  7:09 UTC (permalink / raw
  To: gentoo-commits

graaff      10/03/01 07:09:44

  Modified:             ChangeLog
  Added:                json-1.2.2.ebuild
  Log:
  Version bump: compatibility fixes for Rubinius.
  (Portage version: 2.1.7.16/cvs/Linux x86_64)

Revision  Changes    Path
1.20                 dev-ruby/json/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog	27 Feb 2010 07:38:59 -0000	1.19
+++ ChangeLog	1 Mar 2010 07:09:43 -0000	1.20
@@ -1,6 +1,12 @@
 # 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.19 2010/02/27 07:38:59 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v 1.20 2010/03/01 07:09:43 graaff Exp $
+
+*json-1.2.2 (01 Mar 2010)
+
+  01 Mar 2010; Hans de Graaff <graaff@gentoo.org> json-1.2.1.ebuild,
+  +json-1.2.2.ebuild:
+  Version bump: compatibility fixes for Rubinius.
 
 *json-1.2.1 (27 Feb 2010)
 



1.1                  dev-ruby/json/json-1.2.2.ebuild

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

Index: json-1.2.2.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.2.2.ebuild,v 1.1 2010/03/01 07:09:43 graaff Exp $

EAPI=2
USE_RUBY="ruby18 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=""
DEPEND="dev-util/ragel"

ruby_add_bdepend test virtual/ruby-test-unit
ruby_add_bdepend dev-ruby/rake

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/json/ext" \
			${RUBY} -Ilib:ext/json/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/generator.so
		ruby_fakegem_newins ext/json/ext/parser.so lib/json/parser.so
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/json: json-1.2.2.ebuild ChangeLog
@ 2010-04-25 16:35 Hans de Graaff (graaff)
  0 siblings, 0 replies; 6+ messages in thread
From: Hans de Graaff (graaff) @ 2010-04-25 16:35 UTC (permalink / raw
  To: gentoo-commits

graaff      10/04/25 16:35:00

  Modified:             json-1.2.2.ebuild ChangeLog
  Log:
  Drop ruby19 and jruby so that this version can be stabilized.
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  dev-ruby/json/json-1.2.2.ebuild

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

Index: json-1.2.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/json/json-1.2.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- json-1.2.2.ebuild	1 Mar 2010 07:09:43 -0000	1.1
+++ json-1.2.2.ebuild	25 Apr 2010 16:35:00 -0000	1.2
@@ -1,9 +1,9 @@
 # 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.2.2.ebuild,v 1.1 2010/03/01 07:09:43 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/json-1.2.2.ebuild,v 1.2 2010/04/25 16:35:00 graaff Exp $
 
 EAPI=2
-USE_RUBY="ruby18 ruby19 jruby"
+USE_RUBY="ruby18"
 
 RUBY_FAKEGEM_TASK_DOC="doc"
 RUBY_FAKEGEM_EXTRADOC="CHANGES TODO README"



1.24                 dev-ruby/json/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog	11 Apr 2010 06:56:04 -0000	1.23
+++ ChangeLog	25 Apr 2010 16:35:00 -0000	1.24
@@ -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.23 2010/04/11 06:56:04 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v 1.24 2010/04/25 16:35:00 graaff Exp $
+
+  25 Apr 2010; Hans de Graaff <graaff@gentoo.org> json-1.2.2.ebuild:
+  Drop ruby19 and jruby so that this version can be stabilized.
 
   11 Apr 2010; Hans de Graaff <graaff@gentoo.org> -json-1.2.0-r1.ebuild,
   -json-1.2.1.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/json: json-1.2.2.ebuild ChangeLog
@ 2010-05-11 12:55 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 6+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2010-05-11 12:55 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    10/05/11 12:55:39

  Modified:             json-1.2.2.ebuild ChangeLog
  Log:
  x86 stable wrt bug #316883
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.3                  dev-ruby/json/json-1.2.2.ebuild

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

Index: json-1.2.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/json/json-1.2.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- json-1.2.2.ebuild	25 Apr 2010 16:35:00 -0000	1.2
+++ json-1.2.2.ebuild	11 May 2010 12:55:39 -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-ruby/json/json-1.2.2.ebuild,v 1.2 2010/04/25 16:35:00 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/json-1.2.2.ebuild,v 1.3 2010/05/11 12:55:39 phajdan.jr Exp $
 
 EAPI=2
 USE_RUBY="ruby18"
@@ -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"
+KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~x86-solaris"
 SLOT="0"
 IUSE=""
 



1.27                 dev-ruby/json/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	7 May 2010 05:43:53 -0000	1.26
+++ ChangeLog	11 May 2010 12:55:39 -0000	1.27
@@ -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.26 2010/05/07 05:43:53 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v 1.27 2010/05/11 12:55:39 phajdan.jr Exp $
+
+  11 May 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> json-1.2.2.ebuild:
+  x86 stable wrt bug #316883
 
 *json-1.4.3 (07 May 2010)
 






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/json: json-1.2.2.ebuild ChangeLog
@ 2010-05-19 19:48 Raul Porcel (armin76)
  0 siblings, 0 replies; 6+ messages in thread
From: Raul Porcel (armin76) @ 2010-05-19 19:48 UTC (permalink / raw
  To: gentoo-commits

armin76     10/05/19 19:48:33

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

Revision  Changes    Path
1.4                  dev-ruby/json/json-1.2.2.ebuild

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

Index: json-1.2.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/json/json-1.2.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- json-1.2.2.ebuild	11 May 2010 12:55:39 -0000	1.3
+++ json-1.2.2.ebuild	19 May 2010 19:48:33 -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.2.2.ebuild,v 1.3 2010/05/11 12:55:39 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/json-1.2.2.ebuild,v 1.4 2010/05/19 19:48:33 armin76 Exp $
 
 EAPI=2
 USE_RUBY="ruby18"
@@ -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"
+KEYWORDS="~amd64 ~hppa ia64 ~ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~x86-solaris"
 SLOT="0"
 IUSE=""
 



1.28                 dev-ruby/json/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	11 May 2010 12:55:39 -0000	1.27
+++ ChangeLog	19 May 2010 19:48:33 -0000	1.28
@@ -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.27 2010/05/11 12:55:39 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v 1.28 2010/05/19 19:48:33 armin76 Exp $
+
+  19 May 2010; Raúl Porcel <armin76@gentoo.org> json-1.2.2.ebuild:
+  ia64/sparc stable wrt #316883
 
   11 May 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> json-1.2.2.ebuild:
   x86 stable wrt bug #316883






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/json: json-1.2.2.ebuild ChangeLog
@ 2010-05-24 19:09 Pacho Ramos (pacho)
  0 siblings, 0 replies; 6+ messages in thread
From: Pacho Ramos (pacho) @ 2010-05-24 19:09 UTC (permalink / raw
  To: gentoo-commits

pacho       10/05/24 19:09:49

  Modified:             json-1.2.2.ebuild ChangeLog
  Log:
  stable amd64, bug 316883
  (Portage version: 2.1.8.3/cvs/Linux x86_64)

Revision  Changes    Path
1.6                  dev-ruby/json/json-1.2.2.ebuild

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

Index: json-1.2.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/json/json-1.2.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- json-1.2.2.ebuild	22 May 2010 13:36:28 -0000	1.5
+++ json-1.2.2.ebuild	24 May 2010 19:09:49 -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.2.2.ebuild,v 1.5 2010/05/22 13:36:28 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/json-1.2.2.ebuild,v 1.6 2010/05/24 19:09:49 pacho Exp $
 
 EAPI=2
 USE_RUBY="ruby18"
@@ -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"
+KEYWORDS="amd64 ~hppa ia64 ~ppc ~ppc64 sparc x86 ~amd64-linux ~x86-linux ~x86-solaris"
 SLOT="0"
 IUSE=""
 



1.32                 dev-ruby/json/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog	23 May 2010 21:47:50 -0000	1.31
+++ ChangeLog	24 May 2010 19:09:49 -0000	1.32
@@ -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.31 2010/05/23 21:47:50 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v 1.32 2010/05/24 19:09:49 pacho Exp $
+
+  24 May 2010; Pacho Ramos <pacho@gentoo.org> json-1.2.2.ebuild:
+  stable amd64, bug 316883
 
 *json-1.4.3-r1 (23 May 2010)
 






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

* [gentoo-commits] gentoo-x86 commit in dev-ruby/json: json-1.2.2.ebuild ChangeLog
@ 2010-08-30 22:30 Mark Loeser (halcy0n)
  0 siblings, 0 replies; 6+ messages in thread
From: Mark Loeser (halcy0n) @ 2010-08-30 22:30 UTC (permalink / raw
  To: gentoo-commits

halcy0n     10/08/30 22:30:08

  Modified:             ChangeLog
  Added:                json-1.2.2.ebuild
  Log:
  Add version 1.2.2 back since app-admin/chef-* depends upon it
  (Portage version: 2.2_rc67/cvs/Linux x86_64, RepoMan options: --force)

Revision  Changes    Path
1.42                 dev-ruby/json/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog	28 Aug 2010 14:22:12 -0000	1.41
+++ ChangeLog	30 Aug 2010 22:30:08 -0000	1.42
@@ -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.41 2010/08/28 14:22:12 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/ChangeLog,v 1.42 2010/08/30 22:30:08 halcy0n Exp $
+
+  30 Aug 2010; Mark Loeser <halcy0n@gentoo.org> +json-1.2.2.ebuild:
+  Add version 1.2.2 back since app-admin/chef-* depends upon it
 
 *json-1.4.6 (28 Aug 2010)
 



1.8                  dev-ruby/json/json-1.2.2.ebuild

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







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

end of thread, other threads:[~2010-08-30 22:30 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-11 12:55 [gentoo-commits] gentoo-x86 commit in dev-ruby/json: json-1.2.2.ebuild ChangeLog PaweA Hajdan (phajdan.jr)
  -- strict thread matches above, loose matches on Subject: below --
2010-08-30 22:30 Mark Loeser (halcy0n)
2010-05-24 19:09 Pacho Ramos (pacho)
2010-05-19 19:48 Raul Porcel (armin76)
2010-04-25 16:35 Hans de Graaff (graaff)
2010-03-01  7:09 Hans de Graaff (graaff)

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