From bb148ee463b034117e4e695d61cab44f61388ce9 Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Thu, 2 Aug 2018 11:30:45 -0400 Subject: no bug - add dependencies needed for monitoring --- Makefile.PL | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'Makefile.PL') diff --git a/Makefile.PL b/Makefile.PL index 46228ab56..d9245c36f 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -362,6 +362,22 @@ my %optional_features = ( }, }, }, + sentry => { + description => 'Sentry Support', + prereqs => { + runtime => { + requires => { 'Log::Log4perl::Appender::Raven' => '0.006' }, + }, + }, + }, + datadog => { + description => 'Data Dog support', + prereqs => { + runtime => { + requires => { 'DataDog::DogStatsd' => '0.05' }, + }, + }, + }, ); for my $file ( glob 'extensions/*/Config.pm' ) { -- cgit v1.2.3-24-g4f1b From 2e9c9f5b9d1bff165a55dd7dbe54d81b2adbfde1 Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Tue, 3 Apr 2018 23:05:04 -0400 Subject: Bug 1455495 - Replace apache with Mojolicious --- Makefile.PL | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) (limited to 'Makefile.PL') diff --git a/Makefile.PL b/Makefile.PL index d9245c36f..7ca6bebbd 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -69,6 +69,7 @@ my %requires = ( 'Module::Metadata' => '1.000033', 'Module::Runtime' => '0.014', 'Mojolicious' => '7.71', + 'MojoX::Log::Log4perl::Tiny' => '0.01', 'Moo' => '2.002004', 'MooX::StrictConstructor' => '0.008', 'Mozilla::CA' => '20160104', @@ -79,6 +80,7 @@ my %requires = ( 'Template' => '2.24', 'Text::CSV_XS' => '1.26', 'Throwable' => '0.200013', + 'Sub::Quote' => '2.005000', 'Type::Tiny' => '1.000005', 'URI' => '1.55', 'URI::Escape::XS' => '0.14', @@ -282,18 +284,6 @@ my %optional_features = ( } }, }, - mod_perl => { - description => 'mod_perl support under Apache', - prereqs => { - runtime => { - requires => { - 'mod_perl2' => '1.999022', - 'Apache2::SizeLimit' => '0.96', - 'Plack::Handler::Apache2' => 0, - } - } - } - }, inbound_email => { description => 'Inbound Email', prereqs => { @@ -465,7 +455,6 @@ sub is_bmo_feature { ^ (?: pg | oracle - | mod_perl | sqlite | auth_ldap | auth_radius -- cgit v1.2.3-24-g4f1b From dfc9f2c2562905cfa8646be92780e19342ad5256 Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Tue, 31 Jul 2018 17:28:22 -0400 Subject: Add EV --- Makefile.PL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile.PL') diff --git a/Makefile.PL b/Makefile.PL index 7ca6bebbd..9025e57d0 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -96,7 +96,7 @@ my %test_requires = ( 'Test::Perl::Critic::Progressive' => 0, 'Perl::Critic::Freenode' => 0, ); -my %recommends = ( Safe => '2.30' ); +my %recommends = ( Safe => '2.30', EV => 4.0 ); # Windows requires some additional modules. if ( $OSNAME eq 'MSWin32' ) { -- cgit v1.2.3-24-g4f1b From 120e7b432a79e36f8081274216233438599061c3 Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Tue, 31 Jul 2018 17:34:28 -0400 Subject: with EV --- Makefile.PL | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Makefile.PL') diff --git a/Makefile.PL b/Makefile.PL index 9025e57d0..3cd1dabba 100755 --- a/Makefile.PL +++ b/Makefile.PL @@ -85,6 +85,7 @@ my %requires = ( 'URI' => '1.55', 'URI::Escape::XS' => '0.14', 'version' => '0.87', + 'EV' => 4.0 ); my %build_requires = ( 'ExtUtils::MakeMaker' => '7.22', ); @@ -96,7 +97,7 @@ my %test_requires = ( 'Test::Perl::Critic::Progressive' => 0, 'Perl::Critic::Freenode' => 0, ); -my %recommends = ( Safe => '2.30', EV => 4.0 ); +my %recommends = ( Safe => '2.30',); # Windows requires some additional modules. if ( $OSNAME eq 'MSWin32' ) { -- cgit v1.2.3-24-g4f1b