浏览代码

add missing patch to CVS

Ralf S. Engelschall 21 年之前
父节点
当前提交
fd0dae5651
共有 1 个文件被更改,包括 59 次插入0 次删除
  1. 59 0
      perl-util/perl-util.patch

+ 59 - 0
perl-util/perl-util.patch

@@ -0,0 +1,59 @@
+Index: Devel-StackTrace-1.10/Build.PL
+--- Devel-StackTrace-1.10/Build.PL.orig	2004-03-10 22:24:09.000000000 +0100
++++ Devel-StackTrace-1.10/Build.PL	2004-03-17 08:43:17.000000000 +0100
+@@ -1,14 +0,0 @@
+-use strict;
+-
+-use Module::Build;
+-
+-my $build =
+-    Module::Build->new( module_name => 'Devel::StackTrace',
+-                        license     => 'perl',
+-                        requires    => { 'Test::More' => '0.46'
+-                                       },
+-                        sign        => 1,
+-                        create_makefile_pl => 'passthrough',
+-                      );
+-
+-$build->create_build_script;
+Index: Devel-StackTrace-1.10/Makefile.PL
+--- Devel-StackTrace-1.10/Makefile.PL.orig	2004-03-10 22:24:09.000000000 +0100
++++ Devel-StackTrace-1.10/Makefile.PL	2004-03-17 08:42:56.000000000 +0100
+@@ -1,29 +1,8 @@
+-# Note: this file was auto-generated by Module::Build::Compat version 0.03
+-    
+-    unless (eval "use Module::Build::Compat 0.02; 1" ) {
+-      print "This module requires Module::Build to install itself.\n";
+-      
+-      require ExtUtils::MakeMaker;
+-      my $yn = ExtUtils::MakeMaker::prompt
+-	('  Install Module::Build now from CPAN?', 'y');
+-      
+-      unless ($yn =~ /^y/i) {
+-	die " *** Cannot install without Module::Build.  Exiting ...\n";
+-      }
+-      
+-      require Cwd;
+-      require File::Spec;
+-      require CPAN;
+-      
+-      # Save this 'cause CPAN will chdir all over the place.
+-      my $cwd = Cwd::cwd();
+-      my $makefile = File::Spec->rel2abs($0);
+-      
+-      CPAN::Shell->install('Module::Build::Compat')
+-	or die " *** Cannot install without Module::Build.  Exiting ...\n";
+-      
+-      chdir $cwd or die "Cannot chdir() back to $cwd: $!";
+-      exec $^X, $makefile, @ARGV;  # Redo now that we have Module::Build
+-    }
+-    Module::Build::Compat->run_build_pl(args => \@ARGV);
+-    Module::Build::Compat->write_makefile(build_class => 'Module::Build');
++use 5.006;
++use ExtUtils::MakeMaker;
++WriteMakefile(
++    NAME          => 'Devel::StackTrace',
++    VERSION_FROM  => 'lib/Devel/StackTrace.pm',
++    PREREQ_PM     => {  Test::More => "0.46", },
++    ABSTRACT_FROM => 'lib/Devel/StackTrace.pm',
++);