r41507 - in /branches/upstream/libcatalyst-model-adaptor-perl/current: Changes META.yml Makefile.PL lib/Catalyst/Helper/Model/Adaptor.pm lib/Catalyst/Model/Adaptor.pm lib/Catalyst/Model/Adaptor/Base.pm

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sat Aug 8 05:54:02 UTC 2009


Author: jawnsy-guest
Date: Sat Aug  8 05:53:55 2009
New Revision: 41507

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=41507
Log:
[svn-upgrade] Integrating new upstream version, libcatalyst-model-adaptor-perl (0.05)

Modified:
    branches/upstream/libcatalyst-model-adaptor-perl/current/Changes
    branches/upstream/libcatalyst-model-adaptor-perl/current/META.yml
    branches/upstream/libcatalyst-model-adaptor-perl/current/Makefile.PL
    branches/upstream/libcatalyst-model-adaptor-perl/current/lib/Catalyst/Helper/Model/Adaptor.pm
    branches/upstream/libcatalyst-model-adaptor-perl/current/lib/Catalyst/Model/Adaptor.pm
    branches/upstream/libcatalyst-model-adaptor-perl/current/lib/Catalyst/Model/Adaptor/Base.pm

Modified: branches/upstream/libcatalyst-model-adaptor-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcatalyst-model-adaptor-perl/current/Changes?rev=41507&op=diff
==============================================================================
--- branches/upstream/libcatalyst-model-adaptor-perl/current/Changes (original)
+++ branches/upstream/libcatalyst-model-adaptor-perl/current/Changes Sat Aug  8 05:53:55 2009
@@ -1,4 +1,9 @@
 Change history for Catalyst::Model::Adaptor
+
+0.05   7 August 2009
+       - Fix a minor documentation problem. Reported by Eric Prestemon.
+         (Closes RT#48487)
+       - Switch from Class::C3 to MRO::Compat.
 
 0.04   16 July 2008
        - If no arguments are supplied, then construct new objects with {}

Modified: branches/upstream/libcatalyst-model-adaptor-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcatalyst-model-adaptor-perl/current/META.yml?rev=41507&op=diff
==============================================================================
--- branches/upstream/libcatalyst-model-adaptor-perl/current/META.yml (original)
+++ branches/upstream/libcatalyst-model-adaptor-perl/current/META.yml Sat Aug  8 05:53:55 2009
@@ -21,8 +21,7 @@
     - inc
     - t
 requires:
-  Class::C3: 0
+  MRO::Compat: 0
 resources:
   license: http://dev.perl.org/licenses/
-  repository: http://github.com/jrockway/catalyst-model-adaptor
-version: 0.04
+version: 0.05

Modified: branches/upstream/libcatalyst-model-adaptor-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcatalyst-model-adaptor-perl/current/Makefile.PL?rev=41507&op=diff
==============================================================================
--- branches/upstream/libcatalyst-model-adaptor-perl/current/Makefile.PL (original)
+++ branches/upstream/libcatalyst-model-adaptor-perl/current/Makefile.PL Sat Aug  8 05:53:55 2009
@@ -3,12 +3,10 @@
 name 'Catalyst-Model-Adaptor';
 all_from 'lib/Catalyst/Model/Adaptor.pm';
 
-requires 'Class::C3';
+requires 'MRO::Compat';
 
 build_requires 'Catalyst::Runtime';
 build_requires 'Test::More';
 build_requires 'ok';
 
-repository 'http://github.com/jrockway/catalyst-model-adaptor';
-
 WriteAll();

Modified: branches/upstream/libcatalyst-model-adaptor-perl/current/lib/Catalyst/Helper/Model/Adaptor.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcatalyst-model-adaptor-perl/current/lib/Catalyst/Helper/Model/Adaptor.pm?rev=41507&op=diff
==============================================================================
--- branches/upstream/libcatalyst-model-adaptor-perl/current/lib/Catalyst/Helper/Model/Adaptor.pm (original)
+++ branches/upstream/libcatalyst-model-adaptor-perl/current/lib/Catalyst/Helper/Model/Adaptor.pm Sat Aug  8 05:53:55 2009
@@ -10,7 +10,7 @@
 
 Running:
 
-    catalyst.pl model SomeClass Adaptor MyApp::Backend::SomeClass create
+    ./script/myapp_create.pl model SomeClass Adaptor MyApp::Backend::SomeClass create
 
 Will create C<YourApp::Model::SomeClass> that looks like:
 
@@ -30,7 +30,7 @@
 
 =head1 ARGUMENTS
 
-   catalyst.pl model <model_name> Adaptor <class> [<constructor>]
+   ./script/myapp_create.pl model <model_name> Adaptor <class> [<constructor>]
 
 You need to sepecify the C<model_name> (the name of the model), and
 C<class>, the class being adapted.  If C<< $class->new >> isn't going

Modified: branches/upstream/libcatalyst-model-adaptor-perl/current/lib/Catalyst/Model/Adaptor.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcatalyst-model-adaptor-perl/current/lib/Catalyst/Model/Adaptor.pm?rev=41507&op=diff
==============================================================================
--- branches/upstream/libcatalyst-model-adaptor-perl/current/lib/Catalyst/Model/Adaptor.pm (original)
+++ branches/upstream/libcatalyst-model-adaptor-perl/current/lib/Catalyst/Model/Adaptor.pm Sat Aug  8 05:53:55 2009
@@ -3,7 +3,7 @@
 use warnings;
 use base 'Catalyst::Model::Adaptor::Base';
 
-our $VERSION = '0.04';
+our $VERSION = '0.05';
 
 sub COMPONENT {
     my ($class, $app, @rest) = @_;

Modified: branches/upstream/libcatalyst-model-adaptor-perl/current/lib/Catalyst/Model/Adaptor/Base.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libcatalyst-model-adaptor-perl/current/lib/Catalyst/Model/Adaptor/Base.pm?rev=41507&op=diff
==============================================================================
--- branches/upstream/libcatalyst-model-adaptor-perl/current/lib/Catalyst/Model/Adaptor/Base.pm (original)
+++ branches/upstream/libcatalyst-model-adaptor-perl/current/lib/Catalyst/Model/Adaptor/Base.pm Sat Aug  8 05:53:55 2009
@@ -3,7 +3,7 @@
 use warnings;
 
 use Carp;
-use Class::C3;
+use MRO::Compat;
 
 use base 'Catalyst::Model';
 




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