[libconfig-any-perl] branch master updated (8efc1f8 -> 9eec424)

gregor herrmann gregoa at debian.org
Sun Jun 18 15:57:06 UTC 2017


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

gregoa pushed a change to branch master
in repository libconfig-any-perl.

      from  8efc1f8   update changelog
      adds  1febe9e   use absolute paths when loading perl files
      adds  4473d90   refactor option module loads for JSON subclass
      adds  3a27e96   handle UTF-8 data in JSON correctly
      adds  837fdc4   support Cpanel::JSON::XS and JSON::MaybeXS
      adds  88fedac   distar-ify
      adds  84f7541   changelog
      adds  045053a   Bumping version to 0.28
      adds  3f57821   include test corpus in manifest
      adds  82410e2   Release commit for 0.28
      adds  273db69   untaint cwd when constructing full perl file path
      adds  0354f86   check for load failure rather than empty result
      adds  c634199   throw error for missing perl files
      adds  c8a5bdc   changelog
      adds  10a5616   Bumping version to 0.29
      adds  2c3b51a   Release commit for 0.29
      adds  2ff1869   avoid YAML::Syck on perl <= 5.8.8
      adds  284d797   changelog
      adds  410175b   Bumping version to 0.30
      adds  1afb249   Release commit for 0.30
      adds  ca9c33f   remove unneeded load test
      adds  cb49d8a   stop using use_ok
      adds  e018669   better diagnostics on test failures
      adds  df8a40c   move pod tests to xt/
      adds  c2a19f6   always run all tests during release
      adds  257737f   fix is_supported on General
      adds  19f6cb6   white space cleanups
      adds  3f3b313   clean up module loading
      adds  cc97e84   fill out develop/suggests prereqs
      adds  8890fa0   include full rt link in pod
      adds  20190ef   pod cleanups
      adds  a047d24   changelog
      adds  fcfdc02   Bumping version to 0.31
      adds  ae826e8   Release commit for 0.31
      adds  3f84b21   less strict error check
      adds  d60679b   properly document JSON modules used
      adds  7122352   prereq report test
      adds  3a48950   improve diagnostics in yaml test
      adds  53ae8e5   allow YAML::Syck to fail the error tests
      adds  ea096da   changelog
      adds  a55e177   Bumping version to 0.32
      adds  9c7e790   Release commit for 0.32
      adds  a687cb4   New upstream version 0.32
       new  244f7b7   Updated version 0.32 from 'upstream/0.32'
       new  58c1e6e   Update debian/changelog
       new  fa3a0ed   add bug closer
       new  69c8d8b   Update years of packaging copyright.
       new  fd2f376   Remove stanza about removed files from debian/copyright.
       new  7d32449   Update (build) dependencies.
       new  20b8258   Declare compliance with Debian Policy 3.9.8.
       new  a29214a   debian/copyright: use HTTPS for sapo.pt URL.
       new  9eec424   releasing package libconfig-any-perl version 0.32-1

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:
 Changes                        |  35 +-
 MANIFEST                       |  21 +-
 META.json                      |  74 +++++
 META.yml                       |  18 +-
 Makefile.PL                    | 115 +++++--
 README                         |   2 +-
 debian/changelog               |  13 +-
 debian/control                 |  23 +-
 debian/copyright               |  10 +-
 inc/Module/Install.pm          | 474 ---------------------------
 inc/Module/Install/Base.pm     |  83 -----
 inc/Module/Install/Can.pm      | 154 ---------
 inc/Module/Install/Fetch.pm    |  93 ------
 inc/Module/Install/Makefile.pm | 418 ------------------------
 inc/Module/Install/Metadata.pm | 722 -----------------------------------------
 inc/Module/Install/Win32.pm    |  64 ----
 inc/Module/Install/WriteAll.pm |  63 ----
 lib/Config/Any.pm              |  34 +-
 lib/Config/Any/Base.pm         |  26 +-
 lib/Config/Any/General.pm      |  10 +-
 lib/Config/Any/INI.pm          |  14 +-
 lib/Config/Any/JSON.pm         |  67 ++--
 lib/Config/Any/Perl.pm         |  17 +-
 lib/Config/Any/XML.pm          |   8 +-
 lib/Config/Any/YAML.pm         |  18 +-
 maint/Makefile.PL.include      |  10 +
 t/00-report-prereqs.t          |  40 +++
 t/01-use.t                     |  13 -
 t/10-branches.t                |  10 +-
 t/20-parse.t                   |   8 +-
 t/50-general.t                 |  10 +-
 t/51-ini.t                     |  10 +-
 t/52-json.t                    |  10 +-
 t/53-perl.t                    |  41 ++-
 t/54-xml.t                     |  43 ++-
 t/55-yaml.t                    |  25 +-
 t/conf/conf.foo                |   2 +-
 t/conf/conf.ini                |   2 +-
 t/conf/conf2.ini               |   2 +-
 t/invalid/conf.ini             |   2 +-
 t/invalid/conf.yml             |   2 +-
 t/perl-taint.t                 |   6 +
 t/pod-coverage.t               |   9 -
 t/pod.t                        |   8 -
 xt/author/pod-coverage.t       |   7 +
 xt/author/pod.t                |   7 +
 46 files changed, 538 insertions(+), 2305 deletions(-)
 create mode 100644 META.json
 delete mode 100644 inc/Module/Install.pm
 delete mode 100644 inc/Module/Install/Base.pm
 delete mode 100644 inc/Module/Install/Can.pm
 delete mode 100644 inc/Module/Install/Fetch.pm
 delete mode 100644 inc/Module/Install/Makefile.pm
 delete mode 100644 inc/Module/Install/Metadata.pm
 delete mode 100644 inc/Module/Install/Win32.pm
 delete mode 100644 inc/Module/Install/WriteAll.pm
 create mode 100644 maint/Makefile.PL.include
 create mode 100644 t/00-report-prereqs.t
 delete mode 100644 t/01-use.t
 create mode 100644 t/perl-taint.t
 delete mode 100644 t/pod-coverage.t
 delete mode 100644 t/pod.t
 create mode 100644 xt/author/pod-coverage.t
 create mode 100644 xt/author/pod.t

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



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