perl-namespace-clean/perl-namespace-clean-use_lib.patch

193 lines
5.2 KiB
Diff

Index: namespace-clean-0.20/Makefile.PL
===================================================================
--- namespace-clean-0.20.orig/Makefile.PL
+++ namespace-clean-0.20/Makefile.PL
@@ -1,7 +1,7 @@
use strict;
use warnings;
-
+use lib '__vendorperl__';
use ExtUtils::MakeMaker 6.31;
Index: namespace-clean-0.20/t/00-basic.t
===================================================================
--- namespace-clean-0.20.orig/t/00-basic.t
+++ namespace-clean-0.20/t/00-basic.t
@@ -1,7 +1,7 @@
#!/usr/bin/env perl
use warnings;
use strict;
-
+use lib '__vendorperl__';
use FindBin;
use lib "$FindBin::Bin/lib";
use Test::More tests => 4;
Index: namespace-clean-0.20/t/01-function-wipeout.t
===================================================================
--- namespace-clean-0.20.orig/t/01-function-wipeout.t
+++ namespace-clean-0.20/t/01-function-wipeout.t
@@ -1,7 +1,7 @@
#!/usr/bin/env perl
use warnings;
use strict;
-
+use lib '__vendorperl__';
use FindBin;
use lib "$FindBin::Bin/lib";
use Test::More tests => 9;
Index: namespace-clean-0.20/t/02-inheritance.t
===================================================================
--- namespace-clean-0.20.orig/t/02-inheritance.t
+++ namespace-clean-0.20/t/02-inheritance.t
@@ -1,7 +1,7 @@
#!/usr/bin/env perl
use warnings;
use strict;
-
+use lib '__vendorperl__';
use FindBin;
use lib "$FindBin::Bin/lib";
use Test::More tests => 10;
Index: namespace-clean-0.20/t/03-unimport.t
===================================================================
--- namespace-clean-0.20.orig/t/03-unimport.t
+++ namespace-clean-0.20/t/03-unimport.t
@@ -1,7 +1,7 @@
#!/usr/bin/env perl
use warnings;
use strict;
-
+use lib '__vendorperl__';
use FindBin;
use lib "$FindBin::Bin/lib";
use Test::More tests => 6;
Index: namespace-clean-0.20/t/04-except.t
===================================================================
--- namespace-clean-0.20.orig/t/04-except.t
+++ namespace-clean-0.20/t/04-except.t
@@ -1,7 +1,7 @@
#!/usr/bin/env perl
use warnings;
use strict;
-
+use lib '__vendorperl__';
use FindBin;
use lib "$FindBin::Bin/lib";
use Test::More tests => 6;
Index: namespace-clean-0.20/t/05-explicit-cleanee.t
===================================================================
--- namespace-clean-0.20.orig/t/05-explicit-cleanee.t
+++ namespace-clean-0.20/t/05-explicit-cleanee.t
@@ -1,7 +1,7 @@
#!/usr/bin/env perl
use warnings;
use strict;
-
+use lib '__vendorperl__';
use FindBin;
use lib "$FindBin::Bin/lib";
use Test::More tests => 19;
Index: namespace-clean-0.20/t/06-other-types.t
===================================================================
--- namespace-clean-0.20.orig/t/06-other-types.t
+++ namespace-clean-0.20/t/06-other-types.t
@@ -1,7 +1,7 @@
#!/usr/bin/env perl
use warnings;
use strict;
-
+use lib '__vendorperl__';
use FindBin;
use lib "$FindBin::Bin/lib";
use Test::More tests => 17;
Index: namespace-clean-0.20/t/08-const-sub.t
===================================================================
--- namespace-clean-0.20.orig/t/08-const-sub.t
+++ namespace-clean-0.20/t/08-const-sub.t
@@ -1,6 +1,6 @@
use strict;
use warnings;
-
+use lib '__vendorperl__';
use Test::More 0.88;
use constant CONST => 123;
Index: namespace-clean-0.20/t/author-07-debugger.t
===================================================================
--- namespace-clean-0.20.orig/t/author-07-debugger.t
+++ namespace-clean-0.20/t/author-07-debugger.t
@@ -6,6 +6,7 @@ BEGIN {
}
}
+use lib '__vendorperl__';
use Test::More;
BEGIN {
Index: namespace-clean-0.20/t/release-eol.t
===================================================================
--- namespace-clean-0.20.orig/t/release-eol.t
+++ namespace-clean-0.20/t/release-eol.t
@@ -1,6 +1,7 @@
BEGIN {
unless ($ENV{RELEASE_TESTING}) {
+ use lib '__vendorperl__';
require Test::More;
Test::More::plan(skip_all => 'these tests are for release candidate testing');
}
@@ -8,6 +9,7 @@ BEGIN {
use strict;
use warnings;
+use lib '__vendorperl__';
use Test::More;
eval 'use Test::EOL';
Index: namespace-clean-0.20/t/release-no-tabs.t
===================================================================
--- namespace-clean-0.20.orig/t/release-no-tabs.t
+++ namespace-clean-0.20/t/release-no-tabs.t
@@ -1,6 +1,7 @@
BEGIN {
unless ($ENV{RELEASE_TESTING}) {
+ use lib '__vendorperl__';
require Test::More;
Test::More::plan(skip_all => 'these tests are for release candidate testing');
}
@@ -8,6 +9,7 @@ BEGIN {
use strict;
use warnings;
+use lib '__vendorperl__';
use Test::More;
eval 'use Test::NoTabs';
Index: namespace-clean-0.20/t/release-pod-coverage.t
===================================================================
--- namespace-clean-0.20.orig/t/release-pod-coverage.t
+++ namespace-clean-0.20/t/release-pod-coverage.t
@@ -8,6 +8,7 @@ BEGIN {
}
+use lib '__vendorperl__';
use Test::More;
eval "use Test::Pod::Coverage 1.08";
Index: namespace-clean-0.20/t/release-pod-syntax.t
===================================================================
--- namespace-clean-0.20.orig/t/release-pod-syntax.t
+++ namespace-clean-0.20/t/release-pod-syntax.t
@@ -7,6 +7,7 @@ BEGIN {
}
}
+use lib '__vendorperl__';
use Test::More;
eval "use Test::Pod 1.41";