No worries...
One other unrelated thing -- I have to do this to hack around Crypt::IDEA,
i'm wondering if a simple hook system would be useful to massage packages
before we let debian generate it's .diff?
my $package = $cpan->module_tree($package_name);
# Crypt::IDEA bug - debhelper doesnt like the "._test.pl" file
# so we have to manually fetch and extract the package and remove
# that file before we allow debianization to take over
#
{
$package->fetch;
my $dir = $package->extract;
print " Extracted to $dir\n";
unlink("$dir/._test.pl") and warn "Removed naughty ._test.pl file";
}
$package->install(
format => 'CPANPLUS::Dist::Deb',
target => 'create',
prereq_target => 'create',
verbose => 1,
skiptest => 1,
distdir => $repo_root,
)
or die "Failed to build $package_name!";
Cheers,
Tyler
Hans Dieter Pearcey via RT <bug-CPANPLUS-Dist-Deb@rt.cpan.org> wrote:
Show quoted text
--