X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-REPL.git;a=blobdiff_plain;f=Makefile.PL;h=e3f142fc63f973af6f4d304d713e5deb17020398;hp=bf6a999316a93004b93e450ad170a00ddb5992c3;hb=f049111ed91d199e926de686b2a6f179a89cba18;hpb=aa8b764738156914d48d182ee0706e4c3d4e5c99 diff --git a/Makefile.PL b/Makefile.PL index bf6a999..e3f142f 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,6 +1,7 @@ use strict; use warnings; use inc::Module::Install 0.91; +use Module::Install::Repository; name 'Devel-REPL'; perl_version '5.008001'; @@ -8,6 +9,11 @@ all_from 'lib/Devel/REPL.pm'; install_script 'script/re.pl'; +# r/w: p5sagit@git.shadowcat.co.uk:Devel-REPL.git +# r/o: git://git.shadowcat.co.uk/p5sagit/Devel-REPL.git +# homepage: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Devel-REPL.git +auto_set_repository; + # core requires 'File::Spec'; requires 'Term::ReadLine'; @@ -22,6 +28,9 @@ requires 'Task::Weaken'; requires 'B::Concise'; requires 'Term::ANSIColor'; requires 'Devel::Peek'; +requires 'Module::Runtime'; + +recommends 'PPI::XS' => '0.902'; feature 'Completion plugin - extensible tab completion', -default => 1, @@ -36,7 +45,7 @@ feature 'DDC plugin - even better format results with Data::Dumper::Concise', 'Data::Dumper::Concise' => 0; feature 'INC completion driver - tab complete module names in use and require', - -default => 0, + -default => 1, 'File::Next' => 0; feature 'Interrupt plugin - traps SIGINT to kill long-running lines', @@ -44,7 +53,7 @@ feature 'Interrupt plugin - traps SIGINT to kill long-running lines', 'Sys::SigAction' => 0; feature 'Keywords completion driver - tab complete Perl keywords and operators', - -default => 0, + -default => 1, 'B::Keywords' => 0; feature 'LexEnv plugin - variables declared with "my" persist between statements', @@ -67,7 +76,8 @@ feature 'Refresh plugin - automatically reload libraries with Module::Refresh', -default => 0, 'Module::Refresh' => 0; -test_requires 'Test::More'; +test_requires 'Test::More' => '0.88'; +test_requires 'Test::Warnings'; auto_install; WriteAll;