[DRE-commits] [ruby-libxml] branch master updated (be7e502 -> bc9645b)

Cédric Boutillier boutil at alioth.debian.org
Tue Aug 20 10:37:36 UTC 2013


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

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

      from  be7e502   debian/copyright: use DEP5 copyright-format/1.0 official URL for Format field
      adds  4b88b20   Imported Upstream version 2.7.0
       new  84d8caa   Merge tag 'upstream/2.7.0'
       new  48063e0   Bump Standards-Version to 3.9.4 (no changes needed); drop transitional packages
       new  0da1b4c   ignore test failures with ruby1.8
       new  673fdbf   do not apply fix_test_under_1.9.1 (not needed)
       new  1c7053a   refresh 0100_run_builtin_shell_command_ulimit_in_tests.patch
       new  15e9c22   add 0200_do_not_overwrite_LDFLAGS.patch: do not overwrite system LDFLAGS
       new  542e530   prepare changelog
       new  b14f2a7   add myself to Uploaders:
       new  bc9645b   add myself to Uploaders

The 9 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                                            |   50 +
 LICENSE                                            |    2 +-
 README.rdoc                                        |   33 +-
 Rakefile                                           |    9 +-
 checksums.yaml.gz                                  |  Bin 0 -> 426 bytes
 debian/changelog                                   |   19 +
 debian/control                                     |   40 +-
 ...run_builtin_shell_command_ulimit_in_tests.patch |    9 +-
 debian/patches/0200_do_not_overwrite_LDFLAGS.patch |   39 +
 debian/patches/series                              |    3 +-
 debian/rules                                       |    1 +
 ext/libxml/extconf.h                               |   10 +-
 ext/libxml/extconf.rb                              |   26 +-
 ext/libxml/libxml.c                                |    1 +
 ext/libxml/ruby_libxml.h                           |    2 +
 ext/libxml/ruby_xml_document.c                     |    5 +-
 ext/libxml/ruby_xml_dtd.c                          |   17 +-
 ext/libxml/ruby_xml_encoding.c                     |    8 +-
 ext/libxml/ruby_xml_encoding.h                     |    1 +
 ext/libxml/ruby_xml_error.c                        |  100 +-
 ext/libxml/ruby_xml_io.c                           |   22 +
 ext/libxml/ruby_xml_io.h                           |    1 +
 ext/libxml/ruby_xml_node.c                         |   24 +-
 ext/libxml/ruby_xml_reader.c                       |  123 ++-
 ext/libxml/ruby_xml_schema.c                       |  195 +++-
 ext/libxml/ruby_xml_schema.h                       |  800 +++++++++++++-
 ext/libxml/ruby_xml_schema_attribute.c             |  109 ++
 ext/libxml/ruby_xml_schema_attribute.h             |   15 +
 ext/libxml/ruby_xml_schema_element.c               |   94 ++
 ext/libxml/ruby_xml_schema_element.h               |   14 +
 ext/libxml/ruby_xml_schema_facet.c                 |   52 +
 ext/libxml/ruby_xml_schema_facet.h                 |   13 +
 ext/libxml/ruby_xml_schema_type.c                  |  259 +++++
 ext/libxml/ruby_xml_schema_type.h                  |    9 +
 ext/libxml/ruby_xml_version.h                      |    8 +-
 ext/libxml/ruby_xml_writer.c                       | 1118 ++++++++++++++++++++
 ext/libxml/ruby_xml_writer.h                       |   10 +
 ext/libxml/ruby_xml_xpath_object.c                 |    6 +-
 lib/libxml.rb                                      |    6 +
 lib/libxml/error.rb                                |   47 +-
 lib/libxml/schema.rb                               |   67 ++
 lib/libxml/schema/attribute.rb                     |   19 +
 lib/libxml/schema/element.rb                       |   27 +
 lib/libxml/schema/type.rb                          |   29 +
 libxml-ruby.gemspec                                |    1 +
 metadata.yml                                       |   46 +-
 test/model/shiporder.xsd                           |   65 +-
 test/remove_test.rb                                |    9 +
 test/tc_dtd.rb                                     |    4 +
 test/tc_encoding.rb                                |    7 +-
 test/tc_encoding_sax.rb                            |    3 +-
 test/tc_error.rb                                   |   32 +-
 test/tc_html_parser.rb                             |    6 +-
 test/tc_node.rb                                    |    9 +-
 test/tc_parser.rb                                  |   29 +-
 test/{tc_parser.rb => tc_parser.rb.orig}           |   32 +-
 test/tc_reader.rb                                  |   44 +-
 test/tc_sax_parser.rb                              |    4 +-
 test/tc_schema.rb                                  |   80 +-
 test/tc_writer.rb                                  |  448 ++++++++
 test/tc_xpath.rb                                   |   12 +
 test/test_suite.rb                                 |    1 +
 62 files changed, 4042 insertions(+), 232 deletions(-)
 create mode 100644 checksums.yaml.gz
 create mode 100644 debian/patches/0200_do_not_overwrite_LDFLAGS.patch
 create mode 100644 ext/libxml/ruby_xml_schema_attribute.c
 create mode 100644 ext/libxml/ruby_xml_schema_attribute.h
 create mode 100644 ext/libxml/ruby_xml_schema_element.c
 create mode 100644 ext/libxml/ruby_xml_schema_element.h
 create mode 100644 ext/libxml/ruby_xml_schema_facet.c
 create mode 100644 ext/libxml/ruby_xml_schema_facet.h
 create mode 100644 ext/libxml/ruby_xml_schema_type.c
 create mode 100644 ext/libxml/ruby_xml_schema_type.h
 create mode 100644 ext/libxml/ruby_xml_writer.c
 create mode 100644 ext/libxml/ruby_xml_writer.h
 create mode 100644 lib/libxml/schema.rb
 create mode 100644 lib/libxml/schema/attribute.rb
 create mode 100644 lib/libxml/schema/element.rb
 create mode 100644 lib/libxml/schema/type.rb
 create mode 100644 test/remove_test.rb
 copy test/{tc_parser.rb => tc_parser.rb.orig} (90%)
 create mode 100644 test/tc_writer.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