Skip to content

Commit

Permalink
updated Makefile.PL deps and added MANIFEST.skip
Browse files Browse the repository at this point in the history
  • Loading branch information
gravattj committed Dec 5, 2018
1 parent f963e16 commit 2d24716
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 28 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Revision history for Backup-EZ

0.35 - updated Makefile.PL deps
- added MANIFEST.skip
- general cleanup
0.31 - bug fix for previous release

0.30 - added feature to augment backup dir options
Expand Down
61 changes: 34 additions & 27 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -7,33 +7,40 @@ use File::ShareDir::Install;
install_share dist => 'share';

WriteMakefile(
NAME => 'Backup::EZ',
AUTHOR => q{John Gravatt <john@gravatt.org>},
VERSION_FROM => 'lib/Backup/EZ.pm',
ABSTRACT_FROM => 'lib/Backup/EZ.pm',
LICENSE => 'Artistic_2_0',
EXE_FILES => ['bin/ezbackup'],
PL_FILES => {},
MIN_PERL_VERSION => 5.006,
CONFIGURE_REQUIRES => { 'ExtUtils::MakeMaker' => 0, },
PREREQ_PM => {
'Config::General' => 0,
'File::Slurp' => 0,
'Data::UUID' => 0,
'Unix::Syslog' => 0,
'Data::Printer' => 0,
'File::ShareDir' => 0,
'File::ShareDir::Install' => 0,
'Devel::Confess' => 0,
'Data::Dumper' => 0,
'File::RandomGenerator' => 0,
},
BUILD_REQUIRES => {
'Test::More' => 0,
'File::ShareDir::Install' => 0
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Backup-EZ-*' },
NAME => 'Backup::EZ',
AUTHOR => q{John Gravatt <john@gravatt.org>},
VERSION_FROM => 'lib/Backup/EZ.pm',
ABSTRACT_FROM => 'lib/Backup/EZ.pm',
LICENSE => 'perl',
EXE_FILES => ['bin/ezbackup'],
PL_FILES => {},
MIN_PERL_VERSION => 5.006,
CONFIGURE_REQUIRES => { 'ExtUtils::MakeMaker' => 0, },
PREREQ_PM => {
'Carp' => 0,
'Config::General' => 0,
'Data::Printer' => 0,
'Data::UUID' => 0,
'Data::Dumper' => 0,
'Data::Printer' => 0,
'Devel::Confess' => 0,
'Env' => 0,
'File::RandomGenerator' => 0,
'File::ShareDir' => 0,
'File::ShareDir::Install' => 0,
'File::Slurp' => 0,
'Modern::Perl' => 0,
'Sys::Hostname' => 0,
'Time::localtime' => 0,
'Unix::Syslog' => 0,
},

BUILD_REQUIRES => {
'Test::More' => 0,
'File::ShareDir::Install' => 0
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Backup-EZ-*' },
);

package MY;
Expand Down
2 changes: 1 addition & 1 deletion lib/Backup/EZ.pm
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Version 0.34
=cut

our $VERSION = '0.34';
our $VERSION = '0.35';

=head1 SYNOPSIS
Expand Down

0 comments on commit 2d24716

Please sign in to comment.