/usr/share/perl5/Carton/Packer.pm is in carton 1.0.12-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 | package Carton::Packer;
use Moo;
use warnings NONFATAL => 'all';
use App::FatPacker;
use File::pushd ();
use Path::Tiny ();
use CPAN::Meta ();
use File::Find ();
sub fatpack_carton {
my($self, $dir) = @_;
my $temp = Path::Tiny->tempdir;
my $pushd = File::pushd::pushd $temp;
my $file = $temp->child('carton.pre.pl');
$file->spew(<<'EOF');
#!/usr/bin/env perl
use strict;
use 5.008001;
use Carton::CLI;
$Carton::Fatpacked = 1;
exit Carton::CLI->new->run(@ARGV);
EOF
my $fatpacked = $self->do_fatpack($file);
my $executable = $dir->child('carton');
warn "Bundling $executable\n";
$dir->mkpath;
$executable->spew($fatpacked);
chmod 0755, $executable;
}
sub do_fatpack {
my($self, $file) = @_;
my $packer = App::FatPacker->new;
my @modules = split /\r?\n/, $packer->trace(args => [$file], use => $self->required_modules);
my @packlists = $packer->packlists_containing(\@modules);
$packer->packlists_to_tree(Path::Tiny->new('fatlib')->absolute, \@packlists);
my $fatpacked = do {
local $SIG{__WARN__} = sub {};
$packer->fatpack_file($file);
};
# HACK: File::Spec bundled into arch in < 5.16, but is loadable as pure-perl
use Config;
$fatpacked =~ s/\$fatpacked{"$Config{archname}\/(Cwd|File)/\$fatpacked{"$1/g;
$fatpacked;
}
sub required_modules {
my($self, $packer) = @_;
my $meta = $self->installed_meta('Carton')
or die "Couldn't find install metadata for Carton";
my %excludes = (
perl => 1,
'ExtUtils::MakeMaker' => 1,
'Module::Build' => 1,
);
my @requirements = grep !$excludes{$_},
$meta->effective_prereqs->requirements_for('runtime', 'requires')->required_modules;
return \@requirements;
}
sub installed_meta {
my($self, $dist) = @_;
my @meta;
my $finder = sub {
if (m!\b$dist-.*[\\/]MYMETA.json!) {
my $meta = CPAN::Meta->load_file($_);
push @meta, $meta if $meta->name eq $dist;
}
};
File::Find::find({ wanted => $finder, no_chdir => 1 }, grep -d, map "$_/.meta", @INC);
# return the latest version
@meta = sort { version->new($b->version) cmp version->new($a->version) } @meta;
return $meta[0];
}
1;
|