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

gregoa pushed a change to branch master
in repository libclass-inspector-perl.

      from  49a62f9   releasing package libclass-inspector-perl version 1.30-1
      adds  f0d1f1c   Removing the use of UNIVERSAL::isa
      adds  9e7e588   Localising many newlines
      adds  5535629   Incrementing to upgrade Module::Install
      adds  1addf70   Removing the use of auto_install
      adds  48da6db   Incrementing some heavily used modules to remove the use 
of AutoInstall
      adds  6cd66f8   Correcting bad newlines
      adds  4ce4d6f   Removing "All rights reserved"
      adds  cade719   Correcting email address
      adds  69a2785   Adding support for classes with numeric second segments
      adds  b866b3c   Preparing for release
      adds  7471089   Various additions, patches and cleanups
      adds  a1ddc7f   Adding first attempt to fix _inc_to_local
      adds  d248d6f   Bug fix
      adds  4f70bb0   Bug fix
      adds  ab6d254   Moving version to production release
      adds  2285365   Adding experimental unicode support.
      adds  4fbbab1   Moving to production version
      adds  e17a428   Correcting the copyright date
      adds  ac474fd   Converting every use of build_requires: to test_requires: 
for future compatibility with the FreeBSD test_requires metadata upgrade
      adds  66ef0cc   Makefile.PL tweaking (mostly build_require to 
test_requires)
      adds  2f52ef1   Updating Class::Inspector for an incremental release
      adds  2c1d1d6   Updating Class::Inspector for an incremental release
      adds  f8502ec   Put the ut8 in a string eval, for better perlminver 
compatibility
      adds  5eb02ff   Localize $@ on eval
      adds  74976af   typo in docs
      adds  832b2b8   add Class::Inspector::Functions as per Adam's TODO list
      adds  50874f5   tests for Class::Inspector::Functions
      adds  135df04   document the addition of ::Functions
      adds  32f55c9   Updating various Changes files to be compatible with 
Module::Changes::ADAMK
      adds  0667e6c   Preparing to release
      adds  c6475bf   POD changes
      adds  1c03f23   Update Perl dependency to 5.006
      adds  5a099bb   Updating to more modern packaging
      adds  48d9c13   RT #74224: loaded() noisy under Perl 5.15.7.
      adds  95c147e   Preparing Tom Wyant's fix for release
      adds  d5593b6   Update copyright year
      adds  2ff4dc1   Switching to production release
      adds  8f5354f   Incrementing to upgrade Module::Install
      adds  a231ef9   put . in @INC if is not already there
      adds  8b672a3   spelling and grammar fixes (rt#85356)
      adds  dc3713f   add gitignore
      adds  8481f87   Handle coderef in @INC
      adds  a449376   version 1.29_01
      adds  70df5c9   do not use DSL so that we can set multiple authors
      adds  900cd89   add me as an author
      adds  ee5f443   more manifest skips
      adds  ee6e0bc   migrate to github
      adds  db2cb72   convert tabs to spaces in Chages
      adds  ea63a7b   spacing
      adds  47eeaa3   version 1.29_02
      adds  3979ea0   actually if is a configure requires
      adds  336b2a1   fix alignment
      adds  5a7a046   version 1.30
      adds  ad91a0d   migrate to Dist::Zilla
      adds  4da9c0c   add release tests
      adds  54740eb   add travis
      adds  80d5841   also test 5.24
      adds  fecdf28   Use our instead of vars
      adds  e97434d   use warnings
      adds  5ec1871   empty install for travis
      adds  57b6afa   Documentation tweak
      adds  37c0e1a   v1.31
      adds  75b07ac   New upstream version 1.31
       new  b522501   Merge tag 'upstream/1.31'
       new  c0b2d30   Update debian/changelog
       new  70d55f5   Update years of upstream copyright, drop third-party 
stanzas.
       new  2965f81   releasing package libclass-inspector-perl version 1.31-1

The 4 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 +
 INSTALL                          |  43 +++
 LICENSE                          | 379 ++++++++++++++++++++
 MANIFEST                         |  32 +-
 MANIFEST.SKIP                    |   7 -
 META.json                        |  66 ++++
 META.yml                         |  30 +-
 Makefile.PL                      |  72 +++-
 README                           | 253 ++++++++++++++
 author.yml                       |  15 +
 cpanfile                         |  25 ++
 debian/changelog                 |   7 +
 debian/copyright                 |  13 +-
 dist.ini                         |  42 +++
 inc/Module/Install.pm            | 451 ------------------------
 inc/Module/Install/Base.pm       |  83 -----
 inc/Module/Install/Can.pm        | 163 ---------
 inc/Module/Install/Fetch.pm      |  93 -----
 inc/Module/Install/Makefile.pm   | 418 -----------------------
 inc/Module/Install/Metadata.pm   | 722 ---------------------------------------
 inc/Module/Install/Win32.pm      |  64 ----
 inc/Module/Install/WriteAll.pm   |  63 ----
 lib/Class/Inspector.pm           | 527 ++++++++++++++--------------
 lib/Class/Inspector/Functions.pm |  48 +--
 t/00_diag.t                      |  83 +++++
 t/01_compile.t                   |   6 +-
 t/02_main.t                      | 647 +++++++++++++++++------------------
 t/03_inc_to_local.t              |  70 ++--
 t/04_main_functions.t            | 165 +++++----
 xt/author/eol.t                  |  16 +
 xt/author/no_tabs.t              |  16 +
 xt/author/pod.t                  |  16 +
 xt/author/pod_coverage.t         |  75 ++++
 xt/author/pod_spelling_common.t  |  29 ++
 xt/author/strict.t               |  22 ++
 xt/author/version.t              |  45 +++
 xt/release/fixme.t               |  20 ++
 37 files changed, 1959 insertions(+), 2871 deletions(-)
 create mode 100644 INSTALL
 create mode 100644 LICENSE
 delete mode 100644 MANIFEST.SKIP
 create mode 100644 META.json
 create mode 100644 README
 create mode 100644 author.yml
 create mode 100644 cpanfile
 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/Win32.pm
 delete mode 100644 inc/Module/Install/WriteAll.pm
 create mode 100644 t/00_diag.t
 create mode 100644 xt/author/eol.t
 create mode 100644 xt/author/no_tabs.t
 create mode 100644 xt/author/pod.t
 create mode 100644 xt/author/pod_coverage.t
 create mode 100644 xt/author/pod_spelling_common.t
 create mode 100644 xt/author/strict.t
 create mode 100644 xt/author/version.t
 create mode 100644 xt/release/fixme.t

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

_______________________________________________
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits

Reply via email to