[libmoosex-runnable-perl] branch master updated (151cb6a -> 746e02a)

Daniel Lintott dlintott-guest at moszumanska.debian.org
Sun Apr 6 12:06:00 UTC 2014


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

dlintott-guest pushed a change to branch master
in repository libmoosex-runnable-perl.

      from  151cb6a   Initial packaging.
      adds  731dc03   Imported Upstream version 0.07
       new  dc1eeb8   Merge tag 'upstream/0.07'
       new  6c8b846   Update DEB_UPSTREAM_TARBALL_MD5
       new  e6a992a   Add myself to uploaders
       new  8767182   Bump standards version to 3.9.5
       new  40ba7e5   Update changelog
       new  fa6967a   Use canonical URL for VCS-Git
       new  63a6299   Versioned build-depend fro debhelper 8
       new  746e02a   Update changelog

The 8 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:
 .gitignore                                         |   9 -
 Build.PL                                           |   4 +
 CONTRIBUTING                                       |  78 ++
 Changes                                            |  25 +-
 INSTALL                                            |  44 ++
 LICENSE                                            | 379 ++++++++++
 MANIFEST                                           |  49 +-
 MANIFEST.SKIP                                      |   8 -
 META.json                                          | 837 +++++++++++++++++++++
 META.yml                                           | 603 ++++++++++++++-
 Makefile.PL                                        | 165 +++-
 README                                             |  15 +
 README.md                                          | 116 +++
 debian/changelog                                   |  11 +
 debian/control                                     |   9 +-
 debian/control.in                                  |   7 +-
 debian/copyright                                   |   3 +-
 debian/rules                                       |   2 +-
 dist.ini                                           |  60 ++
 inc/Module/Install.pm                              | 445 -----------
 inc/Module/Install/Base.pm                         |  78 --
 inc/Module/Install/Can.pm                          |  81 --
 inc/Module/Install/Fetch.pm                        |  93 ---
 inc/Module/Install/Makefile.pm                     | 300 --------
 inc/Module/Install/Metadata.pm                     | 647 ----------------
 inc/Module/Install/Scripts.pm                      |  29 -
 inc/Module/Install/Win32.pm                        |  64 --
 inc/Module/Install/WriteAll.pm                     |  60 --
 lib/MooseX/Runnable.pm                             |  60 +-
 lib/MooseX/Runnable/Invocation.pm                  |  13 +-
 lib/MooseX/Runnable/Invocation/MxRun.pm            |   5 +
 lib/MooseX/Runnable/Invocation/Plugin/Debug.pm     |  29 +
 lib/MooseX/Runnable/Invocation/Plugin/PAR.pm       |   8 +-
 lib/MooseX/Runnable/Invocation/Plugin/Profile.pm   |   5 +
 lib/MooseX/Runnable/Invocation/Plugin/Restart.pm   |   4 +
 .../Runnable/Invocation/Plugin/Restart/Auto.pm     |  17 +-
 .../Runnable/Invocation/Plugin/Restart/Base.pm     |   4 +
 .../Runnable/Invocation/Plugin/Role/CmdlineArgs.pm |   5 +
 .../Runnable/Invocation/Role/WithParsedArgs.pm     |   5 +
 .../Runnable/Invocation/Scheme/MooseX/Getopt.pm    |   5 +
 lib/MooseX/Runnable/Run.pm                         |  34 +-
 lib/MooseX/Runnable/Util/ArgParser.pm              |  35 +-
 {bin => script}/mx-run                             |   0
 t/00-load.t                                        |   2 -
 t/00-report-prereqs.t                              | 229 ++++++
 t/basic-mx-getopt.t                                |   6 +-
 t/basic.t                                          |  10 +-
 t/invocation-plugin-initargs.t                     |  18 +-
 t/zzz-check-breaks.t                               |  18 +
 weaver.ini                                         |   8 +
 xt/author/00-compile.t                             |  90 +++
 xt/author/pod-spell.t                              |  45 ++
 xt/pod-coverage.t                                  |   6 -
 xt/pod.t                                           |   6 -
 xt/release/changes_has_content.t                   |  41 +
 xt/release/clean-namespaces.t                      |   9 +
 xt/release/cpan-changes.t                          |  11 +
 xt/release/distmeta.t                              |   6 +
 xt/release/eol.t                                   |   8 +
 xt/release/kwalitee.t                              |   4 +
 xt/release/minimum-version.t                       |   8 +
 xt/release/mojibake.t                              |  12 +
 xt/release/no-tabs.t                               |  28 +
 xt/release/pod-no404s.t                            |  21 +
 xt/release/pod-syntax.t                            |   6 +
 xt/release/portability.t                           |  11 +
 xt/release/test-version.t                          |  22 +
 67 files changed, 3128 insertions(+), 1947 deletions(-)
 delete mode 100644 .gitignore
 create mode 100644 Build.PL
 create mode 100644 CONTRIBUTING
 create mode 100644 INSTALL
 create mode 100644 LICENSE
 delete mode 100644 MANIFEST.SKIP
 create mode 100644 META.json
 create mode 100644 README.md
 create mode 100644 dist.ini
 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/Scripts.pm
 delete mode 100644 inc/Module/Install/Win32.pm
 delete mode 100644 inc/Module/Install/WriteAll.pm
 rename {bin => script}/mx-run (100%)
 create mode 100644 t/00-report-prereqs.t
 create mode 100644 t/zzz-check-breaks.t
 create mode 100644 weaver.ini
 create mode 100644 xt/author/00-compile.t
 create mode 100644 xt/author/pod-spell.t
 delete mode 100644 xt/pod-coverage.t
 delete mode 100644 xt/pod.t
 create mode 100644 xt/release/changes_has_content.t
 create mode 100644 xt/release/clean-namespaces.t
 create mode 100644 xt/release/cpan-changes.t
 create mode 100644 xt/release/distmeta.t
 create mode 100644 xt/release/eol.t
 create mode 100644 xt/release/kwalitee.t
 create mode 100644 xt/release/minimum-version.t
 create mode 100644 xt/release/mojibake.t
 create mode 100644 xt/release/no-tabs.t
 create mode 100644 xt/release/pod-no404s.t
 create mode 100644 xt/release/pod-syntax.t
 create mode 100644 xt/release/portability.t
 create mode 100644 xt/release/test-version.t

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



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