Skip to content
This repository has been archived by the owner on May 17, 2024. It is now read-only.

Commit

Permalink
Merge pull request #3 from zakame/zakame/fix_modules_for_clean_rebuild
Browse files Browse the repository at this point in the history
Allow installing via repo
  • Loading branch information
jy-deriv committed Jun 15, 2019
2 parents f10a094 + 920f28d commit 3b72c23
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ language: perl
matrix:
fast_finish: true
perl:
- '5.24'
- '5.14'
- '5.26'
before_install:
- git config --global user.name "TravisCI"
- git config --global user.email $HOSTNAME":not-for-mail@travis-ci.org"
Expand Down
65 changes: 65 additions & 0 deletions Makefile.PL
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.012.
use strict;
use warnings;

use 5.014000;

use ExtUtils::MakeMaker 6.48;

my %WriteMakefileArgs = (
"ABSTRACT" => "...",
"AUTHOR" => "binary.com <BINARY\@cpan.org>",
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => "6.48"
},
"DISTNAME" => "DBIx-Connector-Pg",
"LICENSE" => "perl",
"MIN_PERL_VERSION" => "5.014000",
"NAME" => "DBIx::Connector::Pg",
"PREREQ_PM" => {
"DBD::Pg" => 0,
"DBIx::Connector" => "0.56",
"indirect" => "0.37"
},
"TEST_REQUIRES" => {
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Test::CheckDeps" => "0.010",
"Test::Exception" => 0,
"Test::More" => "0.98",
"Test::PostgreSQL" => 0
},
"VERSION" => "0.001",
"test" => {
"TESTS" => "t/*.t"
}
);


my %FallbackPrereqs = (
"DBD::Pg" => 0,
"DBIx::Connector" => "0.56",
"ExtUtils::MakeMaker" => 0,
"File::Spec" => 0,
"IO::Handle" => 0,
"IPC::Open3" => 0,
"Test::CheckDeps" => "0.010",
"Test::Exception" => 0,
"Test::More" => "0.98",
"Test::PostgreSQL" => 0,
"indirect" => "0.37"
);


unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
delete $WriteMakefileArgs{TEST_REQUIRES};
delete $WriteMakefileArgs{BUILD_REQUIRES};
$WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}

delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
unless eval { ExtUtils::MakeMaker->VERSION(6.52) };

WriteMakefile(%WriteMakefileArgs);
1 change: 0 additions & 1 deletion dist.ini
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ except = t/rc/\.perl*rc$
[ManifestSkip]
[MetaYAML]
[License]
[Readme]
[MakeMaker]
eumm_version = 6.48
prereq_fatal = 1
Expand Down

0 comments on commit 3b72c23

Please sign in to comment.