[libxml-xpath-perl] branch master updated (8d99ad3 -> 0ee3f42)

Axel Beckert abe at deuxchevaux.org
Fri Jan 15 23:14:06 UTC 2016


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

abe pushed a change to branch master
in repository libxml-xpath-perl.

      from  8d99ad3   Mention "xpath" commandline tool in long package description
      adds  c3c6339   Imported Upstream version 1.22
       new  5fdc003   Merge tag 'upstream/1.22'
       new  ecb8528   Update debian/changelog
       new  296f78e   Remove spelling.patch, applied upstream
       new  20b74e5   Refresh debian/patches/fix_comparison_bug_RT6363.patch
       new  b47a0f6   Add DEP-3 compliant patch headers to fix_comparison_bug_RT6363.patch
       new  61bf847   New, laborious upstream maintainer. (Closes: #458713)
       new  cb1a035   Add "fallback => 1" to "use overload" in XML::XPath::Literal
       new  2d420a3   Add patch (plus test, yay!) to make "and" in XPath commutative
       new  73ce1ae   Make xpath work without internet connection
       new  d1edfe7   Bump debhelper compatibility to 9 as recommended
       new  0ee3f42   Lintian overrides for library-package-name-for-application + application-in-library-section

The 11 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:
 Changes                                            |  34 ++
 LICENSE                                            | 177 +++++++
 MANIFEST                                           |  62 ++-
 MANIFEST.SKIP                                      |  12 +
 META.json                                          |  50 ++
 META.yml                                           |  26 +
 Makefile.PL                                        |  45 +-
 README                                             |  42 +-
 XPath.pm                                           | 553 --------------------
 XPath/PerlSAX.pm                                   | 166 ------
 debian/changelog                                   |  18 +-
 debian/compat                                      |   2 +-
 debian/control                                     |   2 +-
 debian/lintian-overrides                           |   3 +
 debian/patches/fix-stringification-overload.patch  |  18 +
 debian/patches/fix_comparison_bug_RT6363.patch     |  21 +-
 debian/patches/make-and-commutative.patch          |  62 +++
 debian/patches/series                              |   4 +-
 debian/patches/spelling.patch                      |  37 --
 ...ption-to-work-without-internet-connection.patch |  75 +++
 lib/XML/XPath.pm                                   | 575 +++++++++++++++++++++
 {XPath => lib/XML/XPath}/Boolean.pm                |   7 +-
 {XPath => lib/XML/XPath}/Builder.pm                |  28 +-
 {XPath => lib/XML/XPath}/Expr.pm                   |  85 +--
 {XPath => lib/XML/XPath}/Function.pm               | 102 +++-
 {XPath => lib/XML/XPath}/Literal.pm                |  13 +-
 {XPath => lib/XML/XPath}/LocationPath.pm           |  23 +-
 {XPath => lib/XML/XPath}/Node.pm                   |  46 +-
 {XPath => lib/XML/XPath}/Node/Attribute.pm         |  19 +-
 {XPath => lib/XML/XPath}/Node/Comment.pm           |  14 +-
 {XPath => lib/XML/XPath}/Node/Element.pm           | 208 ++++----
 {XPath => lib/XML/XPath}/Node/Namespace.pm         |  12 +-
 {XPath => lib/XML/XPath}/Node/PI.pm                |  12 +-
 {XPath => lib/XML/XPath}/Node/Text.pm              |  14 +-
 {XPath => lib/XML/XPath}/NodeSet.pm                |  22 +-
 {XPath => lib/XML/XPath}/Number.pm                 |   7 +-
 {XPath => lib/XML/XPath}/Parser.pm                 | 239 ++++-----
 lib/XML/XPath/PerlSAX.pm                           | 167 ++++++
 {XPath => lib/XML/XPath}/Root.pm                   |  13 +-
 {XPath => lib/XML/XPath}/Step.pm                   | 131 ++---
 {XPath => lib/XML/XPath}/Variable.pm               |   7 +-
 {XPath => lib/XML/XPath}/XMLParser.pm              |  42 +-
 t/31dots.t                                         |  14 +
 t/32duplicate_nodes.t                              |  22 +
 t/33getnodetext.t                                  |  23 +
 t/34non_abbreviated_attrib.t                       |  33 ++
 t/35namespace_uri.t                                |  22 +
 t/36substring.t                                    |  34 ++
 t/37concat.t                                       |  14 +
 t/38starts_with.t                                  |  18 +
 t/39contains.t                                     |  18 +
 t/40substring_before.t                             |  18 +
 t/41substring_after.t                              |  22 +
 t/42create_node.t                                  |  29 ++
 t/43op_div.t                                       |  15 +
 55 files changed, 2194 insertions(+), 1283 deletions(-)
 create mode 100644 Changes
 create mode 100644 LICENSE
 create mode 100644 MANIFEST.SKIP
 create mode 100644 META.json
 create mode 100644 META.yml
 delete mode 100644 XPath.pm
 delete mode 100644 XPath/PerlSAX.pm
 create mode 100644 debian/lintian-overrides
 create mode 100644 debian/patches/fix-stringification-overload.patch
 create mode 100644 debian/patches/make-and-commutative.patch
 delete mode 100644 debian/patches/spelling.patch
 create mode 100644 debian/patches/xpath-option-to-work-without-internet-connection.patch
 create mode 100644 lib/XML/XPath.pm
 rename {XPath => lib/XML/XPath}/Boolean.pm (94%)
 rename {XPath => lib/XML/XPath}/Builder.pm (96%)
 rename {XPath => lib/XML/XPath}/Expr.pm (97%)
 rename {XPath => lib/XML/XPath}/Function.pm (81%)
 rename {XPath => lib/XML/XPath}/Literal.pm (95%)
 rename {XPath => lib/XML/XPath}/LocationPath.pm (84%)
 rename {XPath => lib/XML/XPath}/Node.pm (96%)
 rename {XPath => lib/XML/XPath}/Node/Attribute.pm (94%)
 rename {XPath => lib/XML/XPath}/Node/Comment.pm (93%)
 rename {XPath => lib/XML/XPath}/Node/Element.pm (81%)
 rename {XPath => lib/XML/XPath}/Node/Namespace.pm (94%)
 rename {XPath => lib/XML/XPath}/Node/PI.pm (90%)
 rename {XPath => lib/XML/XPath}/Node/Text.pm (93%)
 rename {XPath => lib/XML/XPath}/NodeSet.pm (90%)
 rename {XPath => lib/XML/XPath}/Number.pm (96%)
 rename {XPath => lib/XML/XPath}/Parser.pm (93%)
 create mode 100644 lib/XML/XPath/PerlSAX.pm
 rename {XPath => lib/XML/XPath}/Root.pm (89%)
 rename {XPath => lib/XML/XPath}/Step.pm (96%)
 rename {XPath => lib/XML/XPath}/Variable.pm (91%)
 rename {XPath => lib/XML/XPath}/XMLParser.pm (96%)
 create mode 100644 t/31dots.t
 create mode 100644 t/32duplicate_nodes.t
 create mode 100644 t/33getnodetext.t
 create mode 100644 t/34non_abbreviated_attrib.t
 create mode 100644 t/35namespace_uri.t
 create mode 100644 t/36substring.t
 create mode 100644 t/37concat.t
 create mode 100644 t/38starts_with.t
 create mode 100644 t/39contains.t
 create mode 100644 t/40substring_before.t
 create mode 100644 t/41substring_after.t
 create mode 100644 t/42create_node.t
 create mode 100644 t/43op_div.t

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libxml-xpath-perl.git



More information about the Pkg-perl-cvs-commits mailing list