1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
Description: Module::Install::DSL is gone from Module-Install as of 1.20.
Origin: vendor
Bug-Debian: https://bugs.debian.org/1040134
Author: gregor herrmann <gregoa@debian.org>
Last-Update: 2023-07-02
Forwarded: https://rt.cpan.org/Ticket/Display.html?id=148879
Bug: https://rt.cpan.org/Ticket/Display.html?id=148879
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,8 +1,10 @@
-use inc::Module::Install::DSL 1.06;
+use inc::Module::Install;
-all_from lib/Aspect.pm
-requires_from lib/Aspect.pm
-requires Task::Weaken 1.00
-test_requires Test::More 0.70
-test_requires Test::Exception 0.29
-test_requires Test::NoWarnings 0.084
+all_from 'lib/Aspect.pm';
+requires_from 'lib/Aspect.pm';
+requires 'Task::Weaken' => '1.00';
+test_requires 'Test::More' => '0.70';
+test_requires 'Test::Exception' => '0.29';
+test_requires 'Test::NoWarnings' => '0.084';
+
+WriteAll;
|