[carton] 94/472: use Mouse

Lucas Kanashiro kanashiro-guest at moszumanska.debian.org
Fri Jul 24 00:38:36 UTC 2015


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

kanashiro-guest pushed a commit to branch master
in repository carton.

commit 12a274794fb499e5a3d140235d5907ad7a9495d7
Author: Tatsuhiko Miyagawa <miyagawa at bulknews.net>
Date:   Fri Jul 1 14:08:33 2011 -0700

    use Mouse
---
 Makefile.PL          | 1 +
 lib/Carton/Config.pm | 4 ++--
 lib/Carton/Error.pm  | 4 ++--
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/Makefile.PL b/Makefile.PL
index 8875846..4279032 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -14,6 +14,7 @@ requires 'Module::Metadata', 1.000003;
 requires 'Try::Tiny', 0.09;
 requires 'parent', 0.223;
 requires 'Config::GitLike', 1.05;
+requires 'Mouse', 0.93;
 
 install_script 'bin/carton';
 
diff --git a/lib/Carton/Config.pm b/lib/Carton/Config.pm
index 1690261..aa40391 100644
--- a/lib/Carton/Config.pm
+++ b/lib/Carton/Config.pm
@@ -2,7 +2,7 @@ package Carton::Config;
 use strict;
 use warnings;
 
-use Any::Moose;
+use Mouse;
 extends 'Config::GitLike';
 
 use File::Basename ();
@@ -42,7 +42,7 @@ sub set {
     $self->SUPER::set(%args);
 }
 
-no Any::Moose;
+no Mouse;
 __PACKAGE__->meta->make_immutable;
 
 1;
diff --git a/lib/Carton/Error.pm b/lib/Carton/Error.pm
index cd81376..23d9a0f 100644
--- a/lib/Carton/Error.pm
+++ b/lib/Carton/Error.pm
@@ -1,9 +1,9 @@
 package Carton::Error;
 use strict;
-use Any::Moose;
+use Mouse;
 
 package Carton::Error::CommandExit;
-use Any::Moose;
+use Mouse;
 extends 'Carton::Error';
 
 1;

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



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