[DRE-commits] [ruby-oj] branch master updated (35d0d31 -> b3b1be7)

Cédric Boutillier boutil at alioth.debian.org
Wed Sep 11 21:12:33 UTC 2013


This is an automated email from the git hooks/post-receive script.

boutil pushed a change to branch master
in repository ruby-oj.

      from  35d0d31   update version number in changelog
      adds  79293b1   Imported Upstream version 2.1.4
       new  5d6c388   Merge tag 'upstream/2.1.4'
       new  5b25c88   refresh and fix extension of 02_avoid_name_conflict_with_ext.patch, drop 03_disable_deep_nest_test.patch
       new  b3b1be7   prepare changelog

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 README.md                                          |  409 +-------
 checksums.yaml.gz                                  |  Bin 270 -> 270 bytes
 debian/changelog                                   |    9 +
 ...xt.rb => 02_avoid_name_conflict_with_ext.patch} |    6 +-
 debian/patches/03_disable_deep_nest_test.patch     |   41 -
 debian/patches/series                              |    3 +-
 ext/oj/{cache.h => buf.h}                          |   77 +-
 ext/oj/cache.c                                     |  148 ---
 ext/oj/cache8.c                                    |    4 +
 ext/oj/{cache.h => circarray.c}                    |   69 +-
 ext/oj/{cache8.h => circarray.h}                   |   30 +-
 ext/oj/compat.c                                    |  112 ++
 ext/oj/dump.c                                      |   10 +-
 ext/oj/{cache8.h => encode.h}                      |   33 +-
 ext/oj/{cache.h => err.c}                          |   56 +-
 ext/oj/{cache.h => err.h}                          |   38 +-
 ext/oj/extconf.rb                                  |    1 +
 ext/oj/fast.c                                      |   20 +-
 ext/oj/foo.rb                                      |    6 -
 ext/oj/hash.c                                      |  160 +++
 ext/oj/{cache.h => hash.h}                         |   20 +-
 ext/oj/hash_test.c                                 |  513 ++++++++++
 ext/oj/load.c                                      | 1080 --------------------
 ext/oj/object.c                                    |  521 ++++++++++
 ext/oj/odd.c                                       |  159 +++
 ext/oj/{cache8.h => odd.h}                         |   37 +-
 ext/oj/oj.c                                        |  742 +++++++-------
 ext/oj/oj.h                                        |   45 +-
 ext/oj/parse.c                                     |  797 +++++++++++++++
 ext/oj/parse.h                                     |   88 ++
 ext/oj/resolve.c                                   |  117 +++
 ext/oj/{cache.h => resolve.h}                      |   18 +-
 ext/oj/saj.c                                       |  157 ++-
 ext/oj/scp.c                                       |  301 ++++++
 ext/oj/strict.c                                    |  159 +++
 ext/oj/{cache8.h => val_stack.c}                   |   36 +-
 ext/oj/val_stack.h                                 |  168 +++
 lib/oj.rb                                          |    1 +
 lib/oj/mimic.rb                                    |   12 +-
 lib/oj/saj.rb                                      |   19 +-
 lib/oj/schandler.rb                                |   70 ++
 lib/oj/version.rb                                  |    2 +-
 metadata.yml                                       |   51 +-
 test/bug.rb                                        |   34 +-
 test/e.rb                                          |   12 +
 test/foo.rb                                        |   24 +
 test/perf1.rb                                      |   64 --
 test/perf2.rb                                      |   76 --
 test/perf_compat.rb                                |  128 +++
 test/perf_obj_old.rb                               |  213 ----
 test/{perf_obj.rb => perf_object.rb}               |   24 +-
 test/{perf_saj.rb => perf_scp.rb}                  |   94 +-
 test/perf_strict.rb                                |  145 +--
 test/sample.rb                                     |    4 +-
 test/test_compat.rb                                |  342 +++++++
 test/test_fast.rb                                  |    9 +
 test/test_mimic_after.rb                           |   35 +
 test/test_object.rb                                |  390 +++++++
 test/test_saj.rb                                   |    2 +-
 test/test_scp.rb                                   |  224 ++++
 test/test_strict.rb                                |  259 +++++
 test/tests.rb                                      |   88 +-
 test/x.rb                                          |   59 ++
 63 files changed, 5722 insertions(+), 2849 deletions(-)
 rename debian/patches/{02_avoid_name_conflict_with_ext.rb => 02_avoid_name_conflict_with_ext.patch} (78%)
 delete mode 100644 debian/patches/03_disable_deep_nest_test.patch
 copy ext/oj/{cache.h => buf.h} (50%)
 delete mode 100644 ext/oj/cache.c
 copy ext/oj/{cache.h => circarray.c} (55%)
 copy ext/oj/{cache8.h => circarray.h} (74%)
 create mode 100644 ext/oj/compat.c
 copy ext/oj/{cache8.h => encode.h} (80%)
 copy ext/oj/{cache.h => err.c} (56%)
 copy ext/oj/{cache.h => err.h} (63%)
 delete mode 100644 ext/oj/foo.rb
 create mode 100644 ext/oj/hash.c
 copy ext/oj/{cache.h => hash.h} (81%)
 create mode 100644 ext/oj/hash_test.c
 delete mode 100644 ext/oj/load.c
 create mode 100644 ext/oj/object.c
 create mode 100644 ext/oj/odd.c
 copy ext/oj/{cache8.h => odd.h} (67%)
 create mode 100644 ext/oj/parse.c
 create mode 100644 ext/oj/parse.h
 create mode 100644 ext/oj/resolve.c
 rename ext/oj/{cache.h => resolve.h} (83%)
 create mode 100644 ext/oj/scp.c
 create mode 100644 ext/oj/strict.c
 copy ext/oj/{cache8.h => val_stack.c} (73%)
 create mode 100644 ext/oj/val_stack.h
 create mode 100644 lib/oj/schandler.rb
 mode change 100644 => 100755 test/bug.rb
 create mode 100755 test/e.rb
 create mode 100644 test/foo.rb
 delete mode 100644 test/perf1.rb
 delete mode 100644 test/perf2.rb
 create mode 100755 test/perf_compat.rb
 delete mode 100755 test/perf_obj_old.rb
 rename test/{perf_obj.rb => perf_object.rb} (87%)
 copy test/{perf_saj.rb => perf_scp.rb} (69%)
 create mode 100755 test/test_compat.rb
 create mode 100755 test/test_mimic_after.rb
 create mode 100755 test/test_object.rb
 create mode 100755 test/test_scp.rb
 create mode 100755 test/test_strict.rb
 create mode 100755 test/x.rb

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-oj.git



More information about the Pkg-ruby-extras-commits mailing list