App-ThinPacker

 view release on metacpan or  search on metacpan

lib/App/ThinPacker.pm  view on Meta::CPAN

    thinpack your-script.pl > your-script-dist.pl

=head1 SEE ALSO

L<App::FatPacker>

L<App::cpanminus>

=head1 BUGS AND TODO

=over 4

=item No Windows support

=item Rudimentary parsing

=item Default --sudo for cpanm

=item Downloading cpanm from third-party source

=back

=head1 AUTHOR

Alex Kapranoff E<lt>kappa@cpan.orgE<gt>

=head1 CONTRIBUTORS

Alexey Surikov E<lt>ksuri@cpan.orgE<gt>

=head1 LICENSE

This program is free software, you can redistribute it under the same terms as Perl itself.

=cut

use strict;
use warnings;

use PPI;
use Pod::Find;
use Pod::Usage;

our $VERSION = '0.11';

sub run {
    my $arg = shift or usage();
    usage(2) if $arg eq '-h' or $arg eq '--help';

    my $ppi      = PPI::Document->new($arg) or usage();
    my $includes = $ppi->find('Statement::Include');

    my $deps = join ' ',
               grep { $_ !~ /^(?:strict|warnings|diagnostics|base|integer)$/ }
               map { $_->module }
               @$includes;

    my $inject = join '', map { s/%%DEPS%%/$deps/; $_ } <DATA>;

    open my $script, '<', $arg or exit print "Cannot open $arg: $!\n";
    my $not_injected = 1;
    while (my $line = <$script>) {
        if ($line =~ /^use / && $not_injected) {
            print "BEGIN {\n$inject\n}\n";
            $not_injected = 0;
        }

        print $line;
    }
}

sub usage {
    pod2usage(
        -verbose => $_[0] || 0,
        -output  => \*STDERR,
        -input   => Pod::Find::pod_where(
            { -inc => 1 },
            __PACKAGE__,
        ),
    );
}

__DATA__
    package main;
    use IO::Socket::INET;
    my @deps = qw(%%DEPS%%);
    my @inst;
    for my $dep (@deps) {
    	eval "require $dep";
    	push @inst, $dep if $@;
    }
    if (@inst) {
        local $@;
    	eval "require App::cpanminus";
    	if ($@) {
            my $sock = IO::Socket::INET->new('kapranoff.ru:80');
            print $sock join "\r\n", "GET /cpanm HTTP/1.0",
                                     "Connection: close",
                                     "\r\n";
            my $cpanm = do { local $/; <$sock> };
            close $sock;
            open my $sudoperl, '|perl - --self-upgrade --sudo';
            print $sudoperl $cpanm;
            close $sudoperl;
        }
        system(qw/cpanm --sudo/, @inst);
    }



( run in 2.689 seconds using v1.01-cache-2.11-cpan-39bf76dae61 )