[DRE-commits] [ruby-nokogiri] branch master updated (25813e0 -> e6704d7)

Lucas Nussbaum lucas at moszumanska.debian.org
Thu Jul 6 20:28:52 UTC 2017


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

lucas pushed a change to branch master
in repository ruby-nokogiri.

      from  25813e0   release to unstable
       new  3e36628   New upstream version 1.8.0
       new  1b75864   Merge tag 'upstream/1.8.0'
       new  faf8e0d   Prepare changelog
       new  7e2892a   Refresh patches and drop 0005-skip-test-incompatible-with-libxml2-from-Debian.patch (upstream also added a skip stanza)
       new  fa7a9b6   Bump Standards-Version. No changes needed.
       new  7085119   CHANGELOG.rdoc has been renamed to CHANGELOG.md
       new  e6704d7   Update changelog and document current TODO items

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:
 .autotest                                          |    6 +-
 .cross_rubies                                      |   11 +-
 .travis.yml                                        |   76 +-
 CHANGELOG.rdoc => CHANGELOG.md                     |  272 +++-
 Gemfile                                            |   19 +-
 Gemfile-libxml-ruby                                |    3 +
 LICENSE-DEPENDENCIES.md                            | 1612 ++++++++++++++++++++
 LICENSE.txt => LICENSE.md                          |    2 +-
 Manifest.txt                                       |   20 +-
 README.md                                          |   21 +-
 Rakefile                                           |   52 +-
 Y_U_NO_GEMSPEC.md                                  |    2 +-
 appveyor.yml                                       |    2 +
 build_all                                          |    1 -
 debian/changelog                                   |   15 +
 debian/control                                     |    4 +-
 ...-warning-about-the-version-of-libxml-used.patch |    4 +-
 .../0002-deactivate-reader_blocking-test.patch     |    2 -
 .../0003-Remove-dependency-on-mini_portile2.patch  |   58 +-
 ...est-incompatible-with-libxml2-from-Debian.patch |   20 -
 debian/patches/series                              |    1 -
 debian/rules                                       |    2 +-
 dependencies.yml                                   |   21 +-
 ext/nokogiri/extconf.rb                            |   58 +-
 ext/nokogiri/nokogiri.c                            |    4 -
 ext/nokogiri/nokogiri.h                            |   10 -
 ext/nokogiri/xml_attr.c                            |   20 +-
 ext/nokogiri/xml_node.c                            |   31 +-
 ext/nokogiri/xml_sax_push_parser.c                 |   68 +-
 lib/nokogiri.rb                                    |    2 +-
 lib/nokogiri/html/document.rb                      |    2 +-
 lib/nokogiri/html/sax/parser.rb                    |   10 +
 lib/nokogiri/version.rb                            |    9 +-
 lib/nokogiri/xml.rb                                |    2 +-
 lib/nokogiri/xml/document.rb                       |   20 +-
 lib/nokogiri/xml/node.rb                           |   18 +-
 lib/nokogiri/xml/node_set.rb                       |   30 +-
 lib/nokogiri/xml/parse_options.rb                  |    6 +-
 lib/nokogiri/xml/sax/parser.rb                     |   13 +-
 lib/nokogiri/xml/searchable.rb                     |   59 +-
 lib/nokogiri/xml/syntax_error.rb                   |   25 +-
 nokogiri.gemspec                                   |   49 +-
 ...arison-with-root-node-in-xmlXPathCmpNodes.patch |   34 +
 ...ix-XPointer-paths-beginning-with-range-to.patch |  174 +++
 ...sallow-namespace-nodes-in-XPointer-ranges.patch |  249 +++
 ...ap-overread-in-xsltFormatNumberConversion.patch |   31 +
 ...for-integer-overflow-in-xsltAddTextString.patch |   74 +
 ports/archives/libxml2-2.9.4.tar.gz                |  Bin 0 -> 5374830 bytes
 ports/archives/libxslt-1.1.29.tar.gz               |  Bin 0 -> 3428524 bytes
 suppressions/nokogiri_ree-1.8.7.358.supp           |   61 -
 suppressions/nokogiri_ruby-1.8.7.370.supp          |    0
 suppressions/nokogiri_ruby-1.9.2.320.supp          |   28 -
 suppressions/nokogiri_ruby-1.9.3.327.supp          |   28 -
 test/decorators/test_slop.rb                       |    5 +-
 test/helper.rb                                     |   10 +
 test/html/sax/test_parser.rb                       |   27 +
 test/html/test_document.rb                         |   13 +-
 test/html/test_document_encoding.rb                |    4 +-
 test/html/test_document_fragment.rb                |    3 +
 test/xml/sax/test_push_parser.rb                   |   48 +
 test/xml/test_attr.rb                              |    7 +
 test/xml/test_document.rb                          |    2 +-
 test/xml/test_document_fragment.rb                 |   27 +
 test/xml/test_entity_reference.rb                  |    4 +-
 test/xml/test_node.rb                              |   30 +-
 test/xml/test_node_reparenting.rb                  |   14 +
 test/xml/test_node_set.rb                          |   14 +-
 test/xml/test_reader.rb                            |   19 +
 test/xml/test_syntax_error.rb                      |   36 +-
 test/xml/test_unparented_node.rb                   |   65 +-
 test/xml/test_xpath.rb                             |   31 +-
 test_all                                           |  107 --
 72 files changed, 3085 insertions(+), 722 deletions(-)
 rename CHANGELOG.rdoc => CHANGELOG.md (87%)
 create mode 100644 Gemfile-libxml-ruby
 create mode 100644 LICENSE-DEPENDENCIES.md
 rename LICENSE.txt => LICENSE.md (98%)
 delete mode 100644 debian/patches/0005-skip-test-incompatible-with-libxml2-from-Debian.patch
 create mode 100644 patches/libxml2/0001-Fix-comparison-with-root-node-in-xmlXPathCmpNodes.patch
 create mode 100644 patches/libxml2/0002-Fix-XPointer-paths-beginning-with-range-to.patch
 create mode 100644 patches/libxml2/0003-Disallow-namespace-nodes-in-XPointer-ranges.patch
 create mode 100644 patches/libxslt/0001-Fix-heap-overread-in-xsltFormatNumberConversion.patch
 create mode 100644 patches/libxslt/0002-Check-for-integer-overflow-in-xsltAddTextString.patch
 create mode 100644 ports/archives/libxml2-2.9.4.tar.gz
 create mode 100644 ports/archives/libxslt-1.1.29.tar.gz
 delete mode 100644 suppressions/nokogiri_ree-1.8.7.358.supp
 delete mode 100644 suppressions/nokogiri_ruby-1.8.7.370.supp
 delete mode 100644 suppressions/nokogiri_ruby-1.9.2.320.supp
 delete mode 100644 suppressions/nokogiri_ruby-1.9.3.327.supp
 delete mode 100755 test_all

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



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