/usr/share/perl5/Debian/Control/FromCPAN.pm is in dh-make-perl 0.80-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 | =head1 NAME
Debian::Control::FromCPAN - fill F<debian/control> from unpacked CPAN distribution
=head1 SYNOPSIS
my $c = Debian::Control::FromCPAN->new();
$c->discover_dependencies( { ... } );
$c->prune_perl_deps;
Debian::Control::FromCPAN inherits from L<Debian::Control>.
=cut
package Debian::Control::FromCPAN;
use strict;
use warnings;
our $VERSION = '0.77';
use Carp qw(croak);
use base 'Debian::Control';
use CPAN ();
use DhMakePerl::Utils qw( is_core_module find_cpan_module nice_perl_ver split_version_relation );
use File::Spec qw( catfile );
use Module::Depends ();
use constant oldstable_perl_version => '5.10.1';
=head1 METHODS
=over
=item discover_dependencies( [ { options hash } ] )
Discovers module dependencies and fills the dependency fields in
F<debian/control> accordingly.
Options:
=over
=item apt_contents
An instance of L<Debian::AptContents> to be used when locating to which package
a required module belongs.
=item dir
The directory where the cpan distribution was unpacked.
=item intrusive
A flag indicating permission to use L<Module::Depends::Intrusive> for
discovering dependencies in case L<Module::Depends> fails. Since this requires
loading all Perl modules in the distribution (and running their BEGIN blocks
(and the BEGIN blocks of their dependencies, recursively), it is recommended to
use this only when dealing with trusted sources.
=item require_deps
If true, causes the method to die if some a package for some dependency cannot
be found. Otherwise only a warning is issued.
=item verbose
=item wnpp_query
An instance of L<Debian::WNPP::Query> to be used when checking for WNPP bugs of
depended upon packages.
=back
Returns a list of module names for which no suitable Debian packages were
found.
=cut
sub discover_dependencies {
my ( $self, $opts ) = @_;
$opts //= {};
ref($opts) and ref($opts) eq 'HASH'
or die 'Usage: $obj->{ [ { opts hash } ] )';
my $apt_contents = delete $opts->{apt_contents};
my $dir = delete $opts->{dir};
my $intrusive = delete $opts->{intrusive};
my $require_deps = delete $opts->{require_deps};
my $verbose = delete $opts->{verbose};
my $wnpp_query = delete $opts->{wnpp_query};
die "Unsupported option(s) given: " . join( ', ', sort( keys(%$opts) ) )
if %$opts;
my $src = $self->source;
my $bin = $self->binary_tie->Values(0);
local @INC = ( $dir, @INC );
# try Module::Depends, but if that fails then
# fall back to Module::Depends::Intrusive.
my $finder = Module::Depends->new->dist_dir($dir);
my $deps;
do {
no warnings;
local *STDERR;
open( STDERR, ">/dev/null" );
$deps = $finder->find_modules;
};
my $error = $finder->error();
if ($error) {
if ($verbose) {
warn '=' x 70, "\n";
warn "Failed to detect dependencies using Module::Depends.\n";
warn "The error given was:\n";
warn "$error";
}
if ( $intrusive ) {
warn "Trying again with Module::Depends::Intrusive ... \n"
if $verbose;
require Module::Depends::Intrusive;
$finder = Module::Depends::Intrusive->new->dist_dir($dir);
do {
no warnings;
local *STDERR;
open( STDERR, ">/dev/null" );
$deps = $finder->find_modules;
};
if ( $finder->error ) {
if ($verbose) {
warn '=' x 70, "\n";
warn
"Could not find the "
. "dependencies for the requested module.\n";
warn "Generated error: " . $finder->error;
warn "Please bug the module author to provide a"
. " proper META.yml file.\n"
. "Automatic find of"
. " dependencies failed. You may want to \n"
. "retry using the '--[b]depends[i]' options\n"
. "or just fill the dependency fields in debian/rules"
. " by hand\n";
return;
}
}
}
else {
if ($verbose) {
warn "If you understand the security implications, try --intrusive.\n";
warn '=' x 70, "\n";
}
return;
}
}
# run-time
my ( $debs, $missing )
= $self->find_debs_for_modules( $deps->{requires}, $apt_contents, $verbose );
if (@$debs) {
if ($verbose) {
print "\n";
print "Needs the following debian packages: "
. join( ", ", @$debs ) . "\n";
}
$bin->Depends->add(@$debs);
if ( $bin->Architecture eq 'all' ) {
$src->Build_Depends_Indep->add(@$debs);
}
else {
$src->Build_Depends->add(@$debs);
}
}
# build-time
my ( $b_debs, $b_missing ) = $self->find_debs_for_modules(
{ %{ $deps->{build_requires} || {} },
%{ $deps->{test_requires} || {} },
%{ $deps->{configure_requires} || {} }
},
$apt_contents,
$verbose
);
if (@$b_debs) {
if ($verbose) {
print "\n";
print "Needs the following debian packages during building: "
. join( ", ", @$b_debs ) . "\n";
}
if ( $self->is_arch_dep ) {
$src->Build_Depends->add(@$b_debs);
}
else {
$src->Build_Depends_Indep->add(@$b_debs);
}
}
push @$missing, @$b_missing;
if (@$missing) {
my ($missing_debs_str);
if ($apt_contents) {
$missing_debs_str
= "Needs the following modules for which there are no debian packages available:\n";
for (@$missing) {
my $bug
= $wnpp_query
? ( $wnpp_query->bugs_for_package($_) )[0]
: undef;
$missing_debs_str .= " - $_";
$missing_debs_str .= " (" . $bug->type_and_number . ')'
if $bug;
$missing_debs_str .= "\n";
}
}
else {
$missing_debs_str = "The following Perl modules are required and not installed in your system:\n";
for (@$missing) {
my $bug
= $wnpp_query
? ( $wnpp_query->bugs_for_package($_) )[0]
: undef;
$missing_debs_str .= " - $_";
$missing_debs_str .= " (" . $bug->type_and_number . ')'
if $bug;
$missing_debs_str .= "\n";
}
$missing_debs_str .= <<EOF
You do not have 'apt-file' currently installed, or have not ran
'apt-file update' - If you install it and run 'apt-file update' as
root, I will be able to tell you which Debian packages are those
modules in (if they are packaged).
EOF
}
if ($require_deps) {
die $missing_debs_str;
}
else {
warn $missing_debs_str;
}
}
return @$missing;
}
=item find_debs_for_modules I<dep hash>[, APT contents[, verbose ]]
Scans the given hash of dependencies ( module => version ) and returns
matching Debian package dependency specification (as an instance of
L<Debian::Dependencies> class) and a list of missing modules.
Perl core is searched first, then installed packages, then the APT contents.
=cut
sub find_debs_for_modules {
my ( $self, $dep_hash, $apt_contents, $verbose ) = @_;
my $debs = Debian::Dependencies->new();
my @missing;
while ( my ( $module, $version ) = each %$dep_hash ) {
my $ver_rel;
( $ver_rel, $version ) = split_version_relation($version) if $version;
$version =~ s/^v// if $version;
my $dep;
require Debian::DpkgLists;
if ( my $ver = is_core_module( $module, $version ) ) {
$dep = Debian::Dependency->new( 'perl', $ver );
}
elsif ( my @pkgs = Debian::DpkgLists->scan_perl_mod($module) ) {
$dep = Debian::Dependency->new(
( @pkgs > 1 )
? [ map { { pkg => $_, ver => $version } } @pkgs ]
: ( $pkgs[0], $version )
);
}
elsif ($apt_contents) {
$dep = $apt_contents->find_perl_module_package( $module, $version );
}
$dep->rel($ver_rel) if $dep and $ver_rel and $dep->ver;
my $mod_ver = join( " ", $module, $ver_rel // (), $version || () );
if ($dep) {
if ($verbose) {
if ( $dep->pkg and $dep->pkg eq 'perl' ) {
print "= $mod_ver is in core";
print " since " . $dep->ver if $dep->ver;
print "\n";
}
else {
print "+ $mod_ver found in $dep\n";
}
}
my $target_perl_version = $^V;
$target_perl_version =~ s/^v//;
$target_perl_version = Dpkg::Version->new($target_perl_version);
if ( $dep->pkg
and $dep->pkg eq 'perl'
and $dep->ver
and $dep->ver > $target_perl_version )
{
print " ! $dep is too new. Adding alternative dependency\n"
if $verbose;
my $alt_dep;
if ( my @pkgs = Debian::DpkgLists->scan_perl_mod($module) ) {
@pkgs = grep {
( $_ ne 'perl-modules' )
and ( $_ ne 'perl-base' )
and ( $_ ne 'perl' )
} @pkgs;
$alt_dep = Debian::Dependency->new(
( @pkgs > 1 )
? [ map { { pkg => $_, ver => $version } } @pkgs ]
: ( $pkgs[0], $version )
) if @pkgs;
}
if ( not $alt_dep and $apt_contents) {
$alt_dep
= $apt_contents->find_perl_module_package( $module,
$version );
}
$alt_dep
//= Debian::Dependency->new(
$self->module_name_to_pkg_name($module),
'>=', $version );
$dep = Debian::Dependency->new("$alt_dep | $dep");
#print " $dep\n";
}
}
else {
print "- $mod_ver not found in any package\n";
push @missing, $module;
my $mod = find_cpan_module($module);
if ( $mod and $mod->distribution ) {
( my $dist = $mod->distribution->base_id ) =~ s/-v?\d[^-]*$//;
my $pkg = $self->module_name_to_pkg_name($dist);
print " CPAN contains it in $dist\n";
print " substituting package name of $pkg\n";
$dep = Debian::Dependency->new( $pkg, $ver_rel, $version );
}
else {
print " - it seems it is not available even via CPAN\n";
}
}
$debs->add($dep) if $dep;
}
return $debs, \@missing;
}
=item prune_simple_perl_dep
Input:
=over
=item dependency object
shall be a simple dependency (no alternatives)
=item (optional) build dependency flag
true value indicates the dependency is a build-time one
=back
The following checks are made
=over
=item dependencies on C<perl-modules>
These are replaced with C<perl> as per Perl policy.
=item dependencies on C<perl-base> and build-dependencies on C<perl> or
C<perl-base>
These are removed, unless they specify a version greater than the one available
in C<oldstable> or the dependency relation is not C<< >= >> or C<<< >> >>>.
=back
Return value:
=over
=item undef
if the dependency is redundant.
=item pruned dependency
otherwise. C<perl-modules> replaced with C<perl>.
=back
=cut
sub prune_simple_perl_dep {
my( $self, $dep, $build ) = @_;
croak "No alternative dependencies can be given"
if $dep->alternatives;
return $dep unless $dep->pkg =~ /^(?:perl|perl-base|perl-modules)$/;
# perl-modules is replaced with perl
$dep->pkg('perl') if $dep->pkg eq 'perl-modules';
my $unversioned = (
not $dep->ver
or $dep->rel =~ />/
and $dep->ver <= $self->oldstable_perl_version
);
# if the dependency is considered unversioned, make sure there is no
# version
if ($unversioned) {
$dep->ver(undef);
$dep->rel(undef);
}
# perl-base is (build-)essential
return undef
if $dep->pkg eq 'perl-base' and $unversioned;
# perl is needed in build-dependencies (see Policy 4.2)
return $dep if $dep->pkg eq 'perl' and $build;
# unversioned perl non-build-dependency is redundant, because it will be
# covered by ${perl:Depends}
return undef
if not $build
and $dep->pkg eq 'perl'
and $unversioned;
return $dep;
}
=item prune_perl_dep
Similar to L</prune_simple_perl_dep>, but supports alternative dependencies.
If any of the alternatives is redundant, the whole dependency is considered
redundant.
=cut
sub prune_perl_dep {
my( $self, $dep, $build ) = @_;
return $self->prune_simple_perl_dep( $dep, $build )
unless $dep->alternatives;
for my $simple ( @{ $dep->alternatives } ) {
my $pruned = $self->prune_simple_perl_dep( $simple, $build );
# redundant alternative?
return undef unless $pruned;
$simple = $pruned;
}
return $dep;
}
=item prune_perl_deps
Remove redundant (build-)dependencies on perl, perl-modules and perl-base.
=cut
sub prune_perl_deps {
my $self = shift;
# remove build-depending on ancient perl versions
for my $perl ( qw( perl perl-base perl-modules ) ) {
for ( qw( Build_Depends Build_Depends_Indep ) ) {
my @ess = $self->source->$_->remove($perl);
# put back non-redundant ones (possibly modified)
for my $dep (@ess) {
my $pruned = $self->prune_perl_dep( $dep, 1 );
$self->source->$_->add($pruned) if $pruned;
}
}
}
# remove depending on ancient perl versions
for my $perl ( qw( perl perl-base perl-modules ) ) {
for my $pkg ( $self->binary_tie->Values ) {
for my $rel ( qw(Depends Recommends Suggests) ) {
my @ess = $pkg->$rel->remove($perl);
for my $dep (@ess) {
my $pruned = $self->prune_perl_dep( $dep, 0 );
$pkg->$rel->add($pruned) if $pruned;
}
}
}
}
}
=back
=head1 CLASS METHODS
=over
=item module_name_to_pkg_name
Receives a perl module name like C<Foo::Bar> and returns a suitable Debian
package name for it, like C<libfoo-bar-perl>.
=cut
sub module_name_to_pkg_name {
my ( $self, $module ) = @_;
my $pkg = lc $module;
# ensure policy compliant names and versions (from Joeyh)...
$pkg =~ s/[^-.+a-zA-Z0-9]+/-/g;
$pkg =~ s/--+/-/g;
$pkg = 'lib' . $pkg unless $pkg =~ /^lib/;
$pkg .= '-perl';
return $pkg;
}
=back
=head1 COPYRIGHT & LICENSE
Copyright (C) 2009, 2010, 2012 Damyan Ivanov L<dmn@debian.org>
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License version 2 as published by the Free
Software Foundation.
This program is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.
=cut
1;
|