[DRE-commits] [ruby-psych] branch master updated (8f2ebe9 -> 7c372ed)

Miguel Landaeta nomadium at moszumanska.debian.org
Wed Mar 15 21:43:40 UTC 2017


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

nomadium pushed a change to branch master
in repository ruby-psych.

      from  8f2ebe9   Run wrap-and-sort on packaging files
      adds  a45bd39   Imported Upstream version 2.2.4
       new  175c2d3   Merge tag 'upstream/2.2.4'
       new  d6b2bbf   Prepare upload with new upstream release
       new  ed38a38   Bump debhelper compat level to 10
       new  be6e6c6   Bump Standards-Version to 3.9.8
       new  01f94de   Update Homepage
       new  c4cee03   Add myself as uploader
       new  2445c53   Adjust package description
       new  1021dea   Update copyright file
       new  d128525   Simplify d/rules file
       new  a46b6c5   Update docs file
       new  484f260   Drop unneeded dependencies for the binary package
       new  c198876   Add B-D on libyaml-dev
       new  d726ab8   Build java extension
       new  0cda27b   Add patch to disable rubygems and bundler usage
       new  2fc9abe   Add patch to disable ruby-maven usage
       new  63c74d5   Add missing B-D on rake-compiler
       new  425b006   Enable tests
       new  7c372ed   Add missing copyright information

The 18 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:
 .autotest                                          |  18 -
 .gitignore                                         |  14 +
 .travis.yml                                        |  25 +-
 Gemfile                                            |   3 +
 Manifest.txt                                       | 114 ------
 Mavenfile                                          |   7 +
 README.md                                          |  73 ++++
 README.rdoc                                        |  71 ----
 Rakefile                                           | 148 ++------
 appveyor.yml                                       |  18 +
 bin/console                                        |   7 +
 bin/setup                                          |   6 +
 debian/changelog                                   |   6 +-
 debian/compat                                      |   2 +-
 debian/control                                     |  36 +-
 debian/copyright                                   | 300 +++++++++++++++-
 .../01-Remove-snakeyaml-hardcoded-versions.patch   |  26 ++
 .../02-Disable-rubygems-and-bundler-usage.patch    |  13 +
 debian/patches/03-Disable-ruby-maven.patch         |  30 ++
 debian/patches/series                              |   3 +
 debian/ruby-psych.docs                             |   2 +-
 debian/ruby-tests.rake                             |   6 +-
 debian/rules                                       |  33 +-
 ext/java/PsychEmitter.java                         | 347 ++++++++++++++++++
 ext/java/PsychLibrary.java                         |  93 +++++
 ext/java/PsychParser.java                          | 398 +++++++++++++++++++++
 ext/java/PsychToRuby.java                          |  79 ++++
 ext/java/PsychYamlTree.java                        |  55 +++
 ext/psych/.gitignore                               |  11 +
 ext/psych/extconf.rb                               |   1 +
 ext/psych/psych.h                                  |   3 -
 ext/psych/psych_emitter.c                          |  28 +-
 ext/psych/psych_parser.c                           |  29 --
 ext/psych/psych_to_ruby.c                          |   4 -
 ext/psych/yaml/api.c                               |  57 +--
 ext/psych/yaml/config.h                            |  12 +-
 ext/psych/yaml/emitter.c                           |  16 +-
 ext/psych/yaml/loader.c                            |  25 +-
 ext/psych/yaml/parser.c                            |  12 +-
 ext/psych/yaml/scanner.c                           |  42 +--
 ext/psych/yaml/yaml_private.h                      |   4 +-
 lib/psych.rb                                       |  24 +-
 lib/psych/class_loader.rb                          |   1 +
 lib/psych/coder.rb                                 |   1 +
 lib/psych/core_ext.rb                              |   1 +
 lib/psych/deprecated.rb                            |   1 +
 lib/psych/exception.rb                             |   1 +
 lib/psych/handler.rb                               |   1 +
 lib/psych/handlers/document_stream.rb              |   1 +
 lib/psych/handlers/recorder.rb                     |   1 +
 lib/psych/json/ruby_events.rb                      |   1 +
 lib/psych/json/stream.rb                           |   1 +
 lib/psych/json/tree_builder.rb                     |   1 +
 lib/psych/json/yaml_events.rb                      |   1 +
 lib/psych/nodes.rb                                 |   1 +
 lib/psych/nodes/alias.rb                           |   1 +
 lib/psych/nodes/document.rb                        |   1 +
 lib/psych/nodes/mapping.rb                         |   1 +
 lib/psych/nodes/node.rb                            |   1 +
 lib/psych/nodes/scalar.rb                          |   1 +
 lib/psych/nodes/sequence.rb                        |   1 +
 lib/psych/nodes/stream.rb                          |   1 +
 lib/psych/omap.rb                                  |   1 +
 lib/psych/parser.rb                                |   1 +
 lib/psych/scalar_scanner.rb                        |   3 +-
 lib/psych/set.rb                                   |   1 +
 lib/psych/stream.rb                                |   1 +
 lib/psych/streaming.rb                             |   1 +
 lib/psych/syntax_error.rb                          |   1 +
 lib/psych/tree_builder.rb                          |   1 +
 lib/psych/versions.rb                              |   8 +-
 lib/psych/visitors.rb                              |   1 +
 lib/psych/visitors/depth_first.rb                  |   1 +
 lib/psych/visitors/emitter.rb                      |   1 +
 lib/psych/visitors/json_tree.rb                    |   1 +
 lib/psych/visitors/to_ruby.rb                      |   5 +-
 lib/psych/visitors/visitor.rb                      |   1 +
 lib/psych/visitors/yaml_tree.rb                    |   5 +-
 lib/psych/y.rb                                     |   1 +
 lib/psych_jars.rb                                  |   2 +-
 metadata.yml                                       | 224 ------------
 psych.gemspec                                      |  41 +++
 test/psych/handlers/test_recorder.rb               |   1 +
 test/psych/helper.rb                               |   1 +
 test/psych/json/test_stream.rb                     |   1 +
 test/psych/nodes/test_enumerable.rb                |   1 +
 test/psych/test_alias_and_anchor.rb                |   1 +
 test/psych/test_array.rb                           |   1 +
 test/psych/test_boolean.rb                         |   1 +
 test/psych/test_class.rb                           |   1 +
 test/psych/test_coder.rb                           |   1 +
 test/psych/test_date_time.rb                       |   1 +
 test/psych/test_deprecated.rb                      |   1 +
 test/psych/test_document.rb                        |   1 +
 test/psych/test_emitter.rb                         |  19 +
 test/psych/test_encoding.rb                        |   1 +
 test/psych/test_exception.rb                       |   1 +
 test/psych/test_hash.rb                            |   1 +
 test/psych/test_json_tree.rb                       |   1 +
 test/psych/test_marshalable.rb                     |  55 +++
 test/psych/test_merge_keys.rb                      |   1 +
 test/psych/test_nil.rb                             |   1 +
 test/psych/test_null.rb                            |   1 +
 test/psych/test_numeric.rb                         |   1 +
 test/psych/test_object.rb                          |   1 +
 test/psych/test_object_references.rb               |   1 +
 test/psych/test_omap.rb                            |   1 +
 test/psych/test_parser.rb                          |   1 +
 test/psych/test_psych.rb                           |   7 +
 test/psych/test_safe_load.rb                       |   1 +
 test/psych/test_scalar.rb                          |   1 +
 test/psych/test_scalar_scanner.rb                  |   5 +
 test/psych/test_serialize_subclasses.rb            |   1 +
 test/psych/test_set.rb                             |   1 +
 test/psych/test_stream.rb                          |   1 +
 test/psych/test_string.rb                          |   5 +
 test/psych/test_struct.rb                          |   1 +
 test/psych/test_symbol.rb                          |   1 +
 test/psych/test_tainted.rb                         |   1 +
 test/psych/test_to_yaml_properties.rb              |   1 +
 test/psych/test_tree_builder.rb                    |   1 +
 test/psych/test_yaml.rb                            |   1 +
 test/psych/test_yamldbm.rb                         |   1 +
 test/psych/test_yamlstore.rb                       |   1 +
 test/psych/visitors/test_depth_first.rb            |   1 +
 test/psych/visitors/test_emitter.rb                |   1 +
 test/psych/visitors/test_to_ruby.rb                |   1 +
 test/psych/visitors/test_yaml_tree.rb              |   7 +
 128 files changed, 1891 insertions(+), 769 deletions(-)
 delete mode 100644 .autotest
 create mode 100644 .gitignore
 create mode 100644 Gemfile
 delete mode 100644 Manifest.txt
 create mode 100644 Mavenfile
 create mode 100644 README.md
 delete mode 100644 README.rdoc
 create mode 100644 appveyor.yml
 create mode 100755 bin/console
 create mode 100755 bin/setup
 create mode 100644 debian/patches/01-Remove-snakeyaml-hardcoded-versions.patch
 create mode 100644 debian/patches/02-Disable-rubygems-and-bundler-usage.patch
 create mode 100644 debian/patches/03-Disable-ruby-maven.patch
 create mode 100644 debian/patches/series
 create mode 100644 ext/java/PsychEmitter.java
 create mode 100644 ext/java/PsychLibrary.java
 create mode 100644 ext/java/PsychParser.java
 create mode 100644 ext/java/PsychToRuby.java
 create mode 100644 ext/java/PsychYamlTree.java
 create mode 100644 ext/psych/.gitignore
 delete mode 100644 metadata.yml
 create mode 100644 psych.gemspec
 create mode 100644 test/psych/test_marshalable.rb

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



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