[DRE-commits] [ruby-msgpack] branch master updated (1158003 -> 486dd36)

Taku YASUI tach at debian.org
Fri Aug 16 10:26:58 UTC 2013


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

tach pushed a change to branch master
in repository ruby-msgpack.

      from  1158003   Merge branch 'master' of git.debian.org:/git/pkg-ruby-extras/ruby-msgpack
      adds  0e67d63   Imported Upstream version 0.5.5
       new  ec190ac   Merge tag 'upstream/0.5.5'
       new  207e831   New upstream release: 0.5.5
       new  4164c0e   Testing framework changed, remove patch 10_fix_test_path.
       new  97e1cdd   Endian problem has been fixed, remove patch 20_fix_bigendian.
       new  3fde36c   Fix patch 10_fix_test_path
       new  b24c35c   Use RSpec to test modules - Add ruby-rspec to Build-Deps.
       new  dae0b35   Change load-path of the module, add patch 20_fix_loadlib.
       new  486dd36   Bump Standards-Version to 3.9.4.

The 8 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:
 .gitignore                                         |   17 +
 ChangeLog                                          |   77 ++
 Gemfile                                            |    3 +
 README.rdoc                                        |  102 ++
 Rakefile                                           |   93 ++
 debian/changelog                                   |   14 +-
 debian/control                                     |    4 +-
 debian/patches/10_fix_test_path                    |   73 +-
 debian/patches/20_fix_bigendian                    |   41 -
 debian/patches/20_fix_loadlib                      |    9 +
 debian/patches/series                              |    2 +-
 debian/ruby-test-files.yaml                        |   12 +-
 doclib/msgpack.rb                                  |   55 ++
 doclib/msgpack/buffer.rb                           |  193 ++++
 doclib/msgpack/core_ext.rb                         |  101 ++
 doclib/msgpack/error.rb                            |   14 +
 doclib/msgpack/packer.rb                           |  133 +++
 doclib/msgpack/unpacker.rb                         |  138 +++
 ext/compat.h                                       |   99 --
 ext/extconf.rb                                     |    7 -
 ext/msgpack/buffer.c                               |  676 +++++++++++++
 ext/msgpack/buffer.h                               |  444 +++++++++
 ext/msgpack/buffer_class.c                         |  507 ++++++++++
 ext/{unpack.h => msgpack/buffer_class.h}           |   20 +-
 ext/msgpack/compat.h                               |  113 +++
 ext/msgpack/core_ext.c                             |  129 +++
 ext/{pack.h => msgpack/core_ext.h}                 |   14 +-
 ext/msgpack/extconf.rb                             |   25 +
 ext/msgpack/packer.c                               |  168 ++++
 ext/msgpack/packer.h                               |  379 ++++++++
 ext/msgpack/packer_class.c                         |  294 ++++++
 ext/{unpack.h => msgpack/packer_class.h}           |   18 +-
 ext/{pack.h => msgpack/rbinit.c}                   |   21 +-
 ext/msgpack/rmem.c                                 |   94 ++
 ext/msgpack/rmem.h                                 |  109 +++
 ext/msgpack/sysdep.h                               |  115 +++
 ext/msgpack/sysdep_endian.h                        |   50 +
 .../pack_define.h => ext/msgpack/sysdep_types.h    |   34 +-
 ext/msgpack/unpacker.c                             |  698 ++++++++++++++
 ext/msgpack/unpacker.h                             |  114 +++
 ext/msgpack/unpacker_class.c                       |  394 ++++++++
 .../pack_define.h => ext/msgpack/unpacker_class.h  |   20 +-
 ext/pack.c                                         |  314 ------
 ext/rbinit.c                                       |   66 --
 ext/unpack.c                                       | 1001 --------------------
 lib/msgpack.rb                                     |   10 +
 {ext => lib/msgpack}/version.rb                    |    2 +-
 metadata.yml                                       |  199 +++-
 msgpack.gemspec                                    |   25 +
 msgpack/pack_template.h                            |  771 ---------------
 msgpack/sysdep.h                                   |  195 ----
 msgpack/unpack_define.h                            |   93 --
 msgpack/unpack_template.h                          |  413 --------
 spec/buffer_io_spec.rb                             |  256 +++++
 spec/buffer_spec.rb                                |  572 +++++++++++
 {test => spec}/cases.json                          |    0
 test/cases.mpac => spec/cases.msg                  |  Bin 213 -> 213 bytes
 test/cases_compact.mpac => spec/cases_compact.msg  |  Bin 116 -> 116 bytes
 spec/cases_spec.rb                                 |   39 +
 spec/format_spec.rb                                |  225 +++++
 spec/packer_spec.rb                                |  127 +++
 spec/random_compat.rb                              |   24 +
 spec/spec_helper.rb                                |   21 +
 spec/unpacker_spec.rb                              |  219 +++++
 test/test_cases.rb                                 |   46 -
 test/test_encoding.rb                              |   68 --
 test/test_helper.rb                                |   10 -
 test/test_pack_unpack.rb                           |  308 ------
 68 files changed, 7100 insertions(+), 3527 deletions(-)
 create mode 100644 .gitignore
 create mode 100644 ChangeLog
 create mode 100644 Gemfile
 create mode 100644 README.rdoc
 create mode 100644 Rakefile
 delete mode 100644 debian/patches/20_fix_bigendian
 create mode 100644 debian/patches/20_fix_loadlib
 create mode 100644 doclib/msgpack.rb
 create mode 100644 doclib/msgpack/buffer.rb
 create mode 100644 doclib/msgpack/core_ext.rb
 create mode 100644 doclib/msgpack/error.rb
 create mode 100644 doclib/msgpack/packer.rb
 create mode 100644 doclib/msgpack/unpacker.rb
 delete mode 100644 ext/compat.h
 delete mode 100644 ext/extconf.rb
 create mode 100644 ext/msgpack/buffer.c
 create mode 100644 ext/msgpack/buffer.h
 create mode 100644 ext/msgpack/buffer_class.c
 copy ext/{unpack.h => msgpack/buffer_class.h} (59%)
 create mode 100644 ext/msgpack/compat.h
 create mode 100644 ext/msgpack/core_ext.c
 copy ext/{pack.h => msgpack/core_ext.h} (74%)
 create mode 100644 ext/msgpack/extconf.rb
 create mode 100644 ext/msgpack/packer.c
 create mode 100644 ext/msgpack/packer.h
 create mode 100644 ext/msgpack/packer_class.c
 rename ext/{unpack.h => msgpack/packer_class.h} (65%)
 rename ext/{pack.h => msgpack/rbinit.c} (57%)
 create mode 100644 ext/msgpack/rmem.c
 create mode 100644 ext/msgpack/rmem.h
 create mode 100644 ext/msgpack/sysdep.h
 create mode 100644 ext/msgpack/sysdep_endian.h
 copy msgpack/pack_define.h => ext/msgpack/sysdep_types.h (50%)
 create mode 100644 ext/msgpack/unpacker.c
 create mode 100644 ext/msgpack/unpacker.h
 create mode 100644 ext/msgpack/unpacker_class.c
 rename msgpack/pack_define.h => ext/msgpack/unpacker_class.h (64%)
 delete mode 100644 ext/pack.c
 delete mode 100644 ext/rbinit.c
 delete mode 100644 ext/unpack.c
 create mode 100644 lib/msgpack.rb
 rename {ext => lib/msgpack}/version.rb (54%)
 create mode 100644 msgpack.gemspec
 delete mode 100644 msgpack/pack_template.h
 delete mode 100644 msgpack/sysdep.h
 delete mode 100644 msgpack/unpack_define.h
 delete mode 100644 msgpack/unpack_template.h
 create mode 100644 spec/buffer_io_spec.rb
 create mode 100644 spec/buffer_spec.rb
 rename {test => spec}/cases.json (100%)
 rename test/cases.mpac => spec/cases.msg (100%)
 rename test/cases_compact.mpac => spec/cases_compact.msg (100%)
 create mode 100644 spec/cases_spec.rb
 create mode 100644 spec/format_spec.rb
 create mode 100644 spec/packer_spec.rb
 create mode 100644 spec/random_compat.rb
 create mode 100644 spec/spec_helper.rb
 create mode 100644 spec/unpacker_spec.rb
 delete mode 100644 test/test_cases.rb
 delete mode 100644 test/test_encoding.rb
 delete mode 100644 test/test_helper.rb
 delete mode 100644 test/test_pack_unpack.rb

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



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