[libpod-tree-perl] branch master updated (269e550 -> 0554ff7)

Florian Schlichting fsfs at moszumanska.debian.org
Tue Aug 25 20:05:26 UTC 2015


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

fsfs pushed a change to branch master
in repository libpod-tree-perl.

      from  269e550   update changelog
       new  7844c6e   Add debian/upstream/metadata
       new  5469676   Update debian/changelog
      adds  e862005   Imported Upstream version 1.25
       new  7dfb84c   Merge tag 'upstream/1.25'
       new  c3ffe30   Update debian/changelog
       new  ccc40e7   update upstream metadata
       new  977c854   Refresh and forward spelling.patch
       new  cef42f2   Run wrap-and-sort on d/control
       new  a90c32e   Add build-dependencies on Path::Tiny and Test::Compile, both needed for testing
       new  a92f6a5   Update commonly used license stanzas
       new  85324b3   Bump dh compat to level 9
       new  faee88c   Declare compliance with Debian Policy 3.9.6
       new  1475f01   Skipt autotests expecting a built source tree
       new  c90d612   Mark package autopkgtest-able
       new  0554ff7   prepare changelog for release

The 14 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:
 .perlcriticrc                    |   19 +
 .perltidyrc                      |    8 +
 .tidyallrc                       |    8 +
 Changes                          |   45 ++
 MANIFEST                         |   34 +-
 META.json                        |   64 ++
 META.yml                         |   51 +-
 Makefile.PL                      |   89 ++-
 README                           |    7 +-
 debian/changelog                 |   23 +-
 debian/compat                    |    2 +-
 debian/control                   |   21 +-
 debian/copyright                 |    8 +-
 debian/patches/spelling.patch    |    5 +-
 debian/tests/pkg-perl/skip-smoke |    4 +
 debian/upstream/metadata         |    7 +
 lib/Pod/Tree.pm                  |  463 ++++++---------
 lib/Pod/Tree/BitBucket.pm        |   11 +
 lib/Pod/Tree/HTML.pm             |  984 ++++++++++++++-----------------
 lib/Pod/Tree/HTML/LinkMap.pm     |   29 +
 lib/Pod/Tree/HTML/PerlTop.pm     |   38 ++
 lib/Pod/Tree/Node.pm             | 1195 +++++++++++++++++---------------------
 lib/Pod/Tree/PerlBin.pm          |  271 ++++-----
 lib/Pod/Tree/PerlDist.pm         |  327 +++++------
 lib/Pod/Tree/PerlFunc.pm         |  354 ++++++-----
 lib/Pod/Tree/PerlLib.pm          |  338 ++++++-----
 lib/Pod/Tree/PerlMap.pm          |   85 ++-
 lib/Pod/Tree/PerlPod.pm          |  283 +++++----
 lib/Pod/Tree/PerlTop.pm          |  281 ++++-----
 lib/Pod/Tree/PerlUtil.pm         |  127 ++--
 lib/Pod/Tree/Pod.pm              |  374 ++++++------
 lib/Pod/Tree/StrStream.pm        |   32 +
 lib/Pod/Tree/Stream.pm           |   41 ++
 mod2html                         |  166 +++---
 perl2html                        |   54 +-
 pods2html                        |  246 ++++----
 podtree2html                     |   25 +-
 t/00-compile.t                   |    9 +
 t/10-cut.t                       |   78 +++
 t/11-html.t                      |  227 ++++++++
 t/12-load.t                      |   79 +++
 t/13-mapper.t                    |   71 +++
 t/14-option.t                    |   39 ++
 t/15-pod.t                       |   36 ++
 t/16-pod2html.t                  |   56 ++
 t/17-pods2html.t                 |  132 +++++
 t/18-template.t                  |   47 ++
 t/19-tree.t                      |   37 ++
 t/94-version.t                   |   16 +
 t/95-tidyall.t                   |   10 +
 t/96-perl-critic.t               |   23 +
 t/cut.t                          |  115 ----
 t/html.t                         |  268 ---------
 t/load.t                         |  118 ----
 t/mapper.t                       |  105 ----
 t/option.t                       |   66 ---
 t/pod.t                          |   65 ---
 t/pod2html.d/values.pl           |    4 +-
 t/pod2html.t                     |   67 ---
 t/pods2html.d/values.pl          |    4 +-
 t/pods2html.t                    |  159 -----
 t/template.t                     |   79 ---
 t/tree.d/code.pm                 |   36 +-
 t/tree.t                         |   65 ---
 64 files changed, 3853 insertions(+), 4277 deletions(-)
 create mode 100644 .perlcriticrc
 create mode 100644 .perltidyrc
 create mode 100644 .tidyallrc
 create mode 100644 META.json
 create mode 100644 debian/tests/pkg-perl/skip-smoke
 create mode 100644 debian/upstream/metadata
 create mode 100644 lib/Pod/Tree/BitBucket.pm
 create mode 100644 lib/Pod/Tree/HTML/LinkMap.pm
 create mode 100644 lib/Pod/Tree/HTML/PerlTop.pm
 create mode 100644 lib/Pod/Tree/StrStream.pm
 create mode 100644 lib/Pod/Tree/Stream.pm
 create mode 100644 t/00-compile.t
 create mode 100644 t/10-cut.t
 create mode 100644 t/11-html.t
 create mode 100644 t/12-load.t
 create mode 100644 t/13-mapper.t
 create mode 100644 t/14-option.t
 create mode 100644 t/15-pod.t
 create mode 100644 t/16-pod2html.t
 create mode 100644 t/17-pods2html.t
 create mode 100644 t/18-template.t
 create mode 100644 t/19-tree.t
 create mode 100644 t/94-version.t
 create mode 100644 t/95-tidyall.t
 create mode 100644 t/96-perl-critic.t
 delete mode 100644 t/cut.t
 delete mode 100644 t/html.t
 delete mode 100644 t/load.t
 delete mode 100644 t/mapper.t
 delete mode 100644 t/option.t
 delete mode 100644 t/pod.t
 delete mode 100644 t/pod2html.t
 delete mode 100644 t/pods2html.t
 delete mode 100644 t/template.t
 delete mode 100644 t/tree.t

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



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