/usr/bin/cpan-listchanges is in cpan-listchanges 0.06-1.
This file is owned by root:root, with mode 0o755.
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 | #!/usr/bin/perl
eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
if 0; # not running under some shell
use strict;
use App::cpanlistchanges;
my $app = App::cpanlistchanges->new;
$app->run(@ARGV);
__END__
=head1 NAME
cpan-listchanges - List changes for CPAN modules
=head1 SYNOPSIS
# See what's changed in Plack between your local and the latest on CPAN
cpan-listchanges Plack
# See what's changed for URI between 1.56 and 1.58 (Use @ and ..)
cpan-listchanges URI@1.56..1.58
# See what's changed for Plack 0.9965 and CPAN current (Use HEAD for the latest)
cpan-listchanges Plack@0.9965..HEAD
# See the whole changelog for Catalyst::Runtime
cpan-listchanges --all Catalyst::Runtime
# See what's changed for modules that require upgrades
cpan-listchanges `cpan-outdated -p`
=head1 OPTIONS
=over 4
=item -a, --all
Displays the whole content of Changes, without version comparison.
=back
=head1 SEE ALSO
L<App::cpanminus> L<App::cpanoutdated>
=cut
|