Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Net-Twitter-Lite CPAN distribution.

Report information
The Basics
Id: 93638
Status: resolved
Priority: 0/
Queue: Net-Twitter-Lite

People
Owner: Nobody in particular
Requestors: DDICK [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.12006
Fixed in: (no value)



Subject: PATCH: required to build package for RHEL6
The attached is a patch required for building on RHEL6. Module::Build is at version 0.35, however, the package builds and tests just fine.
Subject: net_twitter_lite_build.patch
diff -Naur old/Build.PL new/Build.PL --- Build.PL 2014-01-25 11:11:46.000000000 +1100 +++ Build.PL 2014-03-01 21:58:00.639431147 +1100 @@ -3,15 +3,15 @@ use strict; use warnings; -use Module::Build 0.3601; +use Module::Build 0.35; my %module_build_args = ( "build_requires" => { - "Module::Build" => "0.3601" + "Module::Build" => "0.35" }, "configure_requires" => { - "Module::Build" => "0.3601" + "Module::Build" => "0.35" }, "dist_abstract" => "A perl API library for the Twitter API", "dist_author" => [ @@ -59,7 +59,7 @@ "Data::Dumper" => 0, "File::Find" => 0, "File::Temp" => 0, - "Module::Build" => "0.3601", + "Module::Build" => "0.35", "Test::Fatal" => 0, "Test::More" => 0, "Test::Simple" => "0.98"
This is a long ignored issue. My apologies. Do you know if this issue still applies? The patch really can't be applied directly because Build.PL is generated code. If it's still an issue, I need to find a way to address it in dist.ini. I'm going to close the issue, here. The preferred bug tracking for Net::Twitter::Lite is: https://github.com/semifor/net-twitter-lite/issues If it is still a problem, please open an issue there. On Fri Mar 07 18:25:18 2014, DDICK wrote: Show quoted text
> The attached is a patch required for building on RHEL6. Module::Build > is at version 0.35, however, the package builds and tests just fine.