diff options
author | taca <taca@pkgsrc.org> | 2010-05-04 02:46:50 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2010-05-04 02:46:50 +0000 |
commit | 1711260faed46caa78cbf34f5ea9c7b1d8230635 (patch) | |
tree | 42edecf80c4f379afa6e7d7428192c805d5e1969 /textproc/ruby-json/patches | |
parent | 72d6a2008b3ee49bb279e6f2ddb2a87a0c0f94c3 (diff) | |
download | pkgsrc-1711260faed46caa78cbf34f5ea9c7b1d8230635.tar.gz |
Update ruby-json package from 1.2.0 to 1.4.2.
2010-04-26 (1.4.2)
* Applied patch from naruse Yui NARUSE <naruse@airemix.com> to make building with
Microsoft Visual C possible again.
* Applied patch from devrandom <c1.github@niftybox.net> in order to allow building of
json_pure if extensiontask is not present.
* Thanks to Dustin Schneider <dustin@stocktwits.com>, who reported a memory
leak, which is fixed in this release.
* Applied 993f261ccb8f911d2ae57e9db48ec7acd0187283 patch from josh@github.
2010-04-25 (1.4.1)
* Fix for a bug reported by Dan DeLeo <dan@kallistec.com>, caused by T_FIXNUM
being different on 32bit/64bit architectures.
2010-04-23 (1.4.0)
* Major speed improvements and building with simplified
directory/file-structure.
* Extension should at least be comapatible with MRI, YARV and Rubinius.
2010-04-07 (1.2.4)
* Triger const_missing callback to make Rails' dynamic class loading work.
2010-03-11 (1.2.3)
* Added a State#[] method which returns an attribute's value in order to
increase duck type compatibility to Hash.
2010-02-27 (1.2.2)
* Made some changes to make the building of the parser/generator compatible
to Rubinius.
2009-11-25 (1.2.1)
* Added :symbolize_names option to Parser, which returns symbols instead of
strings in object names/keys.
Diffstat (limited to 'textproc/ruby-json/patches')
-rw-r--r-- | textproc/ruby-json/patches/patch-aa | 8 | ||||
-rw-r--r-- | textproc/ruby-json/patches/patch-ab | 10 |
2 files changed, 14 insertions, 4 deletions
diff --git a/textproc/ruby-json/patches/patch-aa b/textproc/ruby-json/patches/patch-aa index e58f8ec11c0..37eae16b912 100644 --- a/textproc/ruby-json/patches/patch-aa +++ b/textproc/ruby-json/patches/patch-aa @@ -1,13 +1,13 @@ -$NetBSD: patch-aa,v 1.2 2009/11/23 13:33:47 fhajny Exp $ +$NetBSD: patch-aa,v 1.3 2010/05/04 02:46:50 taca Exp $ Do not install executables, those are part of ruby-json-pure ---- ../json-1.2.0.gemspec.orig 2009-11-22 15:25:00.909294000 +0000 -+++ ../json-1.2.0.gemspec +--- ../json-1.4.2.gemspec.orig 2010-04-30 09:12:53.000000000 +0000 ++++ ../json-1.4.2.gemspec @@ -10,14 +10,12 @@ bindir: bin cert_chain: [] - date: 2009-11-07 23:00:00 +00:00 + date: 2010-04-27 22:00:00 +00:00 -default_executable: edit_json.rb +default_executable: [] dependencies: [] diff --git a/textproc/ruby-json/patches/patch-ab b/textproc/ruby-json/patches/patch-ab new file mode 100644 index 00000000000..2f02e273758 --- /dev/null +++ b/textproc/ruby-json/patches/patch-ab @@ -0,0 +1,10 @@ +$NetBSD: patch-ab,v 1.1 2010/05/04 02:46:50 taca Exp $ + +--- tools/fuzz.rb.orig 2010-04-30 09:05:37.000000000 +0000 ++++ tools/fuzz.rb +@@ -1,3 +1,5 @@ ++#!ruby ++ + require 'json' + + require 'iconv' |