[DRE-commits] [ruby-amq-protocol] branch master updated (a675c59 -> 8295630)

Jonas Genannt jonas at brachium-system.net
Mon Jan 27 19:55:28 UTC 2014


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

hggh-guest pushed a change to branch master
in repository ruby-amq-protocol.

      from  a675c59   debian/copyright: use DEP5 copyright-format/1.0 official URL for Format field
      adds  aa521a7   Imported Upstream version 1.9.2
       new  f656772   Merge tag 'upstream/1.9.2'
       new  0243a6e   d/control: bumped standards version to 3.9.5 (no changes needed)
       new  1b69d5c   d/copyright: switched MIT to expat, matches; added myself to copyright
       new  194cbc3   added ruby-amq-protocol.docs
       new  8295630   updated disable bundler, added DEP3 header

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                                         |   9 +
 .gitmodules                                        |   4 +-
 .travis.yml                                        |  15 +-
 ChangeLog.md                                       |  70 +++
 Gemfile                                            |   8 +-
 LICENSE                                            |   2 +-
 PROFILING.md                                       |  81 ----
 README.md                                          |  43 +-
 Rakefile                                           |  55 +++
 benchmarks/int_allocator.rb                        |  34 ++
 benchmarks/pure/body_framing_with_256k_payload.rb  |  28 ++
 benchmarks/pure/body_framing_with_2k_payload.rb    |  28 ++
 checksums.yaml.gz                                  | Bin 0 -> 269 bytes
 __init__.py => codegen/__init__.py                 |   0
 .../amqp_0.9.1_changes.json                        |   0
 codegen.py => codegen/codegen.py                   |  12 +-
 codegen_helpers.py => codegen/codegen_helpers.py   |  30 +-
 .../protocol.rb.pytemplate                         | 136 +-----
 debian/control                                     |   4 +-
 debian/copyright                                   |  12 +-
 debian/patches/disable_bundler                     |  14 +-
 debian/ruby-amq-protocol.docs                      |   1 +
 generate.rb                                        |   8 +-
 irb.rb                                             |  98 ----
 lib/amq/bit_set.rb                                 | 119 +++++
 lib/amq/endianness.rb                              |  15 +
 lib/amq/hacks.rb                                   |  33 --
 lib/amq/int_allocator.rb                           |  85 ++++
 lib/amq/pack.rb                                    |  54 +++
 lib/amq/protocol/client.rb                         | 493 +++++++++------------
 lib/amq/protocol/constants.rb                      |  22 +
 lib/amq/protocol/exceptions.rb                     |  60 +++
 lib/amq/protocol/float_32bit.rb                    |  14 +
 lib/amq/protocol/frame.rb                          |  42 +-
 lib/amq/protocol/table.rb                          |  15 +-
 lib/amq/protocol/table_value_decoder.rb            | 113 +++--
 lib/amq/protocol/table_value_encoder.rb            |   6 +
 lib/amq/protocol/type_constants.rb                 |  16 +-
 lib/amq/protocol/version.rb                        |   2 +-
 lib/amq/settings.rb                                | 114 +++++
 lib/amq/uri.rb                                     |  37 ++
 metadata.yml                                       | 108 ++---
 post-processing.rb                                 |  25 --
 profiling/README.md                                |   9 +
 .../stackprof/body_framing_with_2k_payload.rb      |  33 ++
 spec/amq/bit_set_spec.rb                           | 232 ++++++++++
 spec/amq/int_allocator_spec.rb                     | 116 +++++
 spec/amq/{hacks_spec.rb => pack_spec.rb}           |  38 +-
 spec/amq/protocol/constants_spec.rb                |  14 +
 spec/amq/protocol/exchange_spec.rb                 |  22 +-
 spec/amq/protocol/method_spec.rb                   |   8 +
 spec/amq/protocol/table_spec.rb                    |  38 +-
 spec/amq/protocol/value_decoder_spec.rb            |  23 +
 spec/amq/protocol/value_encoder_spec.rb            |   6 +
 spec/amq/settings_spec.rb                          |  25 ++
 spec/amq/uri_parsing_spec.rb                       |  95 ++++
 spec/spec_helper.rb                                |  10 +-
 57 files changed, 1911 insertions(+), 823 deletions(-)
 create mode 100644 ChangeLog.md
 delete mode 100644 PROFILING.md
 create mode 100644 Rakefile
 create mode 100644 benchmarks/int_allocator.rb
 create mode 100644 benchmarks/pure/body_framing_with_256k_payload.rb
 create mode 100644 benchmarks/pure/body_framing_with_2k_payload.rb
 create mode 100644 checksums.yaml.gz
 rename __init__.py => codegen/__init__.py (100%)
 rename amqp_0.9.1_changes.json => codegen/amqp_0.9.1_changes.json (100%)
 rename codegen.py => codegen/codegen.py (90%)
 rename codegen_helpers.py => codegen/codegen_helpers.py (81%)
 rename protocol.rb.pytemplate => codegen/protocol.rb.pytemplate (68%)
 create mode 100644 debian/ruby-amq-protocol.docs
 delete mode 100755 irb.rb
 create mode 100644 lib/amq/bit_set.rb
 create mode 100644 lib/amq/endianness.rb
 delete mode 100644 lib/amq/hacks.rb
 create mode 100644 lib/amq/int_allocator.rb
 create mode 100644 lib/amq/pack.rb
 create mode 100644 lib/amq/protocol/constants.rb
 create mode 100644 lib/amq/protocol/exceptions.rb
 create mode 100644 lib/amq/protocol/float_32bit.rb
 create mode 100644 lib/amq/settings.rb
 create mode 100644 lib/amq/uri.rb
 delete mode 100755 post-processing.rb
 create mode 100644 profiling/README.md
 create mode 100644 profiling/stackprof/body_framing_with_2k_payload.rb
 create mode 100644 spec/amq/bit_set_spec.rb
 create mode 100644 spec/amq/int_allocator_spec.rb
 rename spec/amq/{hacks_spec.rb => pack_spec.rb} (67%)
 create mode 100644 spec/amq/protocol/constants_spec.rb
 create mode 100644 spec/amq/settings_spec.rb
 create mode 100644 spec/amq/uri_parsing_spec.rb

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



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