[libparse-plainconfig-perl] branch master updated (92f33d7 -> 075d64b)

Lucas Kanashiro kanashiro at moszumanska.debian.org
Wed Jun 29 18:16:19 UTC 2016


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

kanashiro pushed a change to branch master
in repository libparse-plainconfig-perl.

      from  92f33d7   update changelog
       new  25c4d42   Add debian/upstream/metadata
       new  34541ea   Update debian/changelog
      adds  c2fc4ef   Imported Upstream version 3.02
       new  c71e0ef   Merge tag 'upstream/3.02'
       new  a02f653   Update debian/changelog
       new  865d337   Create debian/source/format, use quilt 3.0
       new  fd98e9f   Simplify debian/rules
       new  2fecfd9   Remove debian/docs, CREDITS file does not exist in latest release
       new  e3a3d8a   Update years of upstream copyright
       new  59bc0b1   debian/copyright: update upstream license to terms of Perl itself
       new  a777491   Update Debian packaging copyright
       new  95d0956   Bump debhelper compatibility level to 9
       new  b07738a   Declare compliance with Debian policy 3.9.8
       new  465edd5   debian/control: add build and runtime dependency on Class::EHierarchy
       new  eb75ebd   debian/control: update long description
       new  c905e8b   WAITS-FOR: libclass-ehierarchy-perl
       new  075d64b   Create patch to fix typo in manpage

The 16 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:
 CHANGELOG                                     |   16 +
 CREDITS                                       |    9 -
 INSTALL                                       |   11 +
 LICENSE                                       |  705 ++++----
 MANIFEST                                      |   68 +-
 META.json                                     |   45 +
 META.yml                                      |   40 +-
 Makefile.PL                                   |   31 +-
 README                                        |   46 +-
 debian/changelog                              |   21 +-
 debian/compat                                 |    2 +-
 debian/control                                |   16 +-
 debian/copyright                              |    5 +-
 debian/libparse-plainconfig-perl.docs         |    1 -
 debian/patches/0001_fix-typo-in-manpage.patch |   17 +
 debian/patches/series                         |    1 +
 debian/rules                                  |   21 +-
 debian/source/format                          |    1 +
 debian/upstream/metadata                      |    4 +
 lib/Parse/PlainConfig.pm                      | 2138 +++++++++++--------------
 lib/Parse/PlainConfig/Constants.pm            |  166 ++
 lib/Parse/PlainConfig/Legacy.pm               | 1583 ++++++++++++++++++
 lib/Parse/PlainConfig/Settings.pm             |  251 +++
 t/01_ini.t                                    |   24 -
 t/02_property.t                               |   74 -
 t/03_read.t                                   |   25 -
 t/04_parameters.t                             |   30 -
 t/05_purge.t                                  |   27 -
 t/14_compat.t                                 |   69 -
 t/98_pod_coverage.t                           |    9 +
 t/99_pod.t                                    |    7 +
 t/lib/01_include_me.conf                      |    2 +
 t/lib/BadConf.pm                              |   64 +
 t/lib/CStyle.pm                               |   62 +
 t/lib/MyConf.pm                               |   69 +
 t/lib/NoDefaults.pm                           |   33 +
 t/lib/mac.conf                                |    1 +
 t/lib/msdos.conf                              |   26 +
 t/lib/unix.conf                               |   28 +
 t/v2_01_ini.t                                 |   19 +
 t/v2_02_property.t                            |   51 +
 t/v2_03_read.t                                |   22 +
 t/v2_04_parameters.t                          |   29 +
 t/v2_05_purge.t                               |   42 +
 t/{06_scalar.t => v2_06_scalar.t}             |    6 +-
 t/{07_list.t => v2_07_list.t}                 |    6 +-
 t/{08_hash.t => v2_08_hash.t}                 |    6 +-
 t/{09_coerce.t => v2_09_coerce.t}             |    6 +-
 t/{10_write.t => v2_10_write.t}               |    8 +-
 t/{11_order.t => v2_11_order.t}               |    8 +-
 t/{12_purge.t => v2_12_purge.t}               |    6 +-
 t/{13_readIfNewer.t => v2_13_readIfNewer.t}   |   10 +-
 t/{15_defaults.t => v2_15_defaults.t}         |    6 +-
 t/{16_hasParameter.t => v2_16_hasParameter.t} |    6 +-
 t/{testrc => v2_testrc}                       |    0
 t/{testrc_smart => v2_testrc_smart}           |    0
 t/v3_01_constants.t                           |   16 +
 t/v3_02_init.t                                |   20 +
 t/v3_03_parameters.t                          |   60 +
 t/v3_04_bad_conf.t                            |   18 +
 t/v3_05_no_defaults.t                         |   43 +
 t/v3_06_c_style.t                             |   50 +
 t/v3_07_unix.t                                |   43 +
 t/v3_08_msdos.t                               |   44 +
 t/v3_09_mac.t                                 |   44 +
 65 files changed, 4370 insertions(+), 1947 deletions(-)
 delete mode 100644 CREDITS
 create mode 100644 INSTALL
 create mode 100644 META.json
 delete mode 100644 debian/libparse-plainconfig-perl.docs
 create mode 100644 debian/patches/0001_fix-typo-in-manpage.patch
 create mode 100644 debian/patches/series
 create mode 100644 debian/source/format
 create mode 100644 debian/upstream/metadata
 create mode 100644 lib/Parse/PlainConfig/Constants.pm
 create mode 100644 lib/Parse/PlainConfig/Legacy.pm
 create mode 100644 lib/Parse/PlainConfig/Settings.pm
 delete mode 100644 t/01_ini.t
 delete mode 100644 t/02_property.t
 delete mode 100644 t/03_read.t
 delete mode 100644 t/04_parameters.t
 delete mode 100644 t/05_purge.t
 delete mode 100644 t/14_compat.t
 create mode 100644 t/98_pod_coverage.t
 create mode 100644 t/99_pod.t
 create mode 100644 t/lib/01_include_me.conf
 create mode 100644 t/lib/BadConf.pm
 create mode 100644 t/lib/CStyle.pm
 create mode 100644 t/lib/MyConf.pm
 create mode 100644 t/lib/NoDefaults.pm
 create mode 100644 t/lib/mac.conf
 create mode 100644 t/lib/msdos.conf
 create mode 100644 t/lib/unix.conf
 create mode 100644 t/v2_01_ini.t
 create mode 100644 t/v2_02_property.t
 create mode 100644 t/v2_03_read.t
 create mode 100644 t/v2_04_parameters.t
 create mode 100644 t/v2_05_purge.t
 rename t/{06_scalar.t => v2_06_scalar.t} (95%)
 rename t/{07_list.t => v2_07_list.t} (93%)
 rename t/{08_hash.t => v2_08_hash.t} (90%)
 rename t/{09_coerce.t => v2_09_coerce.t} (90%)
 rename t/{10_write.t => v2_10_write.t} (90%)
 rename t/{11_order.t => v2_11_order.t} (85%)
 rename t/{12_purge.t => v2_12_purge.t} (88%)
 rename t/{13_readIfNewer.t => v2_13_readIfNewer.t} (85%)
 rename t/{15_defaults.t => v2_15_defaults.t} (81%)
 rename t/{16_hasParameter.t => v2_16_hasParameter.t} (85%)
 rename t/{testrc => v2_testrc} (100%)
 rename t/{testrc_smart => v2_testrc_smart} (100%)
 create mode 100644 t/v3_01_constants.t
 create mode 100644 t/v3_02_init.t
 create mode 100644 t/v3_03_parameters.t
 create mode 100644 t/v3_04_bad_conf.t
 create mode 100644 t/v3_05_no_defaults.t
 create mode 100644 t/v3_06_c_style.t
 create mode 100644 t/v3_07_unix.t
 create mode 100644 t/v3_08_msdos.t
 create mode 100644 t/v3_09_mac.t

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



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