App-lcpan-CmdBundle-debian
view release on metacpan or search on metacpan
lib/App/lcpan/Cmd/debian_dist2deb.pm view on Meta::CPAN
package App::lcpan::Cmd::debian_dist2deb;
our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
our $DATE = '2021-07-17'; # DATE
our $DIST = 'App-lcpan-CmdBundle-debian'; # DIST
our $VERSION = '0.008'; # VERSION
use 5.010001;
use strict;
use warnings;
use Log::ger;
require App::lcpan;
our %SPEC;
$SPEC{handle_cmd} = {
v => 1.1,
summary => 'Show Debian package name/version for a dist',
description => <<'_',
This routine uses the simple rule of: converting the dist name to lowercase then
add "lib" prefix and "-perl" suffix. A small percentage of Perl distributions do
not follow this rule.
_
args => {
%App::lcpan::common_args,
%App::lcpan::dists_args,
check_exists_on_debian => {
summary => 'Check each distribution if its Debian package exists, using Dist::Util::Debian::dist_has_deb',
schema => 'bool*',
},
use_allpackages => {
summary => 'Will be passed to Dist::Util::Debian::dist_has_deb',
description => <<'_',
Using this option is faster if you need to check existence for many Debian
packages. See <pm:Dist::Util::Debian> documentation for more details.
_
schema => 'bool*',
},
exists_on_debian => {
summary => 'Only output debs which exist on Debian repository',
'summary.alt.bool.not' => 'Only output debs which do not exist on Debian repository',
schema => 'bool*',
tags => ['category:filtering'],
},
exists_on_cpan => {
summary => 'Only output debs which exist in database',
'summary.alt.bool.not' => 'Only output debs which do not exist in database',
schema => 'bool*',
tags => ['category:filtering'],
},
needs_update => {
summary => 'Only output debs which has smaller version than its CPAN counterpart',
'summary.alt.bool.not' => 'Only output debs which has the same version as its CPAN counterpart',
schema => 'bool*',
tags => ['category:filtering'],
},
},
};
sub handle_cmd {
require Dist::Util::Debian;
my %args = @_;
my $state = App::lcpan::_init(\%args, 'ro');
my $dbh = $state->{dbh};
my @rows;
my @fields = qw(dist deb);
for my $dist (@{ $args{dists} }) {
my $deb = Dist::Util::Debian::dist2deb($dist);
my $row = {dist => $dist, deb => $deb};
push @rows, $row;
}
{
push @fields, "dist_version";
my $sth = $dbh->prepare(
lib/App/lcpan/Cmd/debian_dist2deb.pm view on Meta::CPAN
| dist | deb | dist_version | deb_version |
+-----------+-------------------+--------------+-------------+
| HTTP-Tiny | libhttp-tiny-perl | 0.070 | 0.070-1 |
| App-lcpan | libapp-lcpan-perl | 1.014 | |
| Data-Dmp | libdata-dmp-perl | 0.22 | 0.21-1 |
| Foo | libfoo-perl | | |
+-----------+-------------------+--------------+-------------+
Like the above, but download (and cache) allpackages.txt.gz first to speed up
checking if you need to check many Debian packages:
% lcpan debian-dist2deb --check-exists-on-debian --use-allpackages
Only show dists where the Debian package exists on Debian repo
(C<--exists-on-debian> implicitly turns on C<--check-exists-on-debian>):
% lcpan debian-dist2deb --exists-on-debian --use-allpackages < dists.txt
+-----------+-------------------+--------------+-------------+
| dist | deb | dist_version | deb_version |
+-----------+-------------------+--------------+-------------+
| HTTP-Tiny | libhttp-tiny-perl | 0.070 | 0.070-1 |
| Data-Dmp | libdata-dmp-perl | 0.22 | 0.21-1 |
+-----------+-------------------+--------------+-------------+
Reverse the filter (only show dists which do not have Debian packages):
% lcpan debian-dist2deb --no-exists-on-debian --use-allpackages < dists.txt
+-----------+-------------------+--------------+-------------+
| dist | deb | dist_version | deb_version |
+-----------+-------------------+--------------+-------------+
| App-lcpan | libapp-lcpan-perl | 1.014 | |
| Foo | libfoo-perl | | |
+-----------+-------------------+--------------+-------------+
Only show dists where the Debian package exists on Debian repo *and* the Debian
package version is less than the dist version:
% lcpan debian-dist2deb --exists-on-debian --use-allpackages --needs-update < dists.txt
+-----------+-------------------+--------------+-------------+
| dist | deb | dist_version | deb_version |
+-----------+-------------------+--------------+-------------+
| Data-Dmp | libdata-dmp-perl | 0.22 | 0.21-1 |
+-----------+-------------------+--------------+-------------+
=head1 DESCRIPTION
This module handles the L<lcpan> subcommand C<debian-dist2deb>.
=head1 FUNCTIONS
=head2 handle_cmd
Usage:
handle_cmd(%args) -> [$status_code, $reason, $payload, \%result_meta]
Show Debian package nameE<sol>version for a dist.
This routine uses the simple rule of: converting the dist name to lowercase then
add "lib" prefix and "-perl" suffix. A small percentage of Perl distributions do
not follow this rule.
This function is not exported.
Arguments ('*' denotes required arguments):
=over 4
=item * B<check_exists_on_debian> => I<bool>
Check each distribution if its Debian package exists, using Dist::Util::Debian::dist_has_deb.
=item * B<cpan> => I<dirname>
Location of your local CPAN mirror, e.g. E<sol>pathE<sol>toE<sol>cpan.
Defaults to C<~/cpan>.
=item * B<dists>* => I<array[perl::distname]>
Distribution names (e.g. Foo-Bar).
=item * B<exists_on_cpan> => I<bool>
Only output debs which exist in database.
=item * B<exists_on_debian> => I<bool>
Only output debs which exist on Debian repository.
=item * B<index_name> => I<filename> (default: "index.db")
Filename of index.
If C<index_name> is a filename without any path, e.g. C<index.db> then index will
be located in the top-level of C<cpan>. If C<index_name> contains a path, e.g.
C<./index.db> or C</home/ujang/lcpan.db> then the index will be located solely
using the C<index_name>.
=item * B<needs_update> => I<bool>
Only output debs which has smaller version than its CPAN counterpart.
=item * B<use_allpackages> => I<bool>
Will be passed to Dist::Util::Debian::dist_has_deb.
Using this option is faster if you need to check existence for many Debian
packages. See L<Dist::Util::Debian> documentation for more details.
=item * B<use_bootstrap> => I<bool> (default: 1)
Whether to use bootstrap database from App-lcpan-Bootstrap.
If you are indexing your private CPAN-like repository, you want to turn this
off.
=back
( run in 5.587 seconds using v1.01-cache-2.11-cpan-0bb4e1dffa6 )