- New upstream release 0.06 - Created git repository on github.com - Converted to Dist::Zilla - Fixed options cannot take a false value (CPAN RT#21631) - Disabled AmigaOS and Mac OS Classic tests by default because they are no longer supported by Perl itself (CPAN RT#12182) - Updated synopsis to show recommended author-only usage (CPAN RT#43948) - This release by ABRAXXA -> update source URL - LICENSE.Artistic and LICENSE.GPL no longer included upstream - Classify buildreqs by usage - Add test suite patch to retain EPEL-5 build compatibility - Drop %defattr, redundant since rpm 4.4 - Make %files list more explicit - Don't use macros for commands - Don't need to remove empty directories from the buildroot - Use DESTDIR rather than PERL_INSTALL_ROOT - Use 'make pure_install' rather than 'make install'epel9
parent
47b2311bcc
commit
033174a075
@ -1 +1 @@
|
||||
Test-Portability-Files-0.05.tar.gz
|
||||
/Test-Portability-Files-[0-9.]*.tar.gz
|
||||
|
@ -0,0 +1,55 @@
|
||||
--- Makefile.PL
|
||||
+++ Makefile.PL
|
||||
@@ -12,7 +12,7 @@ my %WriteMakefileArgs = (
|
||||
"ABSTRACT" => "Check file names portability",
|
||||
"AUTHOR" => "S\303\251bastien Aperghis-Tramoni <sebastien\@aperghis.net>, Alexander Hartmaier <abraxxa\@cpan.org>",
|
||||
"BUILD_REQUIRES" => {
|
||||
- "Test::More" => "0.98"
|
||||
+ "Test::More" => "0.47"
|
||||
},
|
||||
"CONFIGURE_REQUIRES" => {
|
||||
"ExtUtils::MakeMaker" => "6.30"
|
||||
--- t/01basic.t
|
||||
+++ t/01basic.t
|
||||
@@ -1,5 +1,5 @@
|
||||
use strict;
|
||||
-use Test::More;
|
||||
+use Test::More tests => 3;
|
||||
|
||||
require Test::Portability::Files;
|
||||
|
||||
@@ -7,5 +7,3 @@ require Test::Portability::Files;
|
||||
ok( defined \&Test::Portability::Files::options ); #01
|
||||
ok( defined \&Test::Portability::Files::run_tests ); #02
|
||||
ok( defined \&Test::Portability::Files::test_name_portability ); #03
|
||||
-
|
||||
-done_testing;
|
||||
\ No newline at end of file
|
||||
--- t/release-cpan-changes.t
|
||||
+++ t/release-cpan-changes.t
|
||||
@@ -8,8 +8,7 @@ BEGIN {
|
||||
}
|
||||
|
||||
|
||||
-use Test::More;
|
||||
+use Test::More;
|
||||
eval 'use Test::CPAN::Changes';
|
||||
plan skip_all => 'Test::CPAN::Changes required for this test' if $@;
|
||||
changes_ok();
|
||||
-done_testing();
|
||||
--- t/release-test-version.t
|
||||
+++ t/release-test-version.t
|
||||
@@ -8,7 +8,7 @@ BEGIN {
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
-use Test::More;
|
||||
+use Test::More tests => 2;
|
||||
|
||||
# generated by Dist::Zilla::Plugin::Test::Version 0.002004
|
||||
BEGIN { eval "use Test::Version; 1;" or die $@; }
|
||||
@@ -27,4 +27,3 @@ push @imports, $params
|
||||
Test::Version->import(@imports);
|
||||
|
||||
version_all_ok;
|
||||
-done_testing;
|
Loading…
Reference in new issue