Hello community,

here is the log from the commit of package perl-Class-Container for 
openSUSE:Factory checked in at 2017-11-15 16:52:55
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Class-Container (Old)
 and      /work/SRC/openSUSE:Factory/.perl-Class-Container.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-Class-Container"

Wed Nov 15 16:52:55 2017 rev:10 rq:539956 version:0.13

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/perl-Class-Container/perl-Class-Container.changes    
    2011-11-21 12:37:22.000000000 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Class-Container.new/perl-Class-Container.changes
   2017-11-15 16:52:57.938661241 +0100
@@ -1,0 +2,6 @@
+Sat Nov  4 06:09:21 UTC 2017 - [email protected]
+
+- updated to 0.13
+   see /usr/share/doc/packages/perl-Class-Container/Changes
+
+-------------------------------------------------------------------

Old:
----
  Class-Container-0.12.tar.gz

New:
----
  Class-Container-0.13.tar.gz
  cpanspec.yml

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ perl-Class-Container.spec ++++++
--- /var/tmp/diff_new_pack.3w0dxT/_old  2017-11-15 16:52:58.546638964 +0100
+++ /var/tmp/diff_new_pack.3w0dxT/_new  2017-11-15 16:52:58.546638964 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Class-Container
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,65 +15,64 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:           perl-Class-Container
+Version:        0.13
+Release:        0
 %define cpan_name Class-Container
 Summary:        Glues object frameworks together transparently
-Version:        0.12
-Release:        1
-License:        GPL-1.0+ or Artistic-1.0
+License:        Artistic-1.0 or GPL-1.0+
 Group:          Development/Libraries/Perl
 Url:            http://search.cpan.org/dist/Class-Container/
-#Source:         
http://www.cpan.org/modules/by-module/Class/Class-Container-%{version}.tar.gz
-Source:         %{cpan_name}-%{version}.tar.gz
+Source0:        
https://cpan.metacpan.org/authors/id/K/KW/KWILLIAMS/%{cpan_name}-%{version}.tar.gz
+Source1:        cpanspec.yml
 BuildArch:      noarch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
-%{perl_requires}
 BuildRequires:  perl
-BuildRequires:  perl(Module::Build)
 BuildRequires:  perl-macros
-BuildRequires:  perl(Carp)
-BuildRequires:  perl(Params::Validate) >= 0.23
-BuildRequires:  perl(Scalar::Util)
-Requires:       perl(Carp)
-Requires:       perl(Params::Validate) >= 0.23
-Requires:       perl(Scalar::Util)
+BuildRequires:  perl(Module::Build) >= 0.360100
+BuildRequires:  perl(Params::Validate)
+Requires:       perl(Params::Validate)
+%{perl_requires}
 
 %description
-This class facilitates building frameworks of several classes that inter-
-operate. It was first designed and built for HTML::Mason, in which the
-Compiler, Lexer, Interpreter, Resolver, Component, Buffer, and several
+This class facilitates building frameworks of several classes that
+inter-operate. It was first designed and built for 'HTML::Mason', in which
+the Compiler, Lexer, Interpreter, Resolver, Component, Buffer, and several
 other objects must create each other transparently, passing the appropriate
 parameters to the right class, possibly substituting other subclasses for
 any of these objects.
 
+The main features of 'Class::Container' are:
+
+  * Explicit declaration of containment relationships (aggregation, factory
+creation, etc.)
 
-Authors:
---------
-    Ken Williams <[email protected]>
-    Dave Rolsky <[email protected]>
+  * Declaration of constructor parameters accepted by each member in a class
+framework
+
+  * Transparent passing of constructor parameters to the class that needs them
+
+  * Ability to create one (automatic) or many (manual) contained objects
+automatically and transparently
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
 
 %build
 %{__perl} Build.PL installdirs=vendor
-./Build
+./Build build flags=%{?_smp_mflags}
 
 %check
 ./Build test
 
 %install
-./Build install destdir=$RPM_BUILD_ROOT create_packlist=0
+./Build install destdir=%{buildroot} create_packlist=0
 %perl_gen_filelist
 
-%clean
-%{__rm} -rf $RPM_BUILD_ROOT
-
 %files -f %{name}.files
-%defattr(-,root,root,-)
+%defattr(-,root,root,755)
 %doc Changes README
+%license LICENSE
 
 %changelog

++++++ Class-Container-0.12.tar.gz -> Class-Container-0.13.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Class-Container-0.12/Build.PL 
new/Class-Container-0.13/Build.PL
--- old/Class-Container-0.12/Build.PL   2005-01-24 04:06:02.000000000 +0100
+++ new/Class-Container-0.13/Build.PL   2017-11-03 05:55:02.000000000 +0100
@@ -1,16 +1,56 @@
-use Module::Build;
 
-my $b = Module::Build->new
-  (
-   module_name => 'Class::Container',
-   requires => {
-               'Params::Validate' => '0.23',
-               'Carp' => 0,
-              },
-   recommends => { 'Scalar::Util' => 0 },
-   license => 'perl',
-   create_readme => 1,
-   sign => 1,
-  );
+use strict;
+use warnings;
 
-$b->create_build_script;
+use Module::Build 0.3601;
+
+
+my %module_build_args = (
+  "build_requires" => {
+    "Module::Build" => "0.3601"
+  },
+  "configure_requires" => {
+    "ExtUtils::MakeMaker" => "6.30",
+    "Module::Build" => "0.3601"
+  },
+  "dist_abstract" => "Glues object frameworks together transparently",
+  "dist_author" => [
+    "Ken Williams <kwilliams\@cpan.org>"
+  ],
+  "dist_name" => "Class-Container",
+  "dist_version" => "0.13",
+  "license" => "perl",
+  "module_name" => "Class::Container",
+  "recommends" => {},
+  "recursive_test_files" => 1,
+  "requires" => {
+    "B::Deparse" => 0,
+    "Carp" => 0,
+    "Params::Validate" => 0,
+    "Scalar::Util" => 0,
+    "strict" => 0,
+    "vars" => 0
+  },
+  "script_files" => [],
+  "test_requires" => {
+    "File::Spec" => 0,
+    "Test" => 0
+  }
+);
+
+
+my %fallback_build_requires = (
+  "File::Spec" => 0,
+  "Module::Build" => "0.3601",
+  "Test" => 0
+);
+
+
+unless ( eval { Module::Build->VERSION(0.4004) } ) {
+  delete $module_build_args{test_requires};
+  $module_build_args{build_requires} = \%fallback_build_requires;
+}
+
+my $build = Module::Build->new(%module_build_args);
+
+$build->create_build_script;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Class-Container-0.12/Changes 
new/Class-Container-0.13/Changes
--- old/Class-Container-0.12/Changes    2005-01-24 04:06:02.000000000 +0100
+++ new/Class-Container-0.13/Changes    2017-11-03 05:55:02.000000000 +0100
@@ -1,4 +1,15 @@
-Revision history for Perl extension Class::Framework.
+Revision history for Perl extension Class::Container:
+
+0.13  Thu Nov  2 23:53:03 CDT 2017
+
+ - Fix tests failing on Perl 5.26 w/o '.' in @INC [Kent Fredric]
+
+ - A bit of Perl::Critic compliance
+
+ - Convert to Dist::Zilla
+
+ - Convert to git
+
 
 0.12  Sun Jan 23 21:02:35 CST 2005
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Class-Container-0.12/INSTALL 
new/Class-Container-0.13/INSTALL
--- old/Class-Container-0.12/INSTALL    2005-01-24 04:06:02.000000000 +0100
+++ new/Class-Container-0.13/INSTALL    2017-11-03 05:55:02.000000000 +0100
@@ -1,21 +1,44 @@
-           Installation instructions for Class::Container
 
-To install this module, follow the standard steps for installing most
-Perl modules:
+This is the Perl distribution Class-Container.
 
-  perl Makefile.PL
-  make
-  make test
-  make install
+Installing Class-Container is straightforward.
 
-Or you may use the newer Module::Build-style installation script:
+## Installation with cpanm
 
-  perl Build.PL
-  ./Build
-  ./Build test
-  ./Build install
+If you have cpanm, you only need one line:
 
-Or you may use the CPAN.pm module, which will automatically execute
-these steps for you.
+    % cpanm Class::Container
 
- -Ken
+If you are installing into a system-wide directory, you may need to pass the
+"-S" flag to cpanm, which uses sudo to install the module:
+
+    % cpanm -S Class::Container
+
+## Installing with the CPAN shell
+
+Alternatively, if your CPAN shell is set up, you should just be able to do:
+
+    % cpan Class::Container
+
+## Manual installation
+
+As a last resort, you can manually install it. Download the tarball, untar it,
+then build it:
+
+    % perl Build.PL
+    % ./Build && ./Build test
+
+Then install it:
+
+    % ./Build install
+
+If you are installing into a system-wide directory, you may need to run:
+
+    % sudo ./Build install
+
+## Documentation
+
+Class-Container documentation is available as POD.
+You can run perldoc from a shell to read the documentation:
+
+    % perldoc Class::Container
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Class-Container-0.12/LICENSE 
new/Class-Container-0.13/LICENSE
--- old/Class-Container-0.12/LICENSE    1970-01-01 01:00:00.000000000 +0100
+++ new/Class-Container-0.13/LICENSE    2017-11-03 05:55:02.000000000 +0100
@@ -0,0 +1,379 @@
+This software is copyright (c) 2017 by Ken Williams.
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
+
+Terms of the Perl programming language system itself
+
+a) the GNU General Public License as published by the Free
+   Software Foundation; either version 1, or (at your option) any
+   later version, or
+b) the "Artistic License"
+
+--- The GNU General Public License, Version 1, February 1989 ---
+
+This software is Copyright (c) 2017 by Ken Williams.
+
+This is free software, licensed under:
+
+  The GNU General Public License, Version 1, February 1989
+
+                    GNU GENERAL PUBLIC LICENSE
+                     Version 1, February 1989
+
+ Copyright (C) 1989 Free Software Foundation, Inc.
+ 51 Franklin St, Suite 500, Boston, MA  02110-1335  USA
+
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+                            Preamble
+
+  The license agreements of most software companies try to keep users
+at the mercy of those companies.  By contrast, our General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users.  The
+General Public License applies to the Free Software Foundation's
+software and to any other program whose authors commit to using it.
+You can use it for your programs, too.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Specifically, the General Public License is designed to make
+sure that you have the freedom to give away or sell copies of free
+software, that you receive source code or can get it if you want it,
+that you can change the software or use pieces of it in new free
+programs; and that you know you can do these things.
+
+  To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+  For example, if you distribute copies of a such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have.  You must make sure that they, too, receive or can get the
+source code.  And you must tell them their rights.
+
+  We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+  Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software.  If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+                    GNU GENERAL PUBLIC LICENSE
+   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+  0. This License Agreement applies to any program or other work which
+contains a notice placed by the copyright holder saying it may be
+distributed under the terms of this General Public License.  The
+"Program", below, refers to any such program or work, and a "work based
+on the Program" means either the Program or any work containing the
+Program or a portion of it, either verbatim or with modifications.  Each
+licensee is addressed as "you".
+
+  1. You may copy and distribute verbatim copies of the Program's source
+code as you receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice and
+disclaimer of warranty; keep intact all the notices that refer to this
+General Public License and to the absence of any warranty; and give any
+other recipients of the Program a copy of this General Public License
+along with the Program.  You may charge a fee for the physical act of
+transferring a copy.
+
+  2. You may modify your copy or copies of the Program or any portion of
+it, and copy and distribute such modifications under the terms of Paragraph
+1 above, provided that you also do the following:
+
+    a) cause the modified files to carry prominent notices stating that
+    you changed the files and the date of any change; and
+
+    b) cause the whole of any work that you distribute or publish, that
+    in whole or in part contains the Program or any part thereof, either
+    with or without modifications, to be licensed at no charge to all
+    third parties under the terms of this General Public License (except
+    that you may choose to grant warranty protection to some or all
+    third parties, at your option).
+
+    c) If the modified program normally reads commands interactively when
+    run, you must cause it, when started running for such interactive use
+    in the simplest and most usual way, to print or display an
+    announcement including an appropriate copyright notice and a notice
+    that there is no warranty (or else, saying that you provide a
+    warranty) and that users may redistribute the program under these
+    conditions, and telling the user how to view a copy of this General
+    Public License.
+
+    d) You may charge a fee for the physical act of transferring a
+    copy, and you may at your option offer warranty protection in
+    exchange for a fee.
+
+Mere aggregation of another independent work with the Program (or its
+derivative) on a volume of a storage or distribution medium does not bring
+the other work under the scope of these terms.
+
+  3. You may copy and distribute the Program (or a portion or derivative of
+it, under Paragraph 2) in object code or executable form under the terms of
+Paragraphs 1 and 2 above provided that you also do one of the following:
+
+    a) accompany it with the complete corresponding machine-readable
+    source code, which must be distributed under the terms of
+    Paragraphs 1 and 2 above; or,
+
+    b) accompany it with a written offer, valid for at least three
+    years, to give any third party free (except for a nominal charge
+    for the cost of distribution) a complete machine-readable copy of the
+    corresponding source code, to be distributed under the terms of
+    Paragraphs 1 and 2 above; or,
+
+    c) accompany it with the information you received as to where the
+    corresponding source code may be obtained.  (This alternative is
+    allowed only for noncommercial distribution and only if you
+    received the program in object code or executable form alone.)
+
+Source code for a work means the preferred form of the work for making
+modifications to it.  For an executable file, complete source code means
+all the source code for all modules it contains; but, as a special
+exception, it need not include source code for modules which are standard
+libraries that accompany the operating system on which the executable
+file runs, or for standard header files or definitions files that
+accompany that operating system.
+
+  4. You may not copy, modify, sublicense, distribute or transfer the
+Program except as expressly provided under this General Public License.
+Any attempt otherwise to copy, modify, sublicense, distribute or transfer
+the Program is void, and will automatically terminate your rights to use
+the Program under this License.  However, parties who have received
+copies, or rights to use copies, from you under this General Public
+License will not have their licenses terminated so long as such parties
+remain in full compliance.
+
+  5. By copying, distributing or modifying the Program (or any work based
+on the Program) you indicate your acceptance of this license to do so,
+and all its terms and conditions.
+
+  6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the original
+licensor to copy, distribute or modify the Program subject to these
+terms and conditions.  You may not impose any further restrictions on the
+recipients' exercise of the rights granted herein.
+
+  7. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time.  Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number.  If the Program
+specifies a version number of the license which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation.  If the Program does not specify a version number of
+the license, you may choose any version ever published by the Free Software
+Foundation.
+
+  8. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission.  For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this.  Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+                            NO WARRANTY
+
+  9. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+  10. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+                     END OF TERMS AND CONDITIONS
+
+        Appendix: How to Apply These Terms to Your New Programs
+
+  If you develop a new program, and you want it to be of the greatest
+possible use to humanity, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these
+terms.
+
+  To do so, attach the following notices to the program.  It is safest to
+attach them to the start of each source file to most effectively convey
+the exclusion of warranty; and each file should have at least the
+"copyright" line and a pointer to where the full notice is found.
+
+    <one line to give the program's name and a brief idea of what it does.>
+    Copyright (C) 19yy  <name of author>
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 1, or (at your option)
+    any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA  02110-1301 
USA
+
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+    Gnomovision version 69, Copyright (C) 19xx name of author
+    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+    This is free software, and you are welcome to redistribute it
+    under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the
+appropriate parts of the General Public License.  Of course, the
+commands you use may be called something other than `show w' and `show
+c'; they could even be mouse-clicks or menu items--whatever suits your
+program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary.  Here a sample; alter the names:
+
+  Yoyodyne, Inc., hereby disclaims all copyright interest in the
+  program `Gnomovision' (a program to direct compilers to make passes
+  at assemblers) written by James Hacker.
+
+  <signature of Ty Coon>, 1 April 1989
+  Ty Coon, President of Vice
+
+That's all there is to it!
+
+
+--- The Artistic License 1.0 ---
+
+This software is Copyright (c) 2017 by Ken Williams.
+
+This is free software, licensed under:
+
+  The Artistic License 1.0
+
+The Artistic License
+
+Preamble
+
+The intent of this document is to state the conditions under which a Package
+may be copied, such that the Copyright Holder maintains some semblance of
+artistic control over the development of the package, while giving the users of
+the package the right to use and distribute the Package in a more-or-less
+customary fashion, plus the right to make reasonable modifications.
+
+Definitions:
+
+  - "Package" refers to the collection of files distributed by the Copyright
+    Holder, and derivatives of that collection of files created through
+    textual modification. 
+  - "Standard Version" refers to such a Package if it has not been modified,
+    or has been modified in accordance with the wishes of the Copyright
+    Holder. 
+  - "Copyright Holder" is whoever is named in the copyright or copyrights for
+    the package. 
+  - "You" is you, if you're thinking about copying or distributing this 
Package.
+  - "Reasonable copying fee" is whatever you can justify on the basis of media
+    cost, duplication charges, time of people involved, and so on. (You will
+    not be required to justify it to the Copyright Holder, but only to the
+    computing community at large as a market that must bear the fee.) 
+  - "Freely Available" means that no fee is charged for the item itself, though
+    there may be fees involved in handling the item. It also means that
+    recipients of the item may redistribute it under the same conditions they
+    received it. 
+
+1. You may make and give away verbatim copies of the source form of the
+Standard Version of this Package without restriction, provided that you
+duplicate all of the original copyright notices and associated disclaimers.
+
+2. You may apply bug fixes, portability fixes and other modifications derived
+from the Public Domain or from the Copyright Holder. A Package modified in such
+a way shall still be considered the Standard Version.
+
+3. You may otherwise modify your copy of this Package in any way, provided that
+you insert a prominent notice in each changed file stating how and when you
+changed that file, and provided that you do at least ONE of the following:
+
+  a) place your modifications in the Public Domain or otherwise make them
+     Freely Available, such as by posting said modifications to Usenet or an
+     equivalent medium, or placing the modifications on a major archive site
+     such as ftp.uu.net, or by allowing the Copyright Holder to include your
+     modifications in the Standard Version of the Package.
+
+  b) use the modified Package only within your corporation or organization.
+
+  c) rename any non-standard executables so the names do not conflict with
+     standard executables, which must also be provided, and provide a separate
+     manual page for each non-standard executable that clearly documents how it
+     differs from the Standard Version.
+
+  d) make other distribution arrangements with the Copyright Holder.
+
+4. You may distribute the programs of this Package in object code or executable
+form, provided that you do at least ONE of the following:
+
+  a) distribute a Standard Version of the executables and library files,
+     together with instructions (in the manual page or equivalent) on where to
+     get the Standard Version.
+
+  b) accompany the distribution with the machine-readable source of the Package
+     with your modifications.
+
+  c) accompany any non-standard executables with their corresponding Standard
+     Version executables, giving the non-standard executables non-standard
+     names, and clearly documenting the differences in manual pages (or
+     equivalent), together with instructions on where to get the Standard
+     Version.
+
+  d) make other distribution arrangements with the Copyright Holder.
+
+5. You may charge a reasonable copying fee for any distribution of this
+Package.  You may charge any fee you choose for support of this Package. You
+may not charge a fee for this Package itself. However, you may distribute this
+Package in aggregate with other (possibly commercial) programs as part of a
+larger (possibly commercial) software distribution provided that you do not
+advertise this Package as a product of your own.
+
+6. The scripts and library files supplied as input to or produced as output
+from the programs of this Package do not automatically fall under the copyright
+of this Package, but belong to whomever generated them, and may be sold
+commercially, and may be aggregated with this Package.
+
+7. C or perl subroutines supplied by you and linked into this Package shall not
+be considered part of this Package.
+
+8. The name of the Copyright Holder may not be used to endorse or promote
+products derived from this software without specific prior written permission.
+
+9. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
+WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
+MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+
+The End
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Class-Container-0.12/MANIFEST 
new/Class-Container-0.13/MANIFEST
--- old/Class-Container-0.12/MANIFEST   2005-01-24 04:06:02.000000000 +0100
+++ new/Class-Container-0.13/MANIFEST   2017-11-03 05:55:02.000000000 +0100
@@ -1,12 +1,16 @@
 Build.PL
 Changes
 INSTALL
-lib/Class/Container.pm
-Makefile.PL
-MANIFEST                       This list of files
+LICENSE
+MANIFEST
 META.yml
+Makefile.PL
 README
+SIGNATURE
+cpanfile
+dist.ini
+lib/Class/Container.pm
 t/01-basic.t
 t/02-decorator.t
+t/author-critic.t
 t/classes.pl
-SIGNATURE    Added here by Module::Build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Class-Container-0.12/META.yml 
new/Class-Container-0.13/META.yml
--- old/Class-Container-0.12/META.yml   2005-01-24 04:06:02.000000000 +0100
+++ new/Class-Container-0.13/META.yml   2017-11-03 05:55:02.000000000 +0100
@@ -1,21 +1,29 @@
---- #YAML:1.0
-name: Class-Container
-version: 0.12
+---
+abstract: 'Glues object frameworks together transparently'
 author:
-  - |-
-    Originally by Ken Williams <[email protected]> and Dave Rolsky
-    <[email protected]> for the HTML::Mason project.  Important feedback
-    contributed by Jonathan Swartz <[email protected]>.  Extended by Ken
-    Williams for the AI::Categorizer project.
-abstract: Glues object frameworks together transparently
+  - 'Ken Williams <[email protected]>'
+build_requires:
+  File::Spec: 0
+  Module::Build: 0.3601
+  Test: 0
+configure_requires:
+  ExtUtils::MakeMaker: 6.30
+  Module::Build: 0.3601
+dynamic_config: 0
+generated_by: 'Dist::Zilla version 5.006, CPAN::Meta::Converter version 
2.150001'
 license: perl
+meta-spec:
+  url: http://module-build.sourceforge.net/META-spec-v1.4.html
+  version: 1.4
+name: Class-Container
 requires:
+  B::Deparse: 0
   Carp: 0
-  Params::Validate: 0.23
-recommends:
+  Params::Validate: 0
   Scalar::Util: 0
-provides:
-  Class::Container:
-    file: lib/Class/Container.pm
-    version: 0.12
-generated_by: Module::Build version 0.26
+  strict: 0
+  vars: 0
+resources:
+  bugtracker: http://github.com/kenahoo/Class-Container/issues
+  repository: git://github.com/kenahoo/Class-Container.git
+version: 0.13
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Class-Container-0.12/Makefile.PL 
new/Class-Container-0.13/Makefile.PL
--- old/Class-Container-0.12/Makefile.PL        2005-01-24 04:06:02.000000000 
+0100
+++ new/Class-Container-0.13/Makefile.PL        2017-11-03 05:55:02.000000000 
+0100
@@ -1,37 +1,69 @@
 
-use ExtUtils::MakeMaker;
+use strict;
+use warnings;
 
-unless (eval "use Scalar::Util; 1") {
-  warn("You seem not to have the Scalar::Util module installed.\n" .
-       "Its installation is recommended (but not required) for 
Class::Container - see the README.\n");
-  sleep 4;
+
+
+use ExtUtils::MakeMaker 6.30;
+
+
+
+my %WriteMakefileArgs = (
+  "ABSTRACT" => "Glues object frameworks together transparently",
+  "AUTHOR" => "Ken Williams <kwilliams\@cpan.org>",
+  "BUILD_REQUIRES" => {
+    "Module::Build" => "0.3601"
+  },
+  "CONFIGURE_REQUIRES" => {
+    "ExtUtils::MakeMaker" => "6.30",
+    "Module::Build" => "0.3601"
+  },
+  "DISTNAME" => "Class-Container",
+  "EXE_FILES" => [],
+  "LICENSE" => "perl",
+  "NAME" => "Class::Container",
+  "PREREQ_PM" => {
+    "B::Deparse" => 0,
+    "Carp" => 0,
+    "Params::Validate" => 0,
+    "Scalar::Util" => 0,
+    "strict" => 0,
+    "vars" => 0
+  },
+  "TEST_REQUIRES" => {
+    "File::Spec" => 0,
+    "Test" => 0
+  },
+  "VERSION" => "0.13",
+  "test" => {
+    "TESTS" => "t/*.t"
+  }
+);
+
+
+my %FallbackPrereqs = (
+  "B::Deparse" => 0,
+  "Carp" => 0,
+  "File::Spec" => 0,
+  "Module::Build" => "0.3601",
+  "Params::Validate" => 0,
+  "Scalar::Util" => 0,
+  "Test" => 0,
+  "strict" => 0,
+  "vars" => 0
+);
+
+
+unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
+  delete $WriteMakefileArgs{TEST_REQUIRES};
+  delete $WriteMakefileArgs{BUILD_REQUIRES};
+  $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
 }
 
-my $module = 'Class::Container';
-my ($file, $dir);
-($file = "lib/$module.pm") =~ s{::}{/}g;
-($dir  = $module) =~ s/::/-/g;
-
-WriteMakefile
-  (
-   'NAME'       => $module,
-   'VERSION_FROM' => $file, # finds $VERSION
-   'dist' => { COMPRESS=>"gzip",
-               SUFFIX=>"gz",
-               PREOP=>('rm -f README; '.
-                       "pod2text -80 < $file > README; ".
-                       "cp -f README $dir-\$(VERSION); "
-                      ),
-             },
-   'PREREQ_PM' => {
-                  Params::Validate => '0.23',
-                 },
-   'PL_FILES' => {},
-   ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
-    (ABSTRACT_FROM => $file, # retrieve abstract from module
-     AUTHOR     => 'Ken Williams <[email protected]>') : 
-    ()
-   ),
-   NO_META => 1,
-  );
+delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
+  unless eval { ExtUtils::MakeMaker->VERSION(6.52) };
+
+WriteMakefile(%WriteMakefileArgs);
+
+
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Class-Container-0.12/README 
new/Class-Container-0.13/README
--- old/Class-Container-0.12/README     2005-01-24 04:06:02.000000000 +0100
+++ new/Class-Container-0.13/README     2017-11-03 05:55:02.000000000 +0100
@@ -1,321 +1,13 @@
-NAME
-    Class::Container - Glues object frameworks together transparently
 
-SYNOPSIS
-     package Car;
-     use Class::Container;
-     @ISA = qw(Class::Container);
- 
-     __PACKAGE__->valid_params
-       (
-        paint  => {default => 'burgundy'},
-        style  => {default => 'coupe'},
-        windshield => {isa => 'Glass'},
-        radio  => {isa => 'Audio::Device'},
-       );
- 
-     __PACKAGE__->contained_objects
-       (
-        windshield => 'Glass::Shatterproof',
-        wheel      => { class => 'Vehicle::Wheel',
-                        delayed => 1 },
-        radio      => 'Audio::MP3',
-       );
- 
-     sub new {
-       my $package = shift;
-   
-       # 'windshield' and 'radio' objects are created automatically by
-       # SUPER::new()
-       my $self = $package->SUPER::new(@_);
-   
-       $self->{right_wheel} = $self->create_delayed_object('wheel');
-       ... do any more initialization here ...
-       return $self;
-     }
 
-DESCRIPTION
-    This class facilitates building frameworks of several classes that
-    inter-operate. It was first designed and built for "HTML::Mason", in
-    which the Compiler, Lexer, Interpreter, Resolver, Component, Buffer, and
-    several other objects must create each other transparently, passing the
-    appropriate parameters to the right class, possibly substituting other
-    subclasses for any of these objects.
+This archive contains the distribution Class-Container,
+version 0.13:
 
-    The main features of "Class::Container" are:
+  Glues object frameworks together transparently
 
-    *   Explicit declaration of containment relationships (aggregation,
-        factory creation, etc.)
+This software is copyright (c) 2017 by Ken Williams.
 
-    *   Declaration of constructor parameters accepted by each member in a
-        class framework
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
 
-    *   Transparent passing of constructor parameters to the class that
-        needs them
-
-    *   Ability to create one (automatic) or many (manual) contained objects
-        automatically and transparently
-
-  Scenario
-    Suppose you've got a class called "Parent", which contains an object of
-    the class "Child", which in turn contains an object of the class
-    "GrandChild". Each class creates the object that it contains. Each class
-    also accepts a set of named parameters in its "new()" method. Without
-    using "Class::Container", "Parent" will have to know all the parameters
-    that "Child" takes, and "Child" will have to know all the parameters
-    that "GrandChild" takes. And some of the parameters accepted by "Parent"
-    will really control aspects of "Child" or "GrandChild". Likewise, some
-    of the parameters accepted by "Child" will really control aspects of
-    "GrandChild". So, what happens when you decide you want to use a
-    "GrandDaughter" class instead of the generic "GrandChild"? "Parent" and
-    "Child" must be modified accordingly, so that any additional parameters
-    taken by "GrandDaughter" can be accommodated. This is a pain - the kind
-    of pain that object-oriented programming was supposed to shield us from.
-
-    Now, how can "Class::Container" help? Using "Class::Container", each
-    class ("Parent", "Child", and "GrandChild") will declare what arguments
-    they take, and declare their relationships to the other classes
-    ("Parent" creates/contains a "Child", and "Child" creates/contains a
-    "GrandChild"). Then, when you create a "Parent" object, you can pass
-    "Parent->new()" all the parameters for all three classes, and they will
-    trickle down to the right places. Furthermore, "Parent" and "Child"
-    won't have to know anything about the parameters of its contained
-    objects. And finally, if you replace "GrandChild" with "GrandDaughter",
-    no changes to "Parent" or "Child" will likely be necessary.
-
-METHODS
-  new()
-    Any class that inherits from "Class::Container" should also inherit its
-    "new()" method. You can do this simply by omitting it in your class, or
-    by calling "SUPER::new(@_)" as indicated in the SYNOPSIS. The "new()"
-    method ensures that the proper parameters and objects are passed to the
-    proper constructor methods.
-
-    At the moment, the only possible constructor method is "new()". If you
-    need to create other constructor methods, they should call "new()"
-    internally.
-
-  __PACKAGE__->contained_objects()
-    This class method is used to register what other objects, if any, a
-    given class creates. It is called with a hash whose keys are the
-    parameter names that the contained class's constructor accepts, and
-    whose values are the default class to create an object of.
-
-    For example, consider the "HTML::Mason::Compiler" class, which uses the
-    following code:
-
-      __PACKAGE__->contained_objects( lexer => 'HTML::Mason::Lexer' );
-
-    This defines the relationship between the "HTML::Mason::Compiler" class
-    and the class it creates to go in its "lexer" slot. The
-    "HTML::Mason::Compiler" class "has a" "lexer". The
-    "HTML::Mason::Compiler->new()" method will accept a "lexer" parameter
-    and, if no such parameter is given, an object of the
-    "HTML::Mason::Lexer" class should be constructed.
-
-    We implement a bit of magic here, so that if
-    "HTML::Mason::Compiler->new()" is called with a "lexer_class" parameter,
-    it will load the indicated class (presumably a subclass of
-    "HTML::Mason::Lexer"), instantiate a new object of that class, and use
-    it for the Compiler's "lexer" object. We're also smart enough to notice
-    if parameters given to "HTML::Mason::Compiler->new()" actually should go
-    to the "lexer" contained object, and it will make sure that they get
-    passed along.
-
-    Furthermore, an object may be declared as "delayed", which means that an
-    object *won't* be created when its containing class is constructed.
-    Instead, these objects will be created "on demand", potentially more
-    than once. The constructors will still enjoy the automatic passing of
-    parameters to the correct class. See the "create_delayed_object()" for
-    more.
-
-    To declare an object as "delayed", call this method like this:
-
-      __PACKAGE__->contained_objects( train => { class => 'Big::Train',
-                                                 delayed => 1 } );
-
-  __PACKAGE__->valid_params(...)
-    Specifies the parameters accepted by this class's "new()" method as a
-    set of key/value pairs. Any parameters accepted by a superclass/subclass
-    will also be accepted, as well as any parameters accepted by contained
-    objects. This method is a get/set accessor method, so it returns a
-    reference to a hash of these key/value pairs. As a special case, if you
-    wish to set the valid params to an empty set and you previously set it
-    to a non-empty set, you may call "__PACKAGE__->valid_params(undef)".
-
-    "valid_params()" is called with a hash that contains parameter names as
-    its keys and validation specifications as values. This validation
-    specification is largely the same as that used by the "Params::Validate"
-    module, because we use "Params::Validate" internally.
-
-    As an example, consider the following situation:
-
-      use Class::Container;
-      use Params::Validate qw(:types);
-      __PACKAGE__->valid_params
-          (
-           allow_globals        => { type => ARRAYREF, parse => 'list',   
default => [] },
-           default_escape_flags => { type => SCALAR,   parse => 'string', 
default => '' },
-           lexer                => { isa => 'HTML::Mason::Lexer' },
-           preprocess           => { type => CODEREF,  parse => 'code',   
optional => 1 },
-           postprocess_perl     => { type => CODEREF,  parse => 'code',   
optional => 1 },
-           postprocess_text     => { type => CODEREF,  parse => 'code',   
optional => 1 },
-          );
-  
-      __PACKAGE__->contained_objects( lexer => 'HTML::Mason::Lexer' );
-
-    The "type", "default", and "optional" parameters are part of the
-    validation specification used by "Params::Validate". The various
-    constants used, "ARRAYREF", "SCALAR", etc. are all exported by
-    "Params::Validate". This means that any of these six parameter names,
-    plus the "lexer_class" parameter (because of the "contained_objects()"
-    specification given earlier), are valid arguments to the Compiler's
-    "new()" method.
-
-    Note that there are also some "parse" attributes declared. These have
-    nothing to do with "Class::Container" or "Params::Validate" - any extra
-    entries like this are simply ignored, so you are free to put extra
-    information in the specifications as long as it doesn't overlap with
-    what "Class::Container" or "Params::Validate" are looking for.
-
-  $self->create_delayed_object()
-    If a contained object was declared with "delayed => 1", use this method
-    to create an instance of the object. Note that this is an object method,
-    not a class method:
-
-       my $foo =       $self->create_delayed_object('foo', ...); # YES!
-       my $foo = __PACKAGE__->create_delayed_object('foo', ...); # NO!
-
-    The first argument should be a key passed to the "contained_objects()"
-    method. Any additional arguments will be passed to the "new()" method of
-    the object being created, overriding any parameters previously passed to
-    the container class constructor. (Could I possibly be more alliterative?
-    Veni, vedi, vici.)
-
-  $self->delayed_object_params($name, [params])
-    Allows you to adjust the parameters that will be used to create any
-    delayed objects in the future. The first argument specifies the "name"
-    of the object, and any additional arguments are key-value pairs that
-    will become parameters to the delayed object.
-
-    When called with only a $name argument and no list of parameters to set,
-    returns a hash reference containing the parameters that will be passed
-    when creating objects of this type.
-
-  $self->delayed_object_class($name)
-    Returns the class that will be used when creating delayed objects of the
-    given name. Use this sparingly - in most situations you shouldn't care
-    what the class is.
-
-  __PACKAGE__->decorates()
-    Version 0.09 of Class::Container added [as yet experimental] support for
-    so-called "decorator" relationships, using the term as defined in
-    *Design Patterns* by Gamma, et al. (the Gang of Four book). To declare a
-    class as a decorator of another class, simply set @ISA to the class
-    which will be decorated, and call the decorator class's "decorates()"
-    method.
-
-    Internally, this will ensure that objects are instantiated as
-    decorators. This means that you can mix & match extra add-on
-    functionality classes much more easily.
-
-    In the current implementation, if only a single decoration is used on an
-    object, it will be instantiated as a simple subclass, thus avoiding a
-    layer of indirection.
-
-  $self->validation_spec()
-    Returns a hash reference suitable for passing to the "Params::Validate"
-    "validate" function. Does *not* include any arguments that can be passed
-    to contained objects.
-
-  $class->allowed_params(\%args)
-    Returns a hash reference of every parameter this class will accept,
-    *including* parameters it will pass on to its own contained objects. The
-    keys are the parameter names, and the values are their corresponding
-    specifications from their "valid_params()" definitions. If a parameter
-    is used by both the current object and one of its contained objects, the
-    specification returned will be from the container class, not the
-    contained.
-
-    Because the parameters accepted by "new()" can vary based on the
-    parameters *passed* to "new()", you can pass any parameters to the
-    "allowed_params()" method too, ensuring that the hash you get back is
-    accurate.
-
-  $self->container()
-    Returns the object that created you. This is remembered by storing a
-    reference to that object, so we use the "Scalar::Utils" "weakref()"
-    function to avoid persistent circular references that would cause memory
-    leaks. If you don't have "Scalar::Utils" installed, we don't make these
-    references in the first place, and calling "container()" will result in
-    a fatal error.
-
-    If you weren't created by another object via "Class::Container",
-    "container()" returns "undef".
-
-    In most cases you shouldn't care what object created you, so use this
-    method sparingly.
-
-  $object->show_containers
-  $package->show_containers
-    This method returns a string meant to describe the containment
-    relationships among classes. You should not depend on the specific
-    formatting of the string, because I may change things in a future
-    release to make it prettier.
-
-    For example, the HTML::Mason code returns the following when you do
-    "$interp->show_containers":
-
-     HTML::Mason::Interp=HASH(0x238944)
-       resolver -> HTML::Mason::Resolver::File
-       compiler -> HTML::Mason::Compiler::ToObject
-         lexer -> HTML::Mason::Lexer
-       request -> HTML::Mason::Request (delayed)
-         buffer -> HTML::Mason::Buffer (delayed)
-
-    Currently, containment is shown by indentation, so the Interp object
-    contains a resolver and a compiler, and a delayed request (or several
-    delayed requests). The compiler contains a lexer, and each request
-    contains a delayed buffer (or several delayed buffers).
-
-  $object->dump_parameters
-    Returns a hash reference containing a set of parameters that should be
-    sufficient to re-create the given object using its class's "new()"
-    method. This is done by fetching the current value for each declared
-    parameter (i.e. looking in $object for hash entries of the same name),
-    then recursing through all contained objects and doing the same.
-
-    A few words of caution here. First, the dumped parameters represent the
-    *current* state of the object, not the state when it was originally
-    created.
-
-    Second, a class's declared parameters may not correspond exactly to its
-    data members, so it might not be possible to recover the former from the
-    latter. If it's possible but requires some manual fudging, you can
-    override this method in your class, something like so:
-
-     sub dump_parameters {
-       my $self = shift;
-       my $dump = $self->SUPER::dump_parameters();
-   
-       # Perform fudgery
-       $dump->{incoming} = $self->{_private};
-       delete $dump->{superfluous};
-       return $dump;
-     }
-
-SEE ALSO
-    Params::Validate
-
-AUTHOR
-    Originally by Ken Williams <[email protected]> and Dave Rolsky
-    <[email protected]> for the HTML::Mason project. Important feedback
-    contributed by Jonathan Swartz <[email protected]>. Extended by Ken
-    Williams for the AI::Categorizer project.
-
-    Currently maintained by Ken Williams.
-
-COPYRIGHT
-    This program is free software; you can redistribute it and/or modify it
-    under the same terms as Perl itself.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Class-Container-0.12/SIGNATURE 
new/Class-Container-0.13/SIGNATURE
--- old/Class-Container-0.12/SIGNATURE  2005-01-24 04:06:10.000000000 +0100
+++ new/Class-Container-0.13/SIGNATURE  2017-11-03 05:55:02.000000000 +0100
@@ -1,12 +1,12 @@
 This file contains message digests of all files listed in MANIFEST,
-signed via the Module::Signature module, version 0.38.
+signed via the Module::Signature module, version 0.73.
 
 To verify the content in this distribution, first make sure you have
 Module::Signature installed, then type:
 
     % cpansign -v
 
-It would check each file's integrity, as well as the signature's
+It will check each file's integrity, as well as the signature's
 validity.  If "==> Signature verified OK! <==" is not displayed,
 the distribution may already have been compromised, and you should
 not run its Makefile.PL or Build.PL.
@@ -14,21 +14,25 @@
 -----BEGIN PGP SIGNED MESSAGE-----
 Hash: SHA1
 
-SHA1 3b225b4d443775932c127fe00d5dddca58820aa6 Build.PL
-SHA1 8cd28fa1763a93ffc196226642df8c584a2adc70 Changes
-SHA1 1b386906514c738a00fcd4b1b7ba74ac1925c227 INSTALL
-SHA1 6e250a09fdb471a3dcd7b9f267d4585dc2e5de18 MANIFEST
-SHA1 976fabe5ba08d4f96ec5d764a30e3f37d46f4019 META.yml
-SHA1 48dcc0a806041eaf9d020b5305d0c4bb32898f51 Makefile.PL
-SHA1 336c070360a737f094645d80d4c82d5fd02ae973 README
-SHA1 4286abb1ee51dcfa9868ccb754ec63b4ff684ad2 lib/Class/Container.pm
-SHA1 39edf6c1802d4be568c18968ea5389965a0a6ff1 t/01-basic.t
-SHA1 8154cdf85123d748ae210fa86a58e5484cb79275 t/02-decorator.t
+SHA1 a1ba286c01e42e90f41ad222897698b1a4a4f2ac Build.PL
+SHA1 59e86d738663b3ee65ef269e1174de943b0d8d92 Changes
+SHA1 c787d88b3935853f48f6204a1d7ef463694702f5 INSTALL
+SHA1 87d1d7d8be19f13b0ee779177fa03fcca3e2b628 LICENSE
+SHA1 a35434bea6cb6de976b09fa2bacc05ecd9e6a3a7 MANIFEST
+SHA1 dd611cdd49745ae9a2fc09034014b69b48f05046 META.yml
+SHA1 cbcd8951f75b2f97add6578140cfcca486af081a Makefile.PL
+SHA1 34c04c1651dbc6a26fa785bec8b08390b5acdfc2 README
+SHA1 feac03c41fd721eda9d2865be041f66d59fecb8a cpanfile
+SHA1 b5f4a8e152959e7d391fa2508620adfddb98c21e dist.ini
+SHA1 cf40f42c3313085bf17db0b4e4f3ad071f03a705 lib/Class/Container.pm
+SHA1 a7f3e0732c4a3d45affd6a4f5e95a11c15674789 t/01-basic.t
+SHA1 64e7e9420276e05e85f05b1b17b85d55a630a7a9 t/02-decorator.t
+SHA1 fa45d6e6ab1cd421349dea4ef527bfd5cdc8a09e t/author-critic.t
 SHA1 56e282a6a8379f3a3a42d5f78cd1682ab1cfc68b t/classes.pl
 -----BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.2.2 (Darwin)
+Comment: GPGTools - http://gpgtools.org
 
-iD8DBQFB9GYigrvMBLfvlHYRAry6AJ0R722RV5sESZlMjvcID/M6ms/7HwCdGHfI
-DhsUAU9sOA7srQVl1uZMJ90=
-=oCuW
+iF0EARECAB0WIQSty9sFtA6yoqVVVGKCu8wEt++UdgUCWfv2ogAKCRCCu8wEt++U
+dtZDAKCm0N97e/ebIvg7dmDcE+kO6l+fJwCfYbC+xwjbS7NzKBJOmq7nLJwi1eA=
+=zO1B
 -----END PGP SIGNATURE-----
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Class-Container-0.12/cpanfile 
new/Class-Container-0.13/cpanfile
--- old/Class-Container-0.12/cpanfile   1970-01-01 01:00:00.000000000 +0100
+++ new/Class-Container-0.13/cpanfile   2017-11-03 05:55:02.000000000 +0100
@@ -0,0 +1,20 @@
+requires "B::Deparse" => "0";
+requires "Carp" => "0";
+requires "Params::Validate" => "0";
+requires "Scalar::Util" => "0";
+requires "strict" => "0";
+requires "vars" => "0";
+
+on 'build' => sub {
+  requires "Module::Build" => "0.3601";
+};
+
+on 'test' => sub {
+  requires "File::Spec" => "0";
+  requires "Test" => "0";
+};
+
+on 'configure' => sub {
+  requires "ExtUtils::MakeMaker" => "6.30";
+  requires "Module::Build" => "0.3601";
+};
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Class-Container-0.12/dist.ini 
new/Class-Container-0.13/dist.ini
--- old/Class-Container-0.12/dist.ini   1970-01-01 01:00:00.000000000 +0100
+++ new/Class-Container-0.13/dist.ini   2017-11-03 05:55:02.000000000 +0100
@@ -0,0 +1,50 @@
+name    = Class-Container
+version = 0.13
+author  = Ken Williams <[email protected]>
+license = Perl_5
+copyright_holder = Ken Williams
+
+[GatherDir]
+  exclude_filename = cpanfile
+[PruneCruft]
+[ManifestSkip]
+[MetaYAML]
+[License]
+[Readme]
+[ExtraTests]
+[ExecDir]
+[ShareDir]
+[MakeMaker]
+[Manifest]
+[TestRelease]
+[ConfirmRelease]
+[UploadToCPAN]
+
+
+[PkgVersion]
+[PodVersion]
+
+[PruneFiles]
+match = ~$
+match = ^Class-Container
+
+[Signature]
+[Bugtracker]
+web = http://github.com/kenahoo/%s/issues
+[Repository]
+[ModuleBuild]
+[InstallGuide]
+
+[Test::Perl::Critic]
+;[PodCoverageTests]
+
+[AutoPrereqs]
+skip = ^English$
+
+[Git::Tag]
+
+;; TravisCI integration, see
+;; 
http://blogs.perl.org/users/neilb/2014/08/try-travis-ci-with-your-cpan-distributions.html
+[CPANFile]
+[CopyFilesFromBuild]
+copy = cpanfile
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Class-Container-0.12/lib/Class/Container.pm 
new/Class-Container-0.13/lib/Class/Container.pm
--- old/Class-Container-0.12/lib/Class/Container.pm     2005-01-24 
04:06:02.000000000 +0100
+++ new/Class-Container-0.13/lib/Class/Container.pm     2017-11-03 
05:55:02.000000000 +0100
@@ -1,7 +1,8 @@
+use strict;
 package Class::Container;
-
-$VERSION = '0.12';
-$VERSION = eval $VERSION if $VERSION =~ /_/;
+{
+  $Class::Container::VERSION = '0.13';
+}
 
 my $HAVE_WEAKEN;
 BEGIN {
@@ -14,7 +15,6 @@
   *weaken = sub {} unless defined &weaken;
 }
 
-use strict;
 use Carp;
 
 # The create_contained_objects() method lets one object
@@ -224,7 +224,7 @@
 
 sub _decorator_AUTOLOAD {
   my $self = shift;
-  no strict 'vars';
+  use vars qw($AUTOLOAD);
   my ($method) = $AUTOLOAD =~ /([^:]+)$/;
   return if $method eq 'DESTROY';
   die qq{Can't locate object method "$method" via package $self} unless 
ref($self);
@@ -239,7 +239,7 @@
   return $self->SUPER::can($method) if $self->SUPER::can($method);
   if (ref $self) {
     return $self->{_decorates}->can($method) if $self->{_decorates};
-    return undef;
+    return;
   } else {
     return $DECORATEES{$self}->can($method);
   }
@@ -248,7 +248,7 @@
 sub decorates {
   my ($class, $super) = @_;
   
-  no strict 'refs';
+  no strict 'refs';  ## no critic
   $super ||= ${$class . '::ISA'}[0];
   
   # Pass through unknown method invocations
@@ -421,8 +421,8 @@
     
     unless ( eval { $module->can('new') } )
     {
-       no strict 'refs';
-       eval "use $module";
+       no strict 'refs';   ## no critic
+       eval "use $module"; ## no critic
        croak $@ if $@;
     }
 }
@@ -480,7 +480,7 @@
 
   my %out;
   
-  no strict 'refs';
+  no strict 'refs';  ## no critic
   foreach my $superclass (@{ "${class}::ISA" }) {
     next unless $superclass->isa(__PACKAGE__);
     my $superparams = $superclass->_iterate_ISA($look_in, $cache_in, $add);
@@ -511,6 +511,10 @@
 
 Class::Container - Glues object frameworks together transparently
 
+=head1 VERSION
+
+version 0.13
+
 =head1 SYNOPSIS
 
  package Car;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Class-Container-0.12/t/01-basic.t 
new/Class-Container-0.13/t/01-basic.t
--- old/Class-Container-0.12/t/01-basic.t       2005-01-24 04:06:02.000000000 
+0100
+++ new/Class-Container-0.13/t/01-basic.t       2017-11-03 05:55:02.000000000 
+0100
@@ -12,7 +12,7 @@
 use Class::Container;
 use Params::Validate qw(:types);
 use File::Spec;
-require File::Spec->catfile('t', 'classes.pl');
+require File::Spec->rel2abs(File::Spec->catfile('t', 'classes.pl'));
 
 my $HAVE_WEAKEN = 0 + exists $INC{'Scalar/Util.pm'};
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Class-Container-0.12/t/02-decorator.t 
new/Class-Container-0.13/t/02-decorator.t
--- old/Class-Container-0.12/t/02-decorator.t   2005-01-24 04:06:02.000000000 
+0100
+++ new/Class-Container-0.13/t/02-decorator.t   2017-11-03 05:55:02.000000000 
+0100
@@ -6,7 +6,7 @@
 use Class::Container;
 use Params::Validate qw(:types);
 use File::Spec;
-require File::Spec->catfile('t', 'classes.pl');
+require File::Spec->rel2abs(File::Spec->catfile('t', 'classes.pl'));
 
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Class-Container-0.12/t/author-critic.t 
new/Class-Container-0.13/t/author-critic.t
--- old/Class-Container-0.12/t/author-critic.t  1970-01-01 01:00:00.000000000 
+0100
+++ new/Class-Container-0.13/t/author-critic.t  2017-11-03 05:55:02.000000000 
+0100
@@ -0,0 +1,20 @@
+#!perl
+
+BEGIN {
+  unless ($ENV{AUTHOR_TESTING}) {
+    require Test::More;
+    Test::More::plan(skip_all => 'these tests are for testing by the author');
+  }
+}
+
+
+use strict;
+use warnings;
+
+use Test::More;
+use English qw(-no_match_vars);
+
+eval "use Test::Perl::Critic";
+plan skip_all => 'Test::Perl::Critic required to criticise code' if $@;
+Test::Perl::Critic->import( -profile => "perlcritic.rc" ) if -e 
"perlcritic.rc";
+all_critic_ok();

++++++ cpanspec.yml ++++++
---
#description_paragraphs: 3
#description: |-
#  override description from CPAN
#summary: override summary from CPAN
#no_testing: broken upstream
#sources:
#  - source1
#  - source2
#patches:
#  foo.patch: -p1
#  bar.patch:
#preamble: |-
# BuildRequires:  gcc-c++
#post_prep: |-
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s,  *,,g'`
# sed -i -e "s,hunspell-X,$hunspell," t/00-prereq.t Makefile.PL 
#post_build: |-
# rm unused.files
#post_install: |-
# sed on %{name}.files
#license: SUSE-NonFree
#skip_noarch: 1
#custom_build: |-
#./Build build flags=%{?_smp_mflags} --myflag
#custom_test: |-
#startserver && make test
#ignore_requires: Bizarre::Module

Reply via email to