Skip to content

Commit

Permalink
Bump minimum version because of IO::Compress::Brotli failures
Browse files Browse the repository at this point in the history
  • Loading branch information
nigelhorne committed Jun 14, 2019
1 parent 986e5ee commit 41e45d7
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 52 deletions.
3 changes: 3 additions & 0 deletions Changes
@@ -1,5 +1,8 @@
Revision history for CGI-Buffer

0.83
Bump minimum version because of IO::Compress::Brotli failures

0.82 Tue Aug 7 09:45:13 EDT 2018
Fix RT#123101
Optmise <center>
Expand Down
104 changes: 52 additions & 52 deletions Makefile.PL
Expand Up @@ -3,57 +3,57 @@ use warnings;
use ExtUtils::MakeMaker 6.64; # 6.64 for TEST_REQUIRES

WriteMakefile(
NAME => 'CGI::Buffer',
AUTHOR => q{Nigel Horne <njh@bandsman.co.uk>},
VERSION_FROM => 'lib/CGI/Buffer.pm',
ABSTRACT_FROM => 'lib/CGI/Buffer.pm',
((defined($ExtUtils::MakeMaker::VERSION) &&
($ExtUtils::MakeMaker::VERSION >= 6.3002))
? ('LICENSE'=> 'GPL')
: ()),
PL_FILES => {},
TEST_REQUIRES => {
'Test::Most' => 0,
# 'Test::NoWarnings' => 0,
'Test::TempDir::Tiny' => 0,
'DateTime' => 0,
# 'Test::Kwalitee' => 0,
'WWW::RT::CPAN' => 0
},
PREREQ_PM => {
'Carp' => 0,
'CGI::Info' => 0.51,
'CSS::Packer' => 0,
'Compress::Zlib' => 0,
'IO::Compress::Brotli' => 0.003,
'Digest::MD5' => 0,
'Encode' => 0,
# 'HTML::Clean' => 0.8,
'HTML::Packer' => 1.000,
'IO::String' => 0,
'JavaScript::Packer' => 2.00,
'HTTP::Date' => 0,
'File::Spec' => 0,
'Time::localtime' => 0,
'HTML::Lint' => 0,
'Storable' => 0,
'HTTP::Status' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'CGI-Buffer-*' },
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'git://github.com/nigelhorne/CGI-Buffer.git',
web => 'https://github.com/nigelhorne/CGI-Buffer',
},
bugtracker => {
web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=CGI-Buffer',
mailto => 'bug-CGI-Buffer@rt.cpan.org'
}
NAME => 'CGI::Buffer',
AUTHOR => q{Nigel Horne <njh@bandsman.co.uk>},
VERSION_FROM => 'lib/CGI/Buffer.pm',
ABSTRACT_FROM => 'lib/CGI/Buffer.pm',
((defined($ExtUtils::MakeMaker::VERSION) &&
($ExtUtils::MakeMaker::VERSION >= 6.3002))
? ('LICENSE'=> 'GPL')
: ()),
PL_FILES => {},
TEST_REQUIRES => {
'Test::Most' => 0,
# 'Test::NoWarnings' => 0,
'Test::TempDir::Tiny' => 0,
'DateTime' => 0,
# 'Test::Kwalitee' => 0,
'WWW::RT::CPAN' => 0
},
},
MIN_PERL_VERSION => '5.6.2' # Probably would work, but never tested on earlier versions than this
PREREQ_PM => {
'Carp' => 0,
'CGI::Info' => 0.51,
'CSS::Packer' => 0,
'Compress::Zlib' => 0,
'IO::Compress::Brotli' => 0.003,
'Digest::MD5' => 0,
'Encode' => 0,
# 'HTML::Clean' => 0.8,
'HTML::Packer' => 1.000,
'IO::String' => 0,
'JavaScript::Packer' => 2.00,
'HTTP::Date' => 0,
'File::Spec' => 0,
'Time::localtime' => 0,
'HTML::Lint' => 0,
'Storable' => 0,
'HTTP::Status' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'CGI-Buffer-*' },
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'git://github.com/nigelhorne/CGI-Buffer.git',
web => 'https://github.com/nigelhorne/CGI-Buffer',
},
bugtracker => {
web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=CGI-Buffer',
mailto => 'bug-CGI-Buffer@rt.cpan.org'
}
},
},
MIN_PERL_VERSION => '5.14.0', # For IO::Compress::Brotli
);
1 change: 1 addition & 0 deletions lib/CGI/Buffer.pm
@@ -1,5 +1,6 @@
package CGI::Buffer;

use 5.14.0; # For IO::Compress::Brotli
use strict;
use warnings;

Expand Down

0 comments on commit 41e45d7

Please sign in to comment.