[cpanminus] branch master updated (f7fae8a -> 9b1ac04)

gregor herrmann gregoa at debian.org
Sat Dec 9 18:54:50 UTC 2017


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

gregoa pushed a change to branch master
in repository cpanminus.

      from  f7fae8a   update changelog
       new  6e252d0   debian/watch: download tarball from Github
       new  a4800b8   Add debian/gbp.conf to ignore .gitignore on import.
       new  dc3dadc   update changelog
      adds  a0c4f48   add environment variables to the manpage
      adds  8260212   Merge pull request #481 from preaction/add-envvar-docs
      adds  9ba9a17   Changes to support the --with-configure and --without-configure options
      adds  f2e22a7   specify default behavior in POD documantation
      adds  502c166   add tests for with/without configure when reading deps from META.yaml
      adds  d6c4315   remove commented out statements
      adds  38b5015   adding in --with-configure and --without-configure options
      adds  ee64120   merge from upstream
      adds  c8cfd8e   corect logic for installing configure dependencies when reading deps from a META file
      adds  193d1b7   following discussions changing behaviour so that --with-configure/--without-configure only effects dependencies from cpanfiles
      adds  c87aff5   slight tidy up following refactoring
      adds  f3e8928   Merge pull request #482 from zebardy/short_branch
      adds  5ec89f3   pin Path::Tiny to reproduce the issue
      adds  8536ba1   Don't copy/unpack a local mirror index if we already have it.
      adds  03e3c9a   Merge pull request #499 from wolfsage/topic/faster-file-mirror-index
      adds  aaa2807   1.7041
      adds  0e8a425   Merge configure deps with cpanfile as well
      adds  5525910   1.7042
      adds  b2eeedf   return true for Menlo fetcher code
      adds  0739c5c   Match requested Bundle NAME
      adds  7052cd2   install DBI first to avoid DBD::mysql bug
      adds  17c92fd   Revert "install DBI first to avoid DBD::mysql bug"
      adds  5e45e09   fix build_no_mymeta.t
      adds  3f520cf   Merge pull request #523 from skaji/fix-test
      adds  f3baae3   set PERL_USE_UNSAFE_INC so . is included in @INC
      adds  ae585f9   Merge pull request #521 from haarg/add-dot-to-inc
      adds  759b979   1.7043
      adds  60da411   New upstream version 1.7043
       new  ac3c6ad   Update upstream source from tag 'upstream/1.7043'
       new  9a3ec87   Update debian/changelog
       new  25e9817   Update debian/copyright.
       new  d7e7c19   Update build machinery to new tarball source and avoid any fatpacking.
       new  3b1ac25   Replace ad-hoc test in debian/rules with a (patch that creates a) test script
       new  ffb0967   Declare compliance with Debian Policy 4.1.2.
       new  ead0afe   Add /me to Uploaders.
       new  c7038e6   update changelog
       new  9b1ac04   remove trailing whitespace

The 12 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:
 .mailmap                                           |     3 +
 .travis.yml                                        |    17 +
 Changes                                            |     7 +
 MANIFEST                                           |    14 -
 META.json                                          |     9 +-
 META.yml                                           |   108 -
 Makefile.PL                                        |    19 +-
 README                                             |   237 -
 README.md                                          |   212 +
 bin/.gitkeep                                       |     0
 bin/cpanm => cpanm                                 |     6 +-
 debian/changelog                                   |    27 +-
 debian/clean                                       |     4 +
 debian/control                                     |    22 +-
 debian/copyright                                   |    91 +-
 debian/gbp.conf                                    |     2 +
 debian/patches/fatpack.patch                       |    19 +
 debian/patches/series                              |     2 +
 debian/patches/test-load.patch                     |     2 +-
 debian/patches/test-run.patch                      |    21 +
 debian/rules                                       |    46 +-
 debian/tests/pkg-perl/smoke-env                    |     1 +
 debian/watch                                       |    10 +-
 dist.ini                                           |    30 +
 fatlib/CPAN/DistnameInfo.pm                        |   205 +
 fatlib/CPAN/Meta.pm                                |  1156 +
 fatlib/CPAN/Meta/Check.pm                          |   128 +
 fatlib/CPAN/Meta/Converter.pm                      |  1639 ++
 fatlib/CPAN/Meta/Feature.pm                        |   149 +
 fatlib/CPAN/Meta/History.pm                        |   316 +
 fatlib/CPAN/Meta/Merge.pm                          |   297 +
 fatlib/CPAN/Meta/Prereqs.pm                        |   422 +
 fatlib/CPAN/Meta/Requirements.pm                   |  1103 +
 fatlib/CPAN/Meta/Spec.pm                           |  1235 +
 fatlib/CPAN/Meta/Validator.pm                      |  1210 +
 fatlib/CPAN/Meta/YAML.pm                           |   951 +
 fatlib/Exporter.pm                                 |   591 +
 fatlib/Exporter/Heavy.pm                           |   253 +
 fatlib/File/pushd.pm                               |   301 +
 fatlib/HTTP/Tiny.pm                                |  2212 ++
 fatlib/JSON/PP.pm                                  |  2795 ++
 fatlib/JSON/PP/Boolean.pm                          |    26 +
 fatlib/Module/CPANfile.pm                          |   323 +
 fatlib/Module/CPANfile/Environment.pm              |   173 +
 fatlib/Module/CPANfile/Prereq.pm                   |    21 +
 fatlib/Module/CPANfile/Prereqs.pm                  |   117 +
 fatlib/Module/CPANfile/Requirement.pm              |    25 +
 fatlib/Module/Metadata.pm                          |  1021 +
 fatlib/Parse/CPAN/Meta.pm                          |   345 +
 fatlib/Parse/PMFile.pm                             |   898 +
 fatlib/String/ShellQuote.pm                        |   196 +
 fatlib/lib/core/only.pm                            |   100 +
 fatlib/local/lib.pm                                |  1434 ++
 fatlib/parent.pm                                   |   136 +
 fatlib/version.pm                                  |   125 +
 fatlib/version/regex.pm                            |   117 +
 fatlib/version/vpp.pm                              |  1037 +
 fatpacked/App/cpanminus/.gitkeep                   |     0
 lib/App/cpanminus.pm                               |     2 +-
 lib/App/cpanminus/Dependency.pm                    |    80 +
 lib/App/cpanminus/fatscript.pm                     | 25333 -------------------
 lib/App/cpanminus/script.pm                        |  3191 +++
 maint/build.pl                                     |    65 +
 maint/bump_fatpack.pl                              |    20 +
 maint/copy_bin.pl                                  |    13 +
 maint/merge_master.pl                              |    14 +
 maint/rm-mm-bundle.pl                              |    46 +
 maint/upgrade-fatlib.pl                            |   111 +
 script/cpanm.PL                                    |   598 +
 testdist/CPAN-Dummy-Test-NonInteractive/Changes    |     4 +
 testdist/CPAN-Dummy-Test-NonInteractive/META.json  |    52 +
 .../CPAN-Dummy-Test-NonInteractive/Makefile.PL     |    63 +
 testdist/CPAN-Dummy-Test-NonInteractive/README.md  |    26 +
 testdist/CPAN-Dummy-Test-NonInteractive/dist.ini   |     2 +
 .../lib/CPAN/Dummy/Test/NonInteractive.pm          |    39 +
 testdist/CPAN-Dummy-Test-NonInteractive/t/basic.t  |    13 +
 testdist/CPAN-Dummy-Test-PP/Changes                |     4 +
 testdist/CPAN-Dummy-Test-PP/META.json              |    51 +
 testdist/CPAN-Dummy-Test-PP/Makefile.PL            |    68 +
 testdist/CPAN-Dummy-Test-PP/README.md              |    26 +
 .../CPAN-Dummy-Test-PP/lib/CPAN/Dummy/Test/PP.pm   |    39 +
 testdist/CPAN-Dummy-Test-PP/t/basic.t              |     8 +
 testdist/DepWithoutVersion/DepWithoutVersion.pm    |     3 +
 testdist/DepWithoutVersion/Makefile.PL             |     8 +
 testdist/Foo-Ver/Foo.pm                            |    21 +
 testdist/Foo-Ver/MANIFEST                          |     4 +
 testdist/Foo-Ver/META.json                         |    44 +
 testdist/Foo-Ver/Makefile.PL                       |     8 +
 testdist/Foo/Foo.pm                                |    21 +
 testdist/Foo/MANIFEST                              |     3 +
 testdist/Foo/Makefile.PL                           |     3 +
 testdist/Hash-MultiValue-1.200/Build.PL            |     3 +
 testdist/Hash-MultiValue-1.200/Changes             |    49 +
 LICENSE => testdist/Hash-MultiValue-1.200/LICENSE  |     8 +-
 testdist/Hash-MultiValue-1.200/MANIFEST            |    25 +
 testdist/Hash-MultiValue-1.200/META.json           |    69 +
 testdist/Hash-MultiValue-1.200/README              |   285 +
 testdist/Hash-MultiValue-1.200/cpanfile            |     5 +
 testdist/Hash-MultiValue-1.200/dist.ini            |     1 +
 .../Hash-MultiValue-1.200/lib/Hash/MultiValue.pm   |   603 +
 testdist/Hash-MultiValue-1.200/t/00_compile.t      |     4 +
 testdist/Hash-MultiValue-1.200/t/from_mixed.t      |    18 +
 testdist/Hash-MultiValue-1.200/t/hash.t            |    66 +
 testdist/Hash-MultiValue-1.200/t/multi.t           |    27 +
 testdist/Hash-MultiValue-1.200/t/ref.t             |    13 +
 .../Hash-MultiValue-1.200/t/release-pod-syntax.t   |    15 +
 testdist/Hash-MultiValue-1.200/t/set.t             |    28 +
 testdist/Hash-MultiValue-1.200/t/storable.t        |    24 +
 testdist/Hash-MultiValue-1.200/t/threads.t         |    28 +
 testdist/Hash-MultiValue-1.200/t/write.t           |    31 +
 testdist/Hash-MultiValue-1.200/tools/benchmark.pl  |    35 +
 testdist/Hash-MultiValue-1.200/xt/perlcritic.t     |     5 +
 testdist/Hash-MultiValue-1.200/xt/pod.t            |     4 +
 testdist/Hash-MultiValue-1.200/xt/podspell.t       |     9 +
 testdist/Hash-MultiValue-1.200/xt/synopsis.t       |     4 +
 testdist/HelloWorld-0.01/HelloWorld.pm             |     9 +
 testdist/HelloWorld-0.01/HelloWorld.xs             |     6 +
 testdist/HelloWorld-0.01/MANIFEST                  |     5 +
 testdist/HelloWorld-0.01/Makefile.PL               |     5 +
 testdist/HelloWorld-0.01/ppport.h                  |  7063 ++++++
 testdist/HelloWorld-0.02/HelloWorld.pm             |     3 +
 testdist/HelloWorld-0.02/MANIFEST                  |     4 +
 testdist/HelloWorld-0.02/Makefile.PL               |     3 +
 testdist/MI-EUMM/Makefile.PL                       |     8 +
 testdist/MI-EUMM/inc/Module/Install.pm             |   470 +
 testdist/MI-EUMM/inc/Module/Install/Base.pm        |    83 +
 testdist/MI-EUMM/inc/Module/Install/Can.pm         |   154 +
 testdist/MI-EUMM/inc/Module/Install/Fetch.pm       |    93 +
 testdist/MI-EUMM/inc/Module/Install/Makefile.pm    |   418 +
 testdist/MI-EUMM/inc/Module/Install/Metadata.pm    |   722 +
 testdist/MI-EUMM/inc/Module/Install/Win32.pm       |    64 +
 testdist/MI-EUMM/inc/Module/Install/WriteAll.pm    |    63 +
 testdist/Requires-Perl/META.yml                    |    22 +
 testdist/Requires-Perl/Makefile.PL                 |    11 +
 testdist/Requires-Perl/lib/Requires/Perl.pm        |     5 +
 testdist/Requires-Perl2/META.json                  |    42 +
 testdist/Requires-Perl2/Makefile.PL                |    12 +
 testdist/Requires-Perl2/lib/Requires/Perl.pm       |     4 +
 testdist/Spreadsheet-Read-0.48/Changes             |   270 +
 testdist/Spreadsheet-Read-0.48/META.json           |   128 +
 testdist/Spreadsheet-Read-0.48/Makefile.PL         |    94 +
 testdist/Spreadsheet-Read-0.48/README              |    67 +
 testdist/Spreadsheet-Read-0.48/Read.pm             |  1081 +
 testdist/Test-META/Build.PL                        |     2 +
 testdist/Test-META/META.json                       |    47 +
 testdist/Test-META/lib/Test/META.pm                |     2 +
 testdist/TestDist-DepFail/MANIFEST                 |     2 +
 testdist/TestDist-DepFail/Makefile.PL              |     6 +
 testdist/TestDist-Recommend/Build.PL               |     3 +
 testdist/TestDist-Recommend/Changes                |     4 +
 testdist/TestDist-Recommend/META.json              |   127 +
 testdist/TestDist-Recommend/README.md              |    26 +
 .../TestDist-Recommend/lib/TestDist/Recommend.pm   |    39 +
 testdist/TestDist-Recommend/t/basic.t              |     7 +
 testdist/TestFail/MANIFEST                         |     3 +
 testdist/TestFail/Makefile.PL                      |     4 +
 testdist/TestFail/t/fail.t                         |     3 +
 testdist/TestFailWithURI/.shipit                   |     2 +
 testdist/TestFailWithURI/Changes                   |     4 +
 testdist/TestFailWithURI/MANIFEST                  |     7 +
 testdist/TestFailWithURI/MANIFEST.SKIP             |    14 +
 testdist/TestFailWithURI/Makefile.PL               |     6 +
 testdist/TestFailWithURI/lib/TestFailWithURI.pm    |     7 +
 testdist/TestFailWithURI/t/fail.t                  |     9 +
 testdist/cpanfile_app/cpanfile                     |    11 +
 testdist/cpanfile_app2/cpanfile.foobar             |     1 +
 testdist/cpanfile_bad_app/cpanfile                 |     1 +
 testdist/cpanfile_non_resolvable/cpanfile          |     2 +
 testdist/cpanfile_pin/cpanfile                     |     5 +
 testdist/cpanfile_pin_core/cpanfile                |     2 +
 xt/README                                          |     2 +
 xt/Run.pm                                          |    33 +
 xt/author_dir.t                                    |    17 +
 xt/backpan_search.t                                |    22 +
 xt/bailout.t                                       |    13 +
 xt/blib_install.t                                  |    19 +
 xt/build_args.t                                    |     9 +
 xt/build_no_mymeta.t                               |    17 +
 xt/bundle.t                                        |     8 +
 xt/cascade_search.t                                |    23 +
 xt/childe_url.t                                    |     9 +
 xt/config_deps.t                                   |     9 +
 xt/conflict-deps.t                                 |    20 +
 xt/core_contained.t                                |    18 +
 xt/core_new.t                                      |    14 +
 xt/cpanfile.t                                      |    43 +
 xt/cpanfile_pin.t                                  |    18 +
 xt/deprecated.t                                    |    11 +
 xt/dev_release.t                                   |    21 +
 xt/dist_args.t                                     |    17 +
 xt/dupe.t                                          |     9 +
 xt/exact_reinstall.t                               |    38 +
 xt/exclude-vendor.t                                |    31 +
 xt/exit_code.t                                     |    20 +
 xt/fatpack_runnable.t                              |     9 +
 xt/features.t                                      |    28 +
 xt/force_msg.t                                     |    17 +
 xt/git_uri.t                                       |    31 +
 xt/github_tar.t                                    |     8 +
 xt/installdeps-notest.t                            |     8 +
 xt/interactive_build.t                             |     8 +
 xt/internal_maturity.t                             |    33 +
 xt/local_lib_multi.t                               |    23 +
 xt/local_lib_shell_first.t                         |    20 +
 xt/local_lib_skip.t                                |    11 +
 xt/local_versions.t                                |    23 +
 xt/make_uninst.t                                   |    23 +
 xt/makemaker_build_requires.t                      |    15 +
 xt/manpages.t                                      |    23 +
 xt/mask_password.t                                 |    44 +
 xt/mb_eumm.t                                       |    21 +
 xt/mb_no_configure.t                               |    17 +
 xt/meta.t                                          |    67 +
 xt/mirror-index.t                                  |    15 +
 xt/mirror.t                                        |    14 +
 xt/mirror.txt                                      |    12 +
 xt/module_args_exact_at.t                          |    29 +
 xt/module_args_range.t                             |    45 +
 xt/module_build_dists.t                            |     9 +
 xt/module_version.t                                |    18 +
 xt/mymeta.t                                        |    16 +
 xt/mymeta_sig.t                                    |    14 +
 xt/mymeta_yml.t                                    |     9 +
 xt/no_meta.t                                       |    15 +
 xt/no_mkdir_version.t                              |    11 +
 xt/non_interactive_test.t                          |     8 +
 xt/perl-requires.t                                 |    14 +
 xt/perl_recommends.t                               |     9 +
 xt/pmfiles_pause_ignores.t                         |    35 +
 xt/prereq_undef.t                                  |    12 +
 xt/provides.t                                      |    33 +
 xt/pureperl.t                                      |    19 +
 xt/recommends.t                                    |    34 +
 xt/save_dists.t                                    |    14 +
 xt/self-contained.t                                |    13 +
 xt/skip_installed.t                                |    14 +
 xt/skip_satisfied.t                                |    13 +
 xt/stdin_dup.t                                     |     9 +
 xt/test_more.t                                     |    14 +
 xt/test_only.t                                     |     9 +
 xt/test_site_harness.t                             |    10 +
 xt/uninstall.t                                     |    51 +
 xt/verify_checksums.t                              |     9 +
 xt/verify_signature.t                              |     9 +
 xt/version_packages.t                              |    12 +
 xt/version_range.t                                 |    14 +
 xt/vstring_pkg.t                                   |     8 +
 xt/zip_root.t                                      |    11 +
 248 files changed, 40248 insertions(+), 25766 deletions(-)
 create mode 100644 .mailmap
 create mode 100644 .travis.yml
 delete mode 100644 MANIFEST
 delete mode 100644 META.yml
 delete mode 100644 README
 create mode 100644 README.md
 create mode 100644 bin/.gitkeep
 rename bin/cpanm => cpanm (87%)
 mode change 100644 => 100755
 create mode 100644 debian/clean
 create mode 100644 debian/gbp.conf
 create mode 100644 debian/patches/fatpack.patch
 create mode 100644 debian/patches/test-run.patch
 create mode 100644 debian/tests/pkg-perl/smoke-env
 create mode 100644 dist.ini
 create mode 100644 fatlib/CPAN/DistnameInfo.pm
 create mode 100644 fatlib/CPAN/Meta.pm
 create mode 100644 fatlib/CPAN/Meta/Check.pm
 create mode 100644 fatlib/CPAN/Meta/Converter.pm
 create mode 100644 fatlib/CPAN/Meta/Feature.pm
 create mode 100644 fatlib/CPAN/Meta/History.pm
 create mode 100644 fatlib/CPAN/Meta/Merge.pm
 create mode 100644 fatlib/CPAN/Meta/Prereqs.pm
 create mode 100644 fatlib/CPAN/Meta/Requirements.pm
 create mode 100644 fatlib/CPAN/Meta/Spec.pm
 create mode 100644 fatlib/CPAN/Meta/Validator.pm
 create mode 100644 fatlib/CPAN/Meta/YAML.pm
 create mode 100644 fatlib/Exporter.pm
 create mode 100644 fatlib/Exporter/Heavy.pm
 create mode 100644 fatlib/File/pushd.pm
 create mode 100644 fatlib/HTTP/Tiny.pm
 create mode 100644 fatlib/JSON/PP.pm
 create mode 100644 fatlib/JSON/PP/Boolean.pm
 create mode 100644 fatlib/Module/CPANfile.pm
 create mode 100644 fatlib/Module/CPANfile/Environment.pm
 create mode 100644 fatlib/Module/CPANfile/Prereq.pm
 create mode 100644 fatlib/Module/CPANfile/Prereqs.pm
 create mode 100644 fatlib/Module/CPANfile/Requirement.pm
 create mode 100644 fatlib/Module/Metadata.pm
 create mode 100644 fatlib/Parse/CPAN/Meta.pm
 create mode 100644 fatlib/Parse/PMFile.pm
 create mode 100644 fatlib/String/ShellQuote.pm
 create mode 100644 fatlib/lib/core/only.pm
 create mode 100644 fatlib/local/lib.pm
 create mode 100644 fatlib/parent.pm
 create mode 100644 fatlib/version.pm
 create mode 100644 fatlib/version/regex.pm
 create mode 100644 fatlib/version/vpp.pm
 create mode 100644 fatpacked/App/cpanminus/.gitkeep
 create mode 100644 lib/App/cpanminus/Dependency.pm
 delete mode 100644 lib/App/cpanminus/fatscript.pm
 create mode 100644 lib/App/cpanminus/script.pm
 create mode 100755 maint/build.pl
 create mode 100755 maint/bump_fatpack.pl
 create mode 100644 maint/copy_bin.pl
 create mode 100755 maint/merge_master.pl
 create mode 100755 maint/rm-mm-bundle.pl
 create mode 100755 maint/upgrade-fatlib.pl
 create mode 100755 script/cpanm.PL
 create mode 100644 testdist/CPAN-Dummy-Test-NonInteractive/Changes
 create mode 100644 testdist/CPAN-Dummy-Test-NonInteractive/META.json
 create mode 100644 testdist/CPAN-Dummy-Test-NonInteractive/Makefile.PL
 create mode 100644 testdist/CPAN-Dummy-Test-NonInteractive/README.md
 create mode 100644 testdist/CPAN-Dummy-Test-NonInteractive/dist.ini
 create mode 100644 testdist/CPAN-Dummy-Test-NonInteractive/lib/CPAN/Dummy/Test/NonInteractive.pm
 create mode 100644 testdist/CPAN-Dummy-Test-NonInteractive/t/basic.t
 create mode 100644 testdist/CPAN-Dummy-Test-PP/Changes
 create mode 100644 testdist/CPAN-Dummy-Test-PP/META.json
 create mode 100644 testdist/CPAN-Dummy-Test-PP/Makefile.PL
 create mode 100644 testdist/CPAN-Dummy-Test-PP/README.md
 create mode 100644 testdist/CPAN-Dummy-Test-PP/lib/CPAN/Dummy/Test/PP.pm
 create mode 100644 testdist/CPAN-Dummy-Test-PP/t/basic.t
 create mode 100644 testdist/DepWithoutVersion/DepWithoutVersion.pm
 create mode 100644 testdist/DepWithoutVersion/Makefile.PL
 create mode 100644 testdist/Foo-Ver/Foo.pm
 create mode 100644 testdist/Foo-Ver/MANIFEST
 create mode 100644 testdist/Foo-Ver/META.json
 create mode 100644 testdist/Foo-Ver/Makefile.PL
 create mode 100644 testdist/Foo/Foo.pm
 create mode 100644 testdist/Foo/MANIFEST
 create mode 100644 testdist/Foo/Makefile.PL
 create mode 100644 testdist/Hash-MultiValue-1.200/Build.PL
 create mode 100644 testdist/Hash-MultiValue-1.200/Changes
 copy LICENSE => testdist/Hash-MultiValue-1.200/LICENSE (98%)
 create mode 100644 testdist/Hash-MultiValue-1.200/MANIFEST
 create mode 100644 testdist/Hash-MultiValue-1.200/META.json
 create mode 100644 testdist/Hash-MultiValue-1.200/README
 create mode 100644 testdist/Hash-MultiValue-1.200/cpanfile
 create mode 100644 testdist/Hash-MultiValue-1.200/dist.ini
 create mode 100644 testdist/Hash-MultiValue-1.200/lib/Hash/MultiValue.pm
 create mode 100644 testdist/Hash-MultiValue-1.200/t/00_compile.t
 create mode 100644 testdist/Hash-MultiValue-1.200/t/from_mixed.t
 create mode 100644 testdist/Hash-MultiValue-1.200/t/hash.t
 create mode 100644 testdist/Hash-MultiValue-1.200/t/multi.t
 create mode 100644 testdist/Hash-MultiValue-1.200/t/ref.t
 create mode 100644 testdist/Hash-MultiValue-1.200/t/release-pod-syntax.t
 create mode 100644 testdist/Hash-MultiValue-1.200/t/set.t
 create mode 100644 testdist/Hash-MultiValue-1.200/t/storable.t
 create mode 100644 testdist/Hash-MultiValue-1.200/t/threads.t
 create mode 100644 testdist/Hash-MultiValue-1.200/t/write.t
 create mode 100755 testdist/Hash-MultiValue-1.200/tools/benchmark.pl
 create mode 100644 testdist/Hash-MultiValue-1.200/xt/perlcritic.t
 create mode 100644 testdist/Hash-MultiValue-1.200/xt/pod.t
 create mode 100644 testdist/Hash-MultiValue-1.200/xt/podspell.t
 create mode 100644 testdist/Hash-MultiValue-1.200/xt/synopsis.t
 create mode 100644 testdist/HelloWorld-0.01/HelloWorld.pm
 create mode 100644 testdist/HelloWorld-0.01/HelloWorld.xs
 create mode 100644 testdist/HelloWorld-0.01/MANIFEST
 create mode 100644 testdist/HelloWorld-0.01/Makefile.PL
 create mode 100644 testdist/HelloWorld-0.01/ppport.h
 create mode 100644 testdist/HelloWorld-0.02/HelloWorld.pm
 create mode 100644 testdist/HelloWorld-0.02/MANIFEST
 create mode 100644 testdist/HelloWorld-0.02/Makefile.PL
 create mode 100644 testdist/MI-EUMM/Makefile.PL
 create mode 100644 testdist/MI-EUMM/inc/Module/Install.pm
 create mode 100644 testdist/MI-EUMM/inc/Module/Install/Base.pm
 create mode 100644 testdist/MI-EUMM/inc/Module/Install/Can.pm
 create mode 100644 testdist/MI-EUMM/inc/Module/Install/Fetch.pm
 create mode 100644 testdist/MI-EUMM/inc/Module/Install/Makefile.pm
 create mode 100644 testdist/MI-EUMM/inc/Module/Install/Metadata.pm
 create mode 100644 testdist/MI-EUMM/inc/Module/Install/Win32.pm
 create mode 100644 testdist/MI-EUMM/inc/Module/Install/WriteAll.pm
 create mode 100644 testdist/Requires-Perl/META.yml
 create mode 100644 testdist/Requires-Perl/Makefile.PL
 create mode 100644 testdist/Requires-Perl/lib/Requires/Perl.pm
 create mode 100644 testdist/Requires-Perl2/META.json
 create mode 100644 testdist/Requires-Perl2/Makefile.PL
 create mode 100644 testdist/Requires-Perl2/lib/Requires/Perl.pm
 create mode 100644 testdist/Spreadsheet-Read-0.48/Changes
 create mode 100644 testdist/Spreadsheet-Read-0.48/META.json
 create mode 100644 testdist/Spreadsheet-Read-0.48/Makefile.PL
 create mode 100644 testdist/Spreadsheet-Read-0.48/README
 create mode 100755 testdist/Spreadsheet-Read-0.48/Read.pm
 create mode 100644 testdist/Test-META/Build.PL
 create mode 100644 testdist/Test-META/META.json
 create mode 100644 testdist/Test-META/lib/Test/META.pm
 create mode 100644 testdist/TestDist-DepFail/MANIFEST
 create mode 100644 testdist/TestDist-DepFail/Makefile.PL
 create mode 100644 testdist/TestDist-Recommend/Build.PL
 create mode 100644 testdist/TestDist-Recommend/Changes
 create mode 100644 testdist/TestDist-Recommend/META.json
 create mode 100644 testdist/TestDist-Recommend/README.md
 create mode 100644 testdist/TestDist-Recommend/lib/TestDist/Recommend.pm
 create mode 100644 testdist/TestDist-Recommend/t/basic.t
 create mode 100644 testdist/TestFail/MANIFEST
 create mode 100644 testdist/TestFail/Makefile.PL
 create mode 100644 testdist/TestFail/t/fail.t
 create mode 100644 testdist/TestFailWithURI/.shipit
 create mode 100644 testdist/TestFailWithURI/Changes
 create mode 100644 testdist/TestFailWithURI/MANIFEST
 create mode 100644 testdist/TestFailWithURI/MANIFEST.SKIP
 create mode 100644 testdist/TestFailWithURI/Makefile.PL
 create mode 100644 testdist/TestFailWithURI/lib/TestFailWithURI.pm
 create mode 100644 testdist/TestFailWithURI/t/fail.t
 create mode 100644 testdist/cpanfile_app/cpanfile
 create mode 100644 testdist/cpanfile_app2/cpanfile.foobar
 create mode 100644 testdist/cpanfile_bad_app/cpanfile
 create mode 100644 testdist/cpanfile_non_resolvable/cpanfile
 create mode 100644 testdist/cpanfile_pin/cpanfile
 create mode 100644 testdist/cpanfile_pin_core/cpanfile
 create mode 100644 xt/README
 create mode 100644 xt/Run.pm
 create mode 100644 xt/author_dir.t
 create mode 100644 xt/backpan_search.t
 create mode 100644 xt/bailout.t
 create mode 100644 xt/blib_install.t
 create mode 100644 xt/build_args.t
 create mode 100644 xt/build_no_mymeta.t
 create mode 100644 xt/bundle.t
 create mode 100644 xt/cascade_search.t
 create mode 100644 xt/childe_url.t
 create mode 100644 xt/config_deps.t
 create mode 100644 xt/conflict-deps.t
 create mode 100644 xt/core_contained.t
 create mode 100644 xt/core_new.t
 create mode 100644 xt/cpanfile.t
 create mode 100644 xt/cpanfile_pin.t
 create mode 100644 xt/deprecated.t
 create mode 100644 xt/dev_release.t
 create mode 100644 xt/dist_args.t
 create mode 100644 xt/dupe.t
 create mode 100644 xt/exact_reinstall.t
 create mode 100644 xt/exclude-vendor.t
 create mode 100644 xt/exit_code.t
 create mode 100644 xt/fatpack_runnable.t
 create mode 100644 xt/features.t
 create mode 100644 xt/force_msg.t
 create mode 100644 xt/git_uri.t
 create mode 100644 xt/github_tar.t
 create mode 100644 xt/installdeps-notest.t
 create mode 100644 xt/interactive_build.t
 create mode 100644 xt/internal_maturity.t
 create mode 100644 xt/local_lib_multi.t
 create mode 100644 xt/local_lib_shell_first.t
 create mode 100644 xt/local_lib_skip.t
 create mode 100644 xt/local_versions.t
 create mode 100644 xt/make_uninst.t
 create mode 100644 xt/makemaker_build_requires.t
 create mode 100644 xt/manpages.t
 create mode 100644 xt/mask_password.t
 create mode 100644 xt/mb_eumm.t
 create mode 100644 xt/mb_no_configure.t
 create mode 100644 xt/meta.t
 create mode 100644 xt/mirror-index.t
 create mode 100644 xt/mirror.t
 create mode 100644 xt/mirror.txt
 create mode 100644 xt/module_args_exact_at.t
 create mode 100644 xt/module_args_range.t
 create mode 100644 xt/module_build_dists.t
 create mode 100644 xt/module_version.t
 create mode 100644 xt/mymeta.t
 create mode 100644 xt/mymeta_sig.t
 create mode 100644 xt/mymeta_yml.t
 create mode 100644 xt/no_meta.t
 create mode 100644 xt/no_mkdir_version.t
 create mode 100644 xt/non_interactive_test.t
 create mode 100644 xt/perl-requires.t
 create mode 100644 xt/perl_recommends.t
 create mode 100644 xt/pmfiles_pause_ignores.t
 create mode 100644 xt/prereq_undef.t
 create mode 100644 xt/provides.t
 create mode 100644 xt/pureperl.t
 create mode 100644 xt/recommends.t
 create mode 100644 xt/save_dists.t
 create mode 100644 xt/self-contained.t
 create mode 100644 xt/skip_installed.t
 create mode 100644 xt/skip_satisfied.t
 create mode 100644 xt/stdin_dup.t
 create mode 100644 xt/test_more.t
 create mode 100644 xt/test_only.t
 create mode 100644 xt/test_site_harness.t
 create mode 100644 xt/uninstall.t
 create mode 100644 xt/verify_checksums.t
 create mode 100644 xt/verify_signature.t
 create mode 100644 xt/version_packages.t
 create mode 100644 xt/version_range.t
 create mode 100644 xt/vstring_pkg.t
 create mode 100644 xt/zip_root.t

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



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