[DRE-commits] [ruby-libxml] branch master updated (e848162 -> fb4c404)

Cédric Boutillier boutil at moszumanska.debian.org
Sat Jul 2 19:44:41 UTC 2016


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

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

      from  e848162   Skip test_document from tc_reader (randomly failing)
      adds  82a8341   Imported Upstream version 2.9.0
       new  1420819   Merge tag 'upstream/2.9.0'
       new  96f584a   Bump Standards to 3.9.8 (no changes)
       new  9f86d34   Disable temporarily exclusion of some arches for tests
       new  693195e   Drop 0100_run_builtin_shell_command_ulimit_in_tests.patch
       new  b4a67fd   Drop libxml2-2.9.2.patch
       new  31f7ac8   Refresh patches
       new  fb4c404   prepare changelog

The 7 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:
 HISTORY                                            |   15 +
 README.rdoc                                        |   14 +-
 Rakefile                                           |  158 +-
 debian/changelog                                   |   12 +
 debian/control                                     |    2 +-
 ...run_builtin_shell_command_ulimit_in_tests.patch |   18 -
 debian/patches/avoid_infinite_loop_ruby22.patch    |   10 +-
 debian/patches/avoid_messing_with_loadpath.patch   |    4 +-
 debian/patches/broken_tests.patch                  |   26 +-
 debian/patches/libxml2-2.9.2.patch                 |   48 -
 debian/patches/series                              |    2 -
 debian/ruby-tests.rb                               |    2 +-
 ext/libxml/extconf.h                               |    4 +
 ext/libxml/extconf.rb                              |  173 +-
 ext/libxml/libxml.c                                |    4 +
 ext/libxml/ruby_xml.c                              | 1870 +++++++------
 ext/libxml/ruby_xml.h                              |   30 +-
 ext/libxml/ruby_xml_attr.c                         |  666 ++---
 ext/libxml/ruby_xml_attr_decl.c                    |    4 +-
 ext/libxml/ruby_xml_cbg.c                          |  170 +-
 ext/libxml/ruby_xml_document.c                     | 2280 ++++++++-------
 ext/libxml/ruby_xml_dtd.c                          |  529 ++--
 ext/libxml/ruby_xml_encoding.c                     |  522 ++--
 ext/libxml/ruby_xml_encoding.h                     |   38 +-
 ext/libxml/ruby_xml_html_parser_context.c          |  675 +++--
 ext/libxml/ruby_xml_input_cbg.c                    |  382 +--
 ext/libxml/ruby_xml_io.c                           |  102 +-
 ext/libxml/ruby_xml_namespace.c                    |    4 +-
 ext/libxml/ruby_xml_node.c                         | 2898 ++++++++++----------
 ext/libxml/ruby_xml_parser_context.c               | 2000 +++++++-------
 ext/libxml/ruby_xml_reader.c                       | 2454 +++++++++--------
 ext/libxml/ruby_xml_relaxng.c                      |  221 +-
 ext/libxml/ruby_xml_sax2_handler.c                 |  654 +++--
 ext/libxml/ruby_xml_schema.c                       |  601 ++--
 ext/libxml/ruby_xml_version.h                      |    6 +-
 ext/libxml/ruby_xml_writer.c                       |   29 +-
 ext/libxml/ruby_xml_xpath.c                        |  376 +--
 ext/libxml/ruby_xml_xpath_context.c                |  721 +++--
 ext/libxml/ruby_xml_xpath_object.c                 |  670 ++---
 libxml-ruby.gemspec                                |   91 +-
 metadata.yml                                       |  305 --
 test/etc_doc_to_s.rb                               |   21 -
 test/ets_doc_file.rb                               |   17 -
 test/ets_doc_to_s.rb                               |   23 -
 test/ets_gpx.rb                                    |   28 -
 test/ets_node_gc.rb                                |   23 -
 test/ets_test.xml                                  |    2 -
 test/ets_tsr.rb                                    |   11 -
 test/tc_attr.rb                                    |   12 +-
 test/tc_attr_decl.rb                               |   11 +-
 test/tc_attributes.rb                              |    3 +-
 test/tc_canonicalize.rb                            |    3 +-
 test/tc_deprecated_require.rb                      |    3 +-
 test/tc_document.rb                                |    9 +-
 test/tc_document_write.rb                          |    5 +-
 test/tc_dtd.rb                                     |    9 +-
 test/tc_encoding.rb                                |  252 +-
 test/tc_encoding_sax.rb                            |    7 +-
 test/tc_error.rb                                   |   29 +-
 test/tc_html_parser.rb                             |   22 +-
 test/tc_html_parser_context.rb                     |    3 +-
 test/tc_namespace.rb                               |    5 +-
 test/tc_namespaces.rb                              |   11 +-
 test/tc_node.rb                                    |    5 +-
 test/tc_node_cdata.rb                              |    5 +-
 test/tc_node_comment.rb                            |    3 +-
 test/tc_node_copy.rb                               |    3 +-
 test/tc_node_edit.rb                               |   12 +-
 test/tc_node_pi.rb                                 |    3 +-
 test/tc_node_text.rb                               |    5 +-
 test/tc_node_write.rb                              |    5 +-
 test/tc_node_xlink.rb                              |    3 +-
 test/tc_parser.rb                                  |   42 +-
 test/tc_parser_context.rb                          |   13 +-
 test/tc_properties.rb                              |    3 +-
 test/tc_reader.rb                                  |   19 +-
 test/tc_relaxng.rb                                 |    9 +-
 test/tc_sax_parser.rb                              |   19 +-
 test/tc_schema.rb                                  |    9 +-
 test/tc_traversal.rb                               |    3 +-
 test/tc_writer.rb                                  |    3 +-
 test/tc_xinclude.rb                                |    3 +-
 test/tc_xml.rb                                     |    3 +-
 test/tc_xpath.rb                                   |   17 +-
 test/tc_xpath_context.rb                           |    7 +-
 test/tc_xpath_expression.rb                        |    7 +-
 test/tc_xpointer.rb                                |    4 +-
 test/test_helper.rb                                |    4 +-
 test/test_suite.rb                                 |    1 -
 89 files changed, 9507 insertions(+), 10002 deletions(-)
 delete mode 100644 debian/patches/0100_run_builtin_shell_command_ulimit_in_tests.patch
 delete mode 100644 debian/patches/libxml2-2.9.2.patch
 create mode 100644 ext/libxml/extconf.h
 delete mode 100644 metadata.yml
 delete mode 100644 test/etc_doc_to_s.rb
 delete mode 100644 test/ets_doc_file.rb
 delete mode 100644 test/ets_doc_to_s.rb
 delete mode 100644 test/ets_gpx.rb
 delete mode 100644 test/ets_node_gc.rb
 delete mode 100644 test/ets_test.xml
 delete mode 100644 test/ets_tsr.rb

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



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