[Bast-commits] r5293 - in trunk/Devel-REPL: . lib/Devel
oliver at dev.catalyst.perl.org
oliver at dev.catalyst.perl.org
Thu Jan 8 22:16:45 GMT 2009
Author: oliver
Date: 2009-01-08 22:16:45 +0000 (Thu, 08 Jan 2009)
New Revision: 5293
Added:
trunk/Devel-REPL/MANIFEST.SKIP
Removed:
trunk/Devel-REPL/INSTALL
trunk/Devel-REPL/MANIFEST
Modified:
trunk/Devel-REPL/Changes
trunk/Devel-REPL/Makefile.PL
trunk/Devel-REPL/lib/Devel/REPL.pm
Log:
Couple of mistakes in the manifest which was last committed, fixed
Modified: trunk/Devel-REPL/Changes
===================================================================
--- trunk/Devel-REPL/Changes 2009-01-08 20:51:39 UTC (rev 5292)
+++ trunk/Devel-REPL/Changes 2009-01-08 22:16:45 UTC (rev 5293)
@@ -1,3 +1,5 @@
+1.3.1
+ - Fix brokenness in the distribution manifest
1.3.0
- OutputCache: If sub _ is already defined, then warn about it (once) and refuse to overwrite it
- Turn MultiLine::PPI's needs_continuation into a method line_needs_continuation
Deleted: trunk/Devel-REPL/INSTALL
===================================================================
--- trunk/Devel-REPL/INSTALL 2009-01-08 20:51:39 UTC (rev 5292)
+++ trunk/Devel-REPL/INSTALL 2009-01-08 22:16:45 UTC (rev 5293)
@@ -1,14 +0,0 @@
-WHAT IS THIS?
-
-This is Devel::REPL, an interactive Perl shell.
-Please see the README that comes with this distribution.
-
-HOW DO I INSTALL IT?
-
-To install this module, cd to the directory that contains this README
-file and type the following:
-
- perl Makefile.PL
- make
- make test
- make install
Deleted: trunk/Devel-REPL/MANIFEST
===================================================================
--- trunk/Devel-REPL/MANIFEST 2009-01-08 20:51:39 UTC (rev 5292)
+++ trunk/Devel-REPL/MANIFEST 2009-01-08 22:16:45 UTC (rev 5293)
@@ -1,56 +0,0 @@
-Changes
-examples/dbic_project_profile.pl
-inc/Module/AutoInstall.pm
-inc/Module/Install.pm
-inc/Module/Install/AutoInstall.pm
-inc/Module/Install/Base.pm
-inc/Module/Install/Can.pm
-inc/Module/Install/Fetch.pm
-inc/Module/Install/Include.pm
-inc/Module/Install/Makefile.pm
-inc/Module/Install/Metadata.pm
-inc/Module/Install/Win32.pm
-inc/Module/Install/WriteAll.pm
-INSTALL
-lib/Devel/REPL.pm
-lib/Devel/REPL/Error.pm
-lib/Devel/REPL/Meta/Plugin.pm
-lib/Devel/REPL/Plugin.pm
-lib/Devel/REPL/Plugin/B/Concise.pm
-lib/Devel/REPL/Plugin/Colors.pm
-lib/Devel/REPL/Plugin/Commands.pm
-lib/Devel/REPL/Plugin/Completion.pm
-lib/Devel/REPL/Plugin/CompletionDriver/Globals.pm
-lib/Devel/REPL/Plugin/CompletionDriver/INC.pm
-lib/Devel/REPL/Plugin/CompletionDriver/Keywords.pm
-lib/Devel/REPL/Plugin/CompletionDriver/LexEnv.pm
-lib/Devel/REPL/Plugin/CompletionDriver/Methods.pm
-lib/Devel/REPL/Plugin/CompletionDriver/Turtles.pm
-lib/Devel/REPL/Plugin/DDS.pm
-lib/Devel/REPL/Plugin/DumpHistory.pm
-lib/Devel/REPL/Plugin/FancyPrompt.pm
-lib/Devel/REPL/Plugin/FindVariable.pm
-lib/Devel/REPL/Plugin/History.pm
-lib/Devel/REPL/Plugin/Interrupt.pm
-lib/Devel/REPL/Plugin/LexEnv.pm
-lib/Devel/REPL/Plugin/MultiLine/PPI.pm
-lib/Devel/REPL/Plugin/NewlineHack.pm
-lib/Devel/REPL/Plugin/Nopaste.pm
-lib/Devel/REPL/Plugin/OutputCache.pm
-lib/Devel/REPL/Plugin/Packages.pm
-lib/Devel/REPL/Plugin/Peek.pm
-lib/Devel/REPL/Plugin/PPI.pm
-lib/Devel/REPL/Plugin/ReadLineHistory.pm
-lib/Devel/REPL/Plugin/Refresh.pm
-lib/Devel/REPL/Plugin/ShowClass.pm
-lib/Devel/REPL/Plugin/Timing.pm
-lib/Devel/REPL/Plugin/Turtles.pm
-lib/Devel/REPL/Profile.pm
-lib/Devel/REPL/Profile/Default.pm
-lib/Devel/REPL/Script.pm
-Makefile.PL
-MANIFEST This list of files
-META.yml
-README
-script/re.pl
-t/load_core.t
Copied: trunk/Devel-REPL/MANIFEST.SKIP (from rev 5242, trunk/Devel-REPL/MANIFEST.SKIP)
===================================================================
--- trunk/Devel-REPL/MANIFEST.SKIP (rev 0)
+++ trunk/Devel-REPL/MANIFEST.SKIP 2009-01-08 22:16:45 UTC (rev 5293)
@@ -0,0 +1 @@
+^(?!script/|examples/|lib/|inc/|t/|Makefile.PL$|README$|MANIFEST$|Changes$|META.yml$)
Modified: trunk/Devel-REPL/Makefile.PL
===================================================================
--- trunk/Devel-REPL/Makefile.PL 2009-01-08 20:51:39 UTC (rev 5292)
+++ trunk/Devel-REPL/Makefile.PL 2009-01-08 22:16:45 UTC (rev 5293)
@@ -20,6 +20,11 @@
requires 'Task::Weaken';
requires 'App::Nopaste';
+# core
+requires 'File::Spec';
+requires 'Term::ReadLine';
+requires 'Term::ANSIColor';
+
test_requires 'Test::More';
auto_install;
Modified: trunk/Devel-REPL/lib/Devel/REPL.pm
===================================================================
--- trunk/Devel-REPL/lib/Devel/REPL.pm 2009-01-08 20:51:39 UTC (rev 5292)
+++ trunk/Devel-REPL/lib/Devel/REPL.pm 2009-01-08 22:16:45 UTC (rev 5293)
@@ -5,7 +5,7 @@
use namespace::clean -except => [ 'meta' ];
use 5.008001; # backwards compat, doesn't warn like 5.8.1
-our $VERSION = '1.003000'; # 1.3.0
+our $VERSION = '1.003001'; # 1.3.1
with 'MooseX::Object::Pluggable';
More information about the Bast-commits
mailing list