[libcpan-meta-yaml-perl] branch master updated (a31137a -> 4a6313c)

gregor herrmann gregoa at debian.org
Sat Feb 15 14:54:33 UTC 2014


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

gregoa pushed a change to branch master
in repository libcpan-meta-yaml-perl.

      from  a31137a   releasing package libcpan-meta-yaml-perl version 0.010-1
      adds  23c0742   Imported Upstream version 0.011
       new  4b051d0   Merge tag 'upstream/0.011'
       new  0de4e35   New upstream release.
       new  4f82d12   Update years of packaging copyright.
       new  6616376   Update build dependencies.
       new  9f4eacf   Declare compliance with Debian Policy 3.9.5.
       new  4a6313c   releasing package libcpan-meta-yaml-perl version 0.011-1

The 6 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                                            |   4 +
 MANIFEST                                           |  71 +-
 META.json                                          |  45 +-
 META.yml                                           |  45 +-
 Makefile.PL                                        |  78 ++-
 README                                             |   2 +-
 cpanfile                                           |  38 +-
 debian/changelog                                   |   9 +
 debian/control                                     |   6 +-
 debian/copyright                                   |   2 +-
 lib/CPAN/Meta/YAML.pm                              | 692 +++++++++++++-------
 t/00-compile.t                                     |  44 --
 t/00-report-prereqs.t                              | 196 ++++++
 t/01_api.t                                         |  40 ++
 t/01_compile.t                                     |  15 +-
 t/02_basic.t                                       | 255 --------
 t/03_regression.t                                  | 716 ---------------------
 t/04_scalar.t                                      | 120 ----
 t/05_export.t                                      |  22 -
 t/10_read.t                                        | 112 ++++
 t/11_meta_yml.t                                    | 396 ------------
 t/11_read_string.t                                 |  51 ++
 t/12_plagger.t                                     | 127 ----
 t/12_write.t                                       |  82 +++
 t/13_perl_smith.t                                  | 149 -----
 t/13_write_string.t                                |  23 +
 t/14_yaml_org.t                                    |  63 --
 t/15_multibyte.t                                   |  52 --
 t/16_nullrefs.t                                    |  30 -
 t/17_toolbar.t                                     |  50 --
 t/18_tap.t                                         |  80 ---
 t/19_errors.t                                      |  73 ---
 t/20_subclass.t                                    |  31 +-
 t/21_bom.t                                         |  34 -
 t/21_yamlpm_compat.t                               |  59 ++
 t/22_comments.t                                    | 111 ----
 t/30_yaml_spec_tml.t                               |  33 +
 t/31_local_tml.t                                   |  20 +
 t/32_world_tml.t                                   |  11 +
 t/README.md                                        | 157 +++++
 t/data/HTML-WebDAO.yml                             |   8 -
 t/data/Spreadsheet-Read.yml                        |  61 --
 t/data/Template-Provider-Unicode-Japanese.yml      |  20 -
 t/data/{one.yml => ascii.yml}                      |   0
 t/data/{sample.yml => latin1.yml}                  |   2 +-
 t/data/multibyte.yml                               |  20 -
 t/data/toolbar.yml                                 |  16 -
 t/data/two.yml                                     |   4 -
 t/data/utf_8_bom.yml                               |   2 +
 t/data/vanilla.yml                                 |  98 ---
 t/lib/Test.pm                                      | 310 ---------
 t/lib/TestBridge.pm                                | 351 ++++++++++
 t/lib/TestML/Tiny.pm                               | 312 +++++++++
 t/lib/TestUtils.pm                                 |  56 ++
 t/tml                                              | 117 ++++
 t/tml-local/dump-error/circular.tml                |  18 +
 t/tml-local/load-error/document.tml                |   5 +
 t/tml-local/load-error/scalar.tml                  |  51 ++
 t/tml-local/load-error/tag.tml                     |  11 +
 t/tml-local/perl-to-yaml/quoting.tml               |  26 +
 t/tml-local/yaml-roundtrip/collection.tml          | 128 ++++
 t/tml-local/yaml-roundtrip/comment.tml             | 124 ++++
 t/tml-local/yaml-roundtrip/document.tml            | 214 ++++++
 t/tml-local/yaml-roundtrip/mapping.tml             | 178 +++++
 t/tml-local/yaml-roundtrip/quoting.tml             | 134 ++++
 t/tml-local/yaml-roundtrip/scalar.tml              | 135 ++++
 t/tml-local/yaml-roundtrip/sequence.tml            | 104 +++
 t/tml-spec/basic-data.tml                          |  24 +
 t/tml-spec/unicode.tml                             | 440 +++++++++++++
 t/tml-world/Acme-Time-Baby.tml                     |  27 +
 t/tml-world/Data-Swap.tml                          |  25 +
 t/tml-world/Games-Nintendo-Wii-Mii.tml             |  57 ++
 t/tml-world/HTML-WebDAO.tml                        |  24 +
 t/tml-world/ITS-SIN-FIDS-Content-XML.tml           |  30 +
 t/tml-world/Plagger.tml                            | 101 +++
 t/tml-world/Spreadsheet-Read.tml                   | 161 +++++
 t/tml-world/Template-Provider-Unicode-Japanese.tml |  47 ++
 t/tml-world/Vanilla-Perl.tml                       | 221 +++++++
 t/tml-world/YAML-Tiny-META.tml                     |  41 ++
 t/tml-world/toolbar.tml                            |  41 ++
 t/tml-world/yaml_org.tml                           |  69 ++
 xt/author/00-compile.t                             |  53 ++
 xt/release/distmeta.t                              |   5 +-
 xt/release/pod-syntax.t                            |   5 +-
 84 files changed, 4808 insertions(+), 3212 deletions(-)
 delete mode 100644 t/00-compile.t
 create mode 100644 t/00-report-prereqs.t
 create mode 100644 t/01_api.t
 delete mode 100644 t/02_basic.t
 delete mode 100755 t/03_regression.t
 delete mode 100644 t/04_scalar.t
 delete mode 100644 t/05_export.t
 create mode 100644 t/10_read.t
 delete mode 100755 t/11_meta_yml.t
 create mode 100644 t/11_read_string.t
 delete mode 100755 t/12_plagger.t
 create mode 100644 t/12_write.t
 delete mode 100755 t/13_perl_smith.t
 create mode 100644 t/13_write_string.t
 delete mode 100755 t/14_yaml_org.t
 delete mode 100755 t/15_multibyte.t
 delete mode 100644 t/16_nullrefs.t
 delete mode 100644 t/17_toolbar.t
 delete mode 100644 t/18_tap.t
 delete mode 100644 t/19_errors.t
 delete mode 100755 t/21_bom.t
 create mode 100644 t/21_yamlpm_compat.t
 delete mode 100644 t/22_comments.t
 create mode 100644 t/30_yaml_spec_tml.t
 create mode 100644 t/31_local_tml.t
 create mode 100644 t/32_world_tml.t
 create mode 100644 t/README.md
 delete mode 100755 t/data/HTML-WebDAO.yml
 delete mode 100644 t/data/Spreadsheet-Read.yml
 delete mode 100755 t/data/Template-Provider-Unicode-Japanese.yml
 rename t/data/{one.yml => ascii.yml} (100%)
 rename t/data/{sample.yml => latin1.yml} (96%)
 mode change 100755 => 100644
 mode change 100755 => 100644 t/data/multibyte.yml
 delete mode 100644 t/data/toolbar.yml
 delete mode 100644 t/data/two.yml
 create mode 100644 t/data/utf_8_bom.yml
 delete mode 100755 t/data/vanilla.yml
 delete mode 100755 t/lib/Test.pm
 create mode 100644 t/lib/TestBridge.pm
 create mode 100644 t/lib/TestML/Tiny.pm
 create mode 100644 t/lib/TestUtils.pm
 create mode 100755 t/tml
 create mode 100644 t/tml-local/dump-error/circular.tml
 create mode 100644 t/tml-local/load-error/document.tml
 create mode 100644 t/tml-local/load-error/scalar.tml
 create mode 100644 t/tml-local/load-error/tag.tml
 create mode 100644 t/tml-local/perl-to-yaml/quoting.tml
 create mode 100644 t/tml-local/yaml-roundtrip/collection.tml
 create mode 100644 t/tml-local/yaml-roundtrip/comment.tml
 create mode 100644 t/tml-local/yaml-roundtrip/document.tml
 create mode 100644 t/tml-local/yaml-roundtrip/mapping.tml
 create mode 100644 t/tml-local/yaml-roundtrip/quoting.tml
 create mode 100644 t/tml-local/yaml-roundtrip/scalar.tml
 create mode 100644 t/tml-local/yaml-roundtrip/sequence.tml
 create mode 100644 t/tml-spec/basic-data.tml
 create mode 100644 t/tml-spec/unicode.tml
 create mode 100644 t/tml-world/Acme-Time-Baby.tml
 create mode 100644 t/tml-world/Data-Swap.tml
 create mode 100644 t/tml-world/Games-Nintendo-Wii-Mii.tml
 create mode 100644 t/tml-world/HTML-WebDAO.tml
 create mode 100644 t/tml-world/ITS-SIN-FIDS-Content-XML.tml
 create mode 100644 t/tml-world/Plagger.tml
 create mode 100644 t/tml-world/Spreadsheet-Read.tml
 create mode 100644 t/tml-world/Template-Provider-Unicode-Japanese.tml
 create mode 100644 t/tml-world/Vanilla-Perl.tml
 create mode 100644 t/tml-world/YAML-Tiny-META.tml
 create mode 100644 t/tml-world/toolbar.tml
 create mode 100644 t/tml-world/yaml_org.tml
 create mode 100644 xt/author/00-compile.t

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libcpan-meta-yaml-perl.git



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