Build correct meta, not including B::H::EOS
Peter Rabbitson [Wed, 3 Aug 2011 21:46:15 +0000 (23:46 +0200)]
Makefile.PL

index 561b372..d1a2d0c 100644 (file)
@@ -13,12 +13,13 @@ my %BUILD_DEPS = (
 
 my %RUN_DEPS = (
   'Package::Stash' => '0.23',
-  can_cc() ? (
-    'B::Hooks::EndOfScope' => '0.07', # when changing, also change version in namespace/clean.pm
-    is_smoker() ? ( 'Devel::Hide' => 0 ) : (),  # make sure we smoke the pure-perl version
-  ) : (),
 );
 
+my %OPT_RUN_DEPS = (can_cc() ? (
+  'B::Hooks::EndOfScope' => '0.07', # when changing, also change version in namespace/clean.pm
+  is_smoker() ? ( 'Devel::Hide' => 0 ) : (),  # make sure we smoke the pure-perl version
+) : () );
+
 my %META_BITS = (
   resources => {
     homepage => 'http://search.cpan.org/dist/namespace-clean',
@@ -46,7 +47,7 @@ my %WriteMakefileArgs = (
   'AUTHOR' => 'Robert \'phaylon\' Sedlacek <rs@474.at>, Florian Ragwitz <rafl@debian.org>, Jesse Luehrs <doy@tozt.net>',
 
   'PREREQ_PM' => {
-    %RUN_DEPS,
+    %RUN_DEPS, %OPT_RUN_DEPS,
     $mymeta_works ? () : (%BUILD_DEPS),
   },