[DRE-commits] [ruby-nokogiri] branch master updated (23a77fd -> 022de00)

Cédric Boutillier boutil at moszumanska.debian.org
Fri May 30 14:35:53 UTC 2014


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

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

      from  23a77fd   upload to unstable
      adds  936079b   Imported Upstream version 1.6.2.1+ds
       new  14e6487   Merge tag 'upstream/1.6.2.1+ds'
       new  8ae935a   refresh always_use_system_libraries.patch and skip_test_reader_entity_reference_without_dtdload.patch
       new  a95156c   build-depend on pkg-config
       new  022de00   prepare changelog

The 4 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:
 .editorconfig                                      |    17 +
 .travis.yml                                        |    12 +-
 CHANGELOG.ja.rdoc                                  |    78 +-
 CHANGELOG.rdoc                                     |    70 +-
 Gemfile                                            |     6 +-
 Manifest.txt                                       |    64 +-
 README.ja.rdoc                                     |    39 +-
 README.rdoc                                        |    41 +-
 ROADMAP.md                                         |     3 +-
 Rakefile                                           |   224 +-
 build_all                                          |    87 +-
 checksums.yaml.gz                                  |   Bin 271 -> 270 bytes
 debian/changelog                                   |     9 +
 debian/control                                     |     2 +-
 debian/patches/always_use_system_libraries.patch   |    65 +-
 ...t_reader_entity_reference_without_dtdload.patch |    26 +-
 dependencies.yml                                   |     6 +-
 ext/nokogiri/extconf.rb                            |   606 +-
 ext/nokogiri/html_document.c                       |     4 +-
 ext/nokogiri/nokogiri.c                            |     7 +-
 ext/nokogiri/xml_document.c                        |     9 +-
 ext/nokogiri/xml_node.c                            |    83 +-
 ext/nokogiri/xml_reader.c                          |     2 +-
 ext/nokogiri/xml_sax_parser_context.c              |    40 +
 ext/nokogiri/xml_syntax_error.c                    |    15 +-
 ext/nokogiri/xml_syntax_error.h                    |     2 +-
 ext/nokogiri/xml_xpath_context.c                   |    16 +-
 ext/nokogiri/xslt_stylesheet.c                     |     2 +-
 lib/nokogiri.rb                                    |    53 +-
 lib/nokogiri/css/node.rb                           |    50 -
 lib/nokogiri/css/parser.rb                         |   431 +-
 lib/nokogiri/css/parser.y                          |    51 +-
 lib/nokogiri/css/xpath_visitor.rb                  |    76 +-
 lib/nokogiri/html/document.rb                      |   115 +-
 lib/nokogiri/html/sax/parser.rb                    |     4 +-
 lib/nokogiri/version.rb                            |     2 +-
 lib/nokogiri/xml/builder.rb                        |     2 +-
 lib/nokogiri/xml/document.rb                       |     4 +-
 lib/nokogiri/xml/dtd.rb                            |    10 +
 lib/nokogiri/xml/node.rb                           |    27 +-
 lib/nokogiri/xml/sax/parser.rb                     |     2 +-
 metadata.yml                                       |   437 +-
 ...01-Fix-parser-local-buffers-size-problems.patch |   265 +
 ...-Fix-entities-local-buffers-size-problems.patch |   102 +
 .../0003-Fix-an-error-in-previous-commit.patch     |    26 +
 .../0004-Fix-potential-out-of-bound-access.patch   |    26 +
 ...ssive-entities-expansion-upon-replacement.patch |   158 +
 ...006-Do-not-fetch-external-parsed-entities.patch |    78 +
 ..._PARSER_EOF-state-handling-through-the-pa.patch |   480 +
 .../0008-Improve-handling-of-xmlStopParser.patch   |   315 +
 ...0009-Fix-a-couple-of-return-without-value.patch |    37 +
 ...on-significant-blanks-node-in-HTML-parser.patch |  2006 ++
 ...-Do-not-fetch-external-parameter-entities.patch |    39 +
 .../0001-Adding-doc-update-related-to-1.1.28.patch |   222 +
 ...e-of-places-where-f-printf-parameters-wer.patch |    53 +
 ...pseudo-random-number-generator-with-curre.patch |    60 +
 ...XSLT-function-str-replace-is-broken-as-is.patch |    42 +
 ...ix-str-padding-to-work-with-UTF-8-strings.patch |   164 +
 ...nction-for-predicate-matching-in-patterns.patch |   587 +
 .../libxslt/0008-Fix-direct-pattern-matching.patch |    80 +
 ...0009-Fix-certain-patterns-with-predicates.patch |   185 +
 ...g-of-UTF-8-strings-in-EXSLT-crypto-module.patch |   126 +
 ...eak-in-xsltCompileIdKeyPattern-error-path.patch |    25 +
 .../patches/libxslt/0014-Fix-for-bug-436589.patch  |    43 +
 .../patches/libxslt/0015-Fix-mkdir-for-mingw.patch |    41 +
 suppressions/README.txt                            |     1 +
 suppressions/nokogiri_ree-1.8.7.358.supp           |    61 +
 .../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 +
 tasks/cross_compile.rb                             |   134 -
 test/css/test_nthiness.rb                          |    67 +-
 test/css/test_parser.rb                            |    37 +-
 test/css/test_tokenizer.rb                         |     2 +-
 test/css/test_xpath_visitor.rb                     |     7 +-
 test/files/atom.xml                                |   344 +
 .../{shift_jis.html => shift_jis_no_charset.html}  |     1 -
 test/files/slow-xpath.xml                          | 25509 +++++++++++++++++++
 test/helper.rb                                     |    10 +
 test/html/test_document.rb                         |    81 +-
 test/html/test_document_encoding.rb                |    10 +
 test/html/test_document_fragment.rb                |    12 +-
 test/namespaces/test_namespaces_aliased_default.rb |    24 +
 test/namespaces/test_namespaces_in_cloned_doc.rb   |    31 +
 test/namespaces/test_namespaces_preservation.rb    |    31 +
 test/test_nokogiri.rb                              |     6 +
 test/test_reader.rb                                |    11 +-
 test/test_xslt_transforms.rb                       |    25 +
 test/xml/sax/test_parser.rb                        |    16 +
 test/xml/sax/test_parser_context.rb                |     9 +
 test/xml/test_builder.rb                           |     9 +
 test/xml/test_c14n.rb                              |    14 +-
 test/xml/test_document.rb                          |    66 +
 test/xml/test_document_fragment.rb                 |     5 +
 test/xml/test_dtd.rb                               |    84 +
 test/xml/test_entity_reference.rb                  |     6 +-
 test/xml/test_node.rb                              |    24 +-
 test/xml/test_node_attributes.rb                   |    17 +
 test/xml/test_schema.rb                            |    26 +
 test/xml/test_text.rb                              |    15 +
 test/xml/test_xpath.rb                             |    87 +
 test_all                                           |     6 +-
 102 files changed, 33738 insertions(+), 1065 deletions(-)
 create mode 100644 .editorconfig
 create mode 100644 ports/patches/libxml2/0001-Fix-parser-local-buffers-size-problems.patch
 create mode 100644 ports/patches/libxml2/0002-Fix-entities-local-buffers-size-problems.patch
 create mode 100644 ports/patches/libxml2/0003-Fix-an-error-in-previous-commit.patch
 create mode 100644 ports/patches/libxml2/0004-Fix-potential-out-of-bound-access.patch
 create mode 100644 ports/patches/libxml2/0005-Detect-excessive-entities-expansion-upon-replacement.patch
 create mode 100644 ports/patches/libxml2/0006-Do-not-fetch-external-parsed-entities.patch
 create mode 100644 ports/patches/libxml2/0007-Enforce-XML_PARSER_EOF-state-handling-through-the-pa.patch
 create mode 100644 ports/patches/libxml2/0008-Improve-handling-of-xmlStopParser.patch
 create mode 100644 ports/patches/libxml2/0009-Fix-a-couple-of-return-without-value.patch
 create mode 100644 ports/patches/libxml2/0010-Keep-non-significant-blanks-node-in-HTML-parser.patch
 create mode 100644 ports/patches/libxml2/0011-Do-not-fetch-external-parameter-entities.patch
 create mode 100644 ports/patches/libxslt/0001-Adding-doc-update-related-to-1.1.28.patch
 create mode 100644 ports/patches/libxslt/0002-Fix-a-couple-of-places-where-f-printf-parameters-wer.patch
 create mode 100644 ports/patches/libxslt/0003-Initialize-pseudo-random-number-generator-with-curre.patch
 create mode 100644 ports/patches/libxslt/0004-EXSLT-function-str-replace-is-broken-as-is.patch
 create mode 100644 ports/patches/libxslt/0006-Fix-str-padding-to-work-with-UTF-8-strings.patch
 create mode 100644 ports/patches/libxslt/0007-Separate-function-for-predicate-matching-in-patterns.patch
 create mode 100644 ports/patches/libxslt/0008-Fix-direct-pattern-matching.patch
 create mode 100644 ports/patches/libxslt/0009-Fix-certain-patterns-with-predicates.patch
 create mode 100644 ports/patches/libxslt/0010-Fix-handling-of-UTF-8-strings-in-EXSLT-crypto-module.patch
 create mode 100644 ports/patches/libxslt/0013-Memory-leak-in-xsltCompileIdKeyPattern-error-path.patch
 create mode 100644 ports/patches/libxslt/0014-Fix-for-bug-436589.patch
 create mode 100644 ports/patches/libxslt/0015-Fix-mkdir-for-mingw.patch
 create mode 100644 suppressions/README.txt
 create mode 100644 suppressions/nokogiri_ree-1.8.7.358.supp
 copy .gemtest => suppressions/nokogiri_ruby-1.8.7.370.supp (100%)
 create mode 100644 suppressions/nokogiri_ruby-1.9.2.320.supp
 create mode 100644 suppressions/nokogiri_ruby-1.9.3.327.supp
 delete mode 100644 tasks/cross_compile.rb
 create mode 100644 test/files/atom.xml
 copy test/files/{shift_jis.html => shift_jis_no_charset.html} (66%)
 create mode 100644 test/files/slow-xpath.xml
 create mode 100644 test/namespaces/test_namespaces_aliased_default.rb
 create mode 100644 test/namespaces/test_namespaces_in_cloned_doc.rb
 create mode 100755 test/namespaces/test_namespaces_preservation.rb

-- 
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