[libnamespace-autoclean-perl] branch master updated (10ca39d -> 37e1f2a)

gregor herrmann gregoa at debian.org
Sun Oct 18 17:23:47 UTC 2015


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

gregoa pushed a change to branch master
in repository libnamespace-autoclean-perl.

      from  10ca39d   update changelog
      adds  c5a7ee1   drop testing of MooseX::MarkAsMethods: overloads now fully work with Moose 2.1400
      adds  5c54503   also test Sub::Install
      adds  92cf7ca   remove configs that are the defaults
      adds  df5dec0   go back to bundle - added [Version], lost TYPES collection, lost ordering of contributors
      adds  828636e   this order is a bit more efficient
      adds  216bc1b   no need to treat overloads as special if Moose treats them as methods
      adds  e43b90b   namespace-autoclean-0.21
      adds  70edb32   Restore the overloading special case and add a test for it
      adds  546df0b   pretend that change never happened
      adds  c0355d9   namespace-autoclean-0.22
      adds  95972df   these optional testing prereqs were not getting reported - knowing their versions is useful for deciphering test failure reports
      adds  ac22246   attempt to more properly detect Mouse XS vs. pureperl so as to neuter tests
      adds  7197c4f   oops, fix bad conditionals on TODO tests
      adds  91a01b1   changelog for Mouse test changes
      adds  ac1a374   namespace-autoclean-0.23
      adds  ab39889   also report if Mouse is using the pure perl version
      adds  474266b   fix unparsable $VERSION declaration (RT#101095)
      adds  23ea845   namespace-autoclean-0.24
      adds  49f438e   hardcode the distribution name in Changes, to reduce churn on each release
      adds  43732df   keep $VERSION right in the repo
      adds  db224b7   [Test::CleanNamespaces] is now provided by my plugin bundle
      adds  9a0c6ae   add irc channel and mailing list address to metadata
      adds  ca5aaa7   load Moo::Role up front, so we know immediately if it is missing/broken
      adds  8d71888   switch to my podweaver plugin bundle
      adds  b706d9d   use a more specific link
      adds  19bbdc5   add a todo note about this use of ->does
      adds  36e6f68   start tracking a TODO file
      adds  140b2a8   namespace-autoclean-0.25
      adds  7e2b7e7   increment $VERSION after 0.25 release
      adds  2de9149   these authordeps are now redundant
      adds  42ee123   prevent Mouse tests from failing before 5.010 (RT#101825)
      adds  8869175   namespace-autoclean-0.26
      adds  7a7b99c   increment $VERSION after 0.26 release
      adds  5156151   all TODO items have been addressed
      adds  c814ffe   test Moo classes when Moose is loaded
      adds  a365578   use MakeMaker only since we target perl 5.6
      adds  1ce64e9   changelog EUMM-for-5.6 change
      adds  0eed7bb   use travis container infrastructure
      adds  e73812e   use consistent indentation
      adds  d7d76ad   also test on the latest perls
      adds  870c9e2   explain why we are only using EUMM
      adds  5774e6f   namespace-autoclean-0.27
      adds  924fd90   increment $VERSION after 0.27 release
      adds  4dae387   allow these tests to run from a different directory
      adds  aff2266   skip tests with Moo when Moo is too old (RT#107643)
      adds  47c7088   skip Moo tests when Sub::Util was uninstalled and Moo did not detect it (RT#107643)
      adds  ae7c2d5   namespace-autoclean-0.28
      adds  8268d3e   Imported Upstream version 0.28
       new  268fe08   Merge tag 'upstream/0.28'
       new  a5eced9   Update debian/changelog
       new  2028145   Update years of upstream and packaging copyright.
       new  d9a8c20   Drop build dependency on Module::Build::Tiny.
       new  300bf97   Declare compliance with Debian Policy 3.9.6.
       new  37e1f2a   releasing package libnamespace-autoclean-perl version 0.28-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:
 Build.PL                          | 125 -------
 CONTRIBUTING                      |  26 +-
 Changes                           |  28 ++
 INSTALL                           |   9 +-
 LICENSE => LICENCE                |   0
 MANIFEST                          |  15 +-
 META.json                         | 696 +++++++++++++++++++++++---------------
 META.yml                          | 532 +++++++++++++++++------------
 Makefile.PL                       |  75 +---
 README                            |   4 +-
 debian/changelog                  |  11 +-
 debian/control                    |   5 +-
 debian/copyright                  |   4 +-
 dist.ini                          |  24 +-
 lib/namespace/autoclean.pm        |  43 ++-
 t/00-report-prereqs.dd            |  84 +++--
 t/00-report-prereqs.t             |  24 +-
 t/moo-with-moose.t                |  16 +
 t/moo.t                           |  51 ++-
 t/moose-withoverloading.t         |  18 +-
 t/moosex-markasmethods.t          |  59 ----
 t/mouse-pp.t                      |   7 +-
 t/mouse.t                         |  13 +-
 t/sub-install.t                   |  22 ++
 weaver.ini                        |  35 --
 xt/author/00-compile.t            |  12 +-
 xt/author/{no-tabs.t => eol.t}    |  15 +-
 xt/{release => author}/kwalitee.t |   2 +-
 xt/author/mojibake.t              |   9 +
 xt/author/no-tabs.t               |  11 +-
 xt/author/pod-spell.t             |   9 +-
 xt/release/changes_has_content.t  |   2 +-
 xt/release/eol.t                  |   8 -
 xt/release/minimum-version.t      |   2 +-
 xt/release/mojibake.t             |  12 -
 xt/release/portability.t          |   1 +
 36 files changed, 1072 insertions(+), 937 deletions(-)
 delete mode 100644 Build.PL
 rename LICENSE => LICENCE (100%)
 create mode 100644 t/moo-with-moose.t
 delete mode 100644 t/moosex-markasmethods.t
 create mode 100644 t/sub-install.t
 delete mode 100644 weaver.ini
 copy xt/author/{no-tabs.t => eol.t} (86%)
 rename xt/{release => author}/kwalitee.t (95%)
 create mode 100644 xt/author/mojibake.t
 delete mode 100644 xt/release/eol.t
 delete mode 100644 xt/release/mojibake.t

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



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