[DRE-commits] [ruby-msgpack] branch master updated (41370d2 -> c0f6f01)
Hleb Valoshka
tsfgnu-guest at moszumanska.debian.org
Fri Jul 29 14:04:59 UTC 2016
This is an automated email from the git hooks/post-receive script.
tsfgnu-guest pushed a change to branch master
in repository ruby-msgpack.
from 41370d2 Run wrap-and-sort on packaging files
adds 0f17c23 Imported Upstream version 1.0.0
new cc5d4fc Merge tag 'upstream/1.0.0'
new 61e12cb Bump Standards-Version to 3.9.8 (no changes)
new 17ef593 Update list of tests
new fdaa0c3 Update patches for version 1.0.0
new c0f6f01 Release 1.0.0-1
The 5 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 | 1 +
.rubocop.yml | 33 +
.travis.yml | 12 +-
ChangeLog | 39 ++
Dockerfile | 55 --
README.rdoc | 74 ++-
Rakefile | 32 +-
appveyor.yml | 18 +
bench/pack_symbols.rb | 28 +
bench/run_symbols.sh | 26 +
debian/changelog | 17 +
debian/control | 2 +-
...1-Fix-paths-for-spec_helper-random_compat.patch | 193 ++++++
debian/patches/10_fix_test_path | 66 --
debian/patches/11_fix_test_patch.patch | 55 --
debian/patches/series | 3 +-
debian/ruby-test-files.yaml | 24 +-
doclib/msgpack.rb | 10 +
doclib/msgpack/core_ext.rb | 40 +-
doclib/msgpack/error.rb | 7 +-
doclib/msgpack/extension_value.rb | 9 +
doclib/msgpack/factory.rb | 68 ++
doclib/msgpack/packer.rb | 50 ++
doclib/msgpack/unpacker.rb | 41 +-
ext/java/org/msgpack/jruby/Buffer.java | 9 +-
ext/java/org/msgpack/jruby/Decoder.java | 107 +++-
ext/java/org/msgpack/jruby/Encoder.java | 118 +++-
ext/java/org/msgpack/jruby/ExtensionRegistry.java | 159 +++++
ext/java/org/msgpack/jruby/ExtensionValue.java | 115 ++--
ext/java/org/msgpack/jruby/Factory.java | 123 ++++
ext/java/org/msgpack/jruby/MessagePackLibrary.java | 50 +-
ext/java/org/msgpack/jruby/Packer.java | 114 +++-
ext/java/org/msgpack/jruby/Unpacker.java | 161 ++++-
ext/msgpack/buffer.c | 14 +-
ext/msgpack/buffer_class.c | 6 +-
ext/msgpack/buffer_class.h | 2 +-
ext/msgpack/compat.h | 12 +
ext/msgpack/core_ext.c | 30 +
ext/msgpack/extconf.rb | 5 +-
ext/msgpack/{rbinit.c => extension_value_class.c} | 23 +-
.../{core_ext.h => extension_value_class.h} | 13 +-
ext/msgpack/factory_class.c | 221 +++++++
ext/msgpack/{core_ext.h => factory_class.h} | 17 +-
ext/msgpack/packer.c | 25 +-
ext/msgpack/packer.h | 80 ++-
ext/msgpack/packer_class.c | 160 +++--
ext/msgpack/packer_class.h | 6 +-
ext/msgpack/packer_ext_registry.c | 79 +++
ext/msgpack/packer_ext_registry.h | 98 +++
ext/msgpack/rbinit.c | 4 +
ext/msgpack/rmem.c | 14 +-
ext/msgpack/unpacker.c | 155 ++++-
ext/msgpack/unpacker.h | 11 +
ext/msgpack/unpacker_class.c | 171 +++--
ext/msgpack/unpacker_class.h | 6 +-
ext/msgpack/unpacker_ext_registry.c | 62 ++
ext/msgpack/unpacker_ext_registry.h | 59 ++
lib/msgpack.rb | 5 +
lib/msgpack/factory.rb | 60 ++
lib/msgpack/packer.rb | 28 +
lib/msgpack/symbol.rb | 9 +
lib/msgpack/unpacker.rb | 28 +
lib/msgpack/version.rb | 2 +-
metadata.yml | 228 -------
msgpack.gemspec | 13 +-
spec/cruby/buffer_io_spec.rb | 5 +-
spec/cruby/buffer_spec.rb | 4 +-
spec/cruby/packer_spec.rb | 138 -----
spec/cruby/unpacker_spec.rb | 235 -------
spec/ext_value_spec.rb | 99 +++
spec/exttypes.rb | 51 ++
spec/factory_spec.rb | 293 +++++++++
spec/jruby/{msgpack => }/unpacker_spec.rb | 166 +----
spec/{jruby => }/msgpack_spec.rb | 13 +-
spec/pack_spec.rb | 6 -
spec/packer_spec.rb | 393 ++++++++++++
spec/spec_helper.rb | 13 +-
spec/unpack_spec.rb | 5 +-
spec/unpacker_spec.rb | 687 +++++++++++++++++++++
79 files changed, 4334 insertions(+), 1279 deletions(-)
create mode 100644 .rubocop.yml
delete mode 100644 Dockerfile
create mode 100644 appveyor.yml
create mode 100644 bench/pack_symbols.rb
create mode 100644 bench/run_symbols.sh
create mode 100644 debian/patches/0001-Fix-paths-for-spec_helper-random_compat.patch
delete mode 100644 debian/patches/10_fix_test_path
delete mode 100644 debian/patches/11_fix_test_patch.patch
create mode 100644 doclib/msgpack/extension_value.rb
create mode 100644 doclib/msgpack/factory.rb
create mode 100644 ext/java/org/msgpack/jruby/ExtensionRegistry.java
create mode 100644 ext/java/org/msgpack/jruby/Factory.java
copy ext/msgpack/{rbinit.c => extension_value_class.c} (51%)
copy ext/msgpack/{core_ext.h => extension_value_class.h} (65%)
create mode 100644 ext/msgpack/factory_class.c
copy ext/msgpack/{core_ext.h => factory_class.h} (59%)
create mode 100644 ext/msgpack/packer_ext_registry.c
create mode 100644 ext/msgpack/packer_ext_registry.h
create mode 100644 ext/msgpack/unpacker_ext_registry.c
create mode 100644 ext/msgpack/unpacker_ext_registry.h
create mode 100644 lib/msgpack/factory.rb
create mode 100644 lib/msgpack/packer.rb
create mode 100644 lib/msgpack/symbol.rb
create mode 100644 lib/msgpack/unpacker.rb
delete mode 100644 metadata.yml
delete mode 100644 spec/cruby/packer_spec.rb
create mode 100644 spec/ext_value_spec.rb
create mode 100644 spec/exttypes.rb
create mode 100644 spec/factory_spec.rb
rename spec/jruby/{msgpack => }/unpacker_spec.rb (55%)
rename spec/{jruby => }/msgpack_spec.rb (92%)
create mode 100644 spec/packer_spec.rb
create mode 100644 spec/unpacker_spec.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