3 # This chunk of stuff was generated by App::FatPacker. To find the original
4 # file's code, look for the end of this BEGIN block or the string 'FATPACK'
8 $fatpacked{"MetaCPAN/API/Tiny.pm"} = <<'METACPAN_API_TINY';
9 package MetaCPAN::API::Tiny;
11 $MetaCPAN::API::Tiny::VERSION = '1.131730';
15 # ABSTRACT: A Tiny API client for MetaCPAN
18 use JSON::PP 'encode_json', 'decode_json';
23 my ($class, @args) = @_;
26 or croak 'Arguments must be provided as name/value pairs';
30 die 'ua_args must be an array reference'
31 if $params{ua_args} && ref($params{ua_args}) ne 'ARRAY';
34 base_url => $params{base_url} || 'http://api.metacpan.org/v0',
35 ua => $params{ua} || HTTP::Tiny->new(
38 : (agent => 'MetaCPAN::API::Tiny/'
39 . ($MetaCPAN::API::VERSION || 'xx'))),
42 return bless($self, $class);
45 sub _build_extra_params {
49 or croak 'Incorrect number of params, must be key/value';
54 foreach my $key (keys %extra)
56 # The implementation in HTTP::Tiny uses + instead of %20, fix that
57 $extra{$key} = $ua->_uri_escape($extra{$key});
58 $extra{$key} =~ s/\+/%20/g;
61 my $params = join '&', map { "$_=" . $extra{$_} } sort keys %extra;
67 # /source/{author}/{release}/{path}
70 my %opts = @_ ? @_ : ();
72 my $error = "Provide 'author' and 'release' and 'path'";
74 %opts or croak $error;
77 defined ( my $author = $opts{'author'} ) &&
78 defined ( my $release = $opts{'release'} ) &&
79 defined ( my $path = $opts{'path'} )
81 $url = "source/$author/$release/$path";
86 $url = $self->{base_url} . "/$url";
88 my $result = $self->{ua}->get($url);
90 or croak "Failed to fetch '$url': " . $result->{'reason'};
92 return $result->{'content'};
96 # /release/{distribution}
97 # /release/{author}/{release}
100 my %opts = @_ ? @_ : ();
102 my $error = "Either provide 'distribution', or 'author' and 'release', " .
105 %opts or croak $error;
109 if ( defined ( my $dist = $opts{'distribution'} ) ) {
110 $url = "release/$dist";
112 defined ( my $author = $opts{'author'} ) &&
113 defined ( my $release = $opts{'release'} )
115 $url = "release/$author/$release";
116 } elsif ( defined ( my $search_opts = $opts{'search'} ) ) {
117 ref $search_opts && ref $search_opts eq 'HASH'
120 %extra_opts = %{$search_opts};
121 $url = 'release/_search';
126 return $self->fetch( $url, %extra_opts );
131 # /pod/{author}/{release}/{path}
134 my %opts = @_ ? @_ : ();
136 my $error = "Either provide 'module' or 'author and 'release' and 'path'";
138 %opts or croak $error;
140 if ( defined ( my $module = $opts{'module'} ) ) {
141 $url = "pod/$module";
143 defined ( my $author = $opts{'author'} ) &&
144 defined ( my $release = $opts{'release'} ) &&
145 defined ( my $path = $opts{'path'} )
147 $url = "pod/$author/$release/$path";
154 if ( defined ( my $type = $opts{'content-type'} ) ) {
155 $type =~ m{^ text/ (?: html|plain|x-pod|x-markdown ) $}x
156 or croak 'Incorrect content-type provided';
158 $extra{headers}{'content-type'} = $type;
161 $url = $self->{base_url}. "/$url";
163 my $result = $self->{ua}->get( $url, \%extra );
165 or croak "Failed to fetch '$url': " . $result->{'reason'};
167 return $result->{'content'};
176 $name or croak 'Please provide a module name';
178 return $self->fetch("module/$name");
182 # file() is a synonym of module
183 sub file { goto &module }
189 my ( $pause_id, $url, %extra_opts );
192 $url = 'author/' . shift;
193 } elsif ( @_ == 2 ) {
196 if ( defined $opts{'pauseid'} ) {
197 $url = "author/" . $opts{'pauseid'};
198 } elsif ( defined $opts{'search'} ) {
199 my $search_opts = $opts{'search'};
201 ref $search_opts && ref $search_opts eq 'HASH'
202 or croak "'search' key must be hashref";
204 %extra_opts = %{$search_opts};
205 $url = 'author/_search';
207 croak 'Unknown option given';
210 croak 'Please provide an author PAUSEID or a "search"';
213 return $self->fetch( $url, %extra_opts );
221 my $extra = $self->_build_extra_params(@_);
222 my $base = $self->{base_url};
223 my $req_url = $extra ? "$base/$url?$extra" : "$base/$url";
225 my $result = $self->{ua}->get($req_url);
226 return $self->_decode_result( $result, $req_url );
234 my $base = $self->{base_url};
237 or croak 'First argument of URL must be provided';
239 ref $query and ref $query eq 'HASH'
240 or croak 'Second argument of query hashref must be provided';
242 my $query_json = encode_json( $query );
243 my $result = $self->{ua}->request(
247 headers => { 'Content-Type' => 'application/json' },
248 content => $query_json,
252 return $self->_decode_result( $result, $url, $query_json );
257 my ( $result, $url, $original ) = @_;
260 ref $result and ref $result eq 'HASH'
261 or croak 'First argument must be hashref';
264 or croak 'Second argument of a URL must be provided';
266 if ( defined ( my $success = $result->{'success'} ) ) {
267 my $reason = $result->{'reason'} || '';
268 $reason .= ( defined $original ? " (request: $original)" : '' );
270 $success or croak "Failed to fetch '$url': $reason";
272 croak 'Missing success in return value';
275 defined ( my $content = $result->{'content'} )
276 or croak 'Missing content in return value';
278 eval { $decoded_result = decode_json $content; 1 }
279 or do { croak "Couldn't decode '$content': $@" };
281 return $decoded_result;
292 MetaCPAN::API::Tiny - A Tiny API client for MetaCPAN
300 This is the Tiny version of L<MetaCPAN::API>. It implements a compatible API
301 with a few notable exceptions:
305 =item Attributes are direct hash access
307 The attributes defined using Mo(o|u)se are now accessed via the blessed hash
308 directly. There are no accessors defined to access this elements.
310 =item Exception handling
312 Instead of using Try::Tiny, raw evals are used. This could potentially cause
313 issues, so just be aware.
317 Test::Fatal was replaced with an eval implementation of exception().
318 Test::TinyMocker usage is retained, but may be absorbed since it is pure perl
326 new is the constructor for MetaCPAN::API::Tiny. In the non-tiny version of this
327 module, this is provided via Any::Moose built from the attributes defined. In
328 the tiny version, we define our own constructor. It takes the same arguments
329 and provides similar checks to MetaCPAN::API with regards to arguments passed.
331 =head1 PUBLIC_METHODS
335 my $source = $mcpan->source(
337 release => 'Moose-2.0201',
338 path => 'lib/Moose.pm',
341 Searches MetaCPAN for a module or a specific release and returns the plain source.
345 my $result = $mcpan->release( distribution => 'Moose' );
348 my $result = $mcpan->release( author => 'DOY', release => 'Moose-2.0001' );
350 Searches MetaCPAN for a dist.
352 You can do complex searches using 'search' parameter:
354 # example lifted from MetaCPAN docs
355 my $result = $mcpan->release(
357 author => "OALDERS AND ",
358 filter => "status:latest",
366 my $result = $mcpan->pod( module => 'Moose' );
369 my $result = $mcpan->pod(
371 release => 'Moose-2.0201',
372 path => 'lib/Moose.pm',
375 Searches MetaCPAN for a module or a specific release and returns the POD.
379 my $result = $mcpan->module('MetaCPAN::API');
381 Searches MetaCPAN and returns a module's ".pm" file.
385 A synonym of L</module>
389 my $result1 = $mcpan->author('XSAWYERX');
390 my $result2 = $mcpan->author( pauseid => 'XSAWYERX' );
392 Searches MetaCPAN for a specific author.
394 You can do complex searches using 'search' parameter:
396 # example lifted from MetaCPAN docs
397 my $result = $mcpan->author(
399 q => 'profile.name:twitter',
406 my $result = $mcpan->fetch('/release/distribution/Moose');
409 my $more = $mcpan->fetch(
410 '/release/distribution/Moose',
414 This is a helper method for API implementations. It fetches a path from MetaCPAN, decodes the JSON from the content variable and returns it.
416 You don't really need to use it, but you can in case you want to write your own extension implementation to MetaCPAN::API.
418 It accepts an additional hash as "GET" parameters.
422 # /release&content={"query":{"match_all":{}},"filter":{"prefix":{"archive":"Cache-Cache-1.06"}}}
423 my $result = $mcpan->post(
426 query => { match_all => {} },
427 filter => { prefix => { archive => 'Cache-Cache-1.06' } },
431 The POST equivalent of the "fetch()" method. It gets the path and JSON request.
435 Overall the tests and code were ripped directly from MetaCPAN::API and
436 tiny-fied. A big thanks to Sawyer X for writing the original module.
440 Nicholas R. Perez <nperez@cpan.org>
442 =head1 COPYRIGHT AND LICENSE
444 This software is copyright (c) 2013 by Nicholas R. Perez <nperez@cpan.org>.
446 This is free software; you can redistribute it and/or modify it under
447 the same terms as the Perl 5 programming language system itself.
452 s/^ //mg for values %fatpacked;
455 if (my $fat = $fatpacked{$_[1]}) {
458 return 0 unless length $fat;
459 $fat =~ s/^([^\n]*\n?)//;
464 open my $fh, '<', \$fat
465 or die "FatPacker error loading $_[1] (could be a perl installation issue?)";
471 } # END OF FATPACK CODE
474 use 5.022; # same major version as target perl
477 use Fatal qw(open close);
482 use Module
::CoreList
;
485 use MetaCPAN
::API
::Tiny
;
487 my ($help, $man, $quiet, $force, $recommend, $test, $host);
489 GetOptions
( 'help|?' => \
$help,
491 'quiet|q' => \
$quiet,
492 'force|f' => \
$force,
494 'target!' => \
$target,
495 'recommend' => \
$recommend,
497 ) or pod2usage
(-exitval
=> 1);
498 pod2usage
(-exitval
=> 0) if $help;
499 pod2usage
(-exitval
=> 0, -verbose
=> 2) if $man;
500 pod2usage
(-exitval
=> 1) if scalar @ARGV == 0;
502 my %dist; # name -> metacpan data
503 my %need_target; # name -> 1 if target package is needed
504 my %need_host; # name -> 1 if host package is needed
505 my %need_dlopen; # name -> 1 if requires dynamic library
506 my %deps_build; # name -> list of host dependencies
507 my %deps_runtime; # name -> list of target dependencies
508 my %license_files; # name -> list of license files
509 my %checksum; # author -> list of checksum
510 my $mcpan = MetaCPAN
::API
::Tiny
->new();
511 my $ua = HTTP
::Tiny
->new();
515 my($path) = $url =~ m
|^[^:/?#]+://[^/?
#]*([^?#]*)|;
516 my($basename, $dirname) = fileparse
( $path );
517 unless ($checksum{$dirname}) {
518 my $response = $ua->get(qq{http
://cpan
.metacpan
.org
${dirname
}CHECKSUMS
});
519 $checksum{$dirname} = $response->{content
};
521 my $chksum = Safe
->new->reval($checksum{$dirname});
522 return $chksum->{$basename}, $basename;
526 my ($author, $distname, $version) = @_;
527 my $url = qq{http
://api.metacpan
.org
/source/${author
}/${distname}-${version}/MANIFEST
};
528 my $response = $ua->get($url);
529 return $response->{content
};
534 # This heuristic determines if a module is a native extension, by searching
535 # some file extension types in the MANIFEST of the distribution.
536 # It was inspired by http://deps.cpantesters.org/static/purity.html
537 return $manifest =~ m/\.(swg|xs|c|h|i)[\n\s]/;
540 sub find_license_files
{
543 foreach (split /\n/, $manifest) {
545 push @license_files, $_ if m/(ARTISTIC|COPYING|COPYRIGHT|LICENSE)/i;
547 if (scalar @license_files == 0 && $manifest =~ m/(README)[\n\s]/i) {
548 @license_files = ($1);
550 return \
@license_files;
554 my ($name, $need_target, $need_host) = @_;
555 $need_target{$name} = $need_target if $need_target;
556 $need_host{$name} = $need_host if $need_host;
557 unless ($dist{$name}) {
558 say qq{fetch
${name
}} unless $quiet;
559 my $result = $mcpan->release( distribution
=> $name );
560 $dist{$name} = $result;
561 my $manifest = get_manifest
( $result->{author
}, $name, $result->{version
} );
562 $need_dlopen{$name} = is_xs
( $manifest );
563 $license_files{$name} = find_license_files
( $manifest );
566 foreach my $dep (@
{$result->{dependency
}}) {
567 my $modname = ${$dep}{module
};
568 next if $modname eq q{perl};
569 next if $modname =~ m
|^Alien
|;
570 next if $modname =~ m
|^Win32
|;
571 next if !$test && $modname =~ m
|^Test
|;
572 next if Module
::CoreList
::is_core
( $modname, undef, $] );
573 # we could use the host Module::CoreList data, because host perl and
574 # target perl have the same major version
575 next if ${$dep}{phase
} eq q{develop};
576 next if !$test && ${$dep}{phase
} eq q{test};
577 next if !$recommend && ${$dep}{relationship
} ne q{requires};
578 my $distname = $mcpan->module( $modname )->{distribution
};
579 if (${$dep}{phase
} eq q{runtime}) {
580 $runtime{$distname} = 1;
582 else { # configure, build
583 $build{$distname} = 1;
586 $deps_build{$name} = [keys %build];
587 $deps_runtime{$name} = [keys %runtime];
588 foreach my $distname (@
{$deps_build{$name}}) {
589 fetch
( $distname, 0, 1 );
591 foreach my $distname (@
{$deps_runtime{$name}}) {
592 fetch
( $distname, $need_target, $need_host );
593 $need_dlopen{$name} ||= $need_dlopen{$distname};
599 foreach my $distname (@ARGV) {
600 # Command-line's distributions
601 fetch
( $distname, !!$target, !!$host );
603 say scalar keys %dist, q{ packages fetched.} unless $quiet;
605 # Buildroot package name: lowercase
609 return q{perl-} . lc $name;
612 # Buildroot variable name: uppercase
619 while (my ($distname, $dist) = each %dist) {
620 my $fsname = fsname
( $distname );
621 my $dirname = q{package/} . $fsname;
622 my $cfgname = $dirname . q{/Config.in};
623 my $mkname = $dirname . q{/} . $fsname . q{.mk};
624 my $hashname = $dirname . q{/} . $fsname . q{.hash};
625 my $brname = brname
( $fsname );
626 mkdir $dirname unless -d
$dirname;
627 if ($need_target{$distname} && ($force || !-f
$cfgname)) {
628 my $abstract = $dist->{abstract
};
629 my $homepage = $dist->{resources
}->{homepage
} || qq{https
://metacpan
.org
/release/${distname
}};
630 say qq{write ${cfgname
}} unless $quiet;
631 open my $fh, q{>}, $cfgname;
632 say {$fh} qq{config BR2_PACKAGE_
${brname
}};
633 say {$fh} qq{\tbool
"${fsname}"};
634 say {$fh} qq{\tdepends on
!BR2_STATIC_LIBS
} if $need_dlopen{$distname};
635 foreach my $dep (sort @
{$deps_runtime{$distname}}) {
636 my $brdep = brname
( fsname
( $dep ) );
637 say {$fh} qq{\tselect BR2_PACKAGE_
${brdep
}};
639 say {$fh} qq{\thelp
};
640 say {$fh} qq{\t ${abstract
}\n} if $abstract;
641 say {$fh} qq{\t ${homepage
}};
642 if ($need_dlopen{$distname}) {
643 say {$fh} qq{\ncomment
"${fsname} needs a toolchain w/ dynamic library"};
644 say {$fh} qq{\tdepends on BR2_STATIC_LIBS
};
648 if ($force || !-f
$mkname) {
649 my $version = $dist->{version
};
650 my($path) = $dist->{download_url
} =~ m
|^[^:/?#]+://[^/?
#]*([^?#]*)|;
651 # this URL contains only the scheme, auth and path parts (but no query and fragment parts)
652 # the scheme is not used, because the job is done by the BR download infrastructure
653 # the auth part is not used, because we use $(BR2_CPAN_MIRROR)
654 my($filename, $directories, $suffix) = fileparse
( $path, q{tar.gz}, q{tgz} );
655 $directories =~ s
|/$||;
656 my $dependencies = join q{ }, map( { q{host-} . fsname
( $_ ); } sort @
{$deps_build{$distname}} ),
657 map( { fsname
( $_ ); } sort @
{$deps_runtime{$distname}} );
658 my $host_dependencies = join q{ }, map { q{host-} . fsname
( $_ ); } sort( @
{$deps_build{$distname}},
659 @
{$deps_runtime{$distname}} );
660 my $license = ref $dist->{license
} eq 'ARRAY'
661 ?
join q{ or }, @
{$dist->{license
}}
663 # BR requires license name as in http://spdx.org/licenses/
664 $license =~ s
|apache_2_0
|Apache
-2.0|;
665 $license =~ s
|artistic_2
|Artistic
-2.0|;
666 $license =~ s
|mit
|MIT
|;
667 $license =~ s
|openssl
|OpenSSL
|;
668 $license =~ s
|perl_5
|Artistic
or GPLv1
+|;
669 my $license_files = join q{ }, @
{$license_files{$distname}};
670 say qq{write ${mkname
}} unless $quiet;
671 open my $fh, q{>}, $mkname;
672 say {$fh} qq{################################################################################};
674 say {$fh} qq{# ${fsname}};
676 say {$fh} qq{################################################################################};
678 say {$fh} qq{${brname
}_VERSION
= ${version
}};
679 say {$fh} qq{${brname
}_SOURCE
= ${distname
}-\
$(${brname
}_VERSION
).${suffix
}};
680 say {$fh} qq{${brname
}_SITE
= \
$(BR2_CPAN_MIRROR
)${directories
}};
681 say {$fh} qq{${brname
}_DEPENDENCIES
= ${dependencies
}} if $need_target{$distname} && $dependencies;
682 say {$fh} qq{HOST_
${brname
}_DEPENDENCIES
= ${host_dependencies
}} if $need_host{$distname} && $host_dependencies;
683 say {$fh} qq{${brname
}_LICENSE
= ${license
}} if $license && $license ne q{unknown};
684 say {$fh} qq{${brname
}_LICENSE_FILES
= ${license_files
}} if $license_files;
686 say {$fh} qq{\
$(eval \
$(perl
-package))} if $need_target{$distname};
687 say {$fh} qq{\
$(eval \
$(host
-perl
-package))} if $need_host{$distname};
690 if ($force || !-f
$hashname) {
691 my($checksum, $filename) = get_checksum
($dist->{download_url
});
692 my $md5 = $checksum->{md5
};
693 my $sha256 = $checksum->{sha256
};
694 say qq{write ${hashname
}} unless $quiet;
695 open my $fh, q{>}, $hashname;
696 say {$fh} qq{# retrieved by scancpan from http://cpan.metacpan.org/};
697 say {$fh} qq{md5
${md5
} ${filename
}};
698 say {$fh} qq{sha256
${sha256
} ${filename
}};
704 my $cfgname = q{package/Config.in};
706 open my $fh, q{<}, $cfgname;
709 $pkg{$_} = 1 if m
|package/perl
-|;
714 foreach my $distname (keys %need_target) {
715 my $fsname = fsname
( $distname );
716 $pkg{qq{\tsource
"package/${fsname}/Config.in"}} = 1;
719 say qq{${cfgname
} must contain the following lines
:};
720 say join qq{\n}, sort keys %pkg;
726 support/scripts/scancpan Try-Tiny Moo
730 curl -kL http://install.perlbrew.pl | bash
732 perlbrew install perl-5.18.2
734 supports/scripts/scancpan [options] [distname ...]
752 Prints a brief help message and exits.
756 Prints the manual page and exits.
760 Executes without output
764 Forces the overwriting of existing files.
766 =item B<-target/-notarget>
768 Switches package generation for the target variant (the default is C<-target>).
770 =item B<-host/-nohost>
772 Switches package generation for the host variant (the default is C<-nohost>).
776 Adds I<recommended> dependencies.
780 Adds dependencies for test.
786 This script creates templates of the Buildroot package files for all the
787 Perl/CPAN distributions required by the specified distnames. The
788 dependencies and metadata are fetched from https://metacpan.org/.
790 After running this script, it is necessary to check the generated files.
791 You have to manually add the license files (PERL_FOO_LICENSE_FILES variable).
792 For distributions that link against a target library, you have to add the
793 buildroot package name for that library to the DEPENDENCIES variable.
795 See the Buildroot documentation for details on the usage of the Perl
798 The major version of the host perl must be aligned on the target one,
799 in order to work with the right CoreList data.
803 Copyright (C) 2013-2014 by Francois Perrad <francois.perrad@gadz.org>
805 This program is free software; you can redistribute it and/or modify
806 it under the terms of the GNU General Public License as published by
807 the Free Software Foundation; either version 2 of the License, or
808 (at your option) any later version.
810 This program is distributed in the hope that it will be useful,
811 but WITHOUT ANY WARRANTY; without even the implied warranty of
812 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
813 General Public License for more details.
815 You should have received a copy of the GNU General Public License
816 along with this program; if not, write to the Free Software
817 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
819 This script is a part of Buildroot.
821 This script requires the module C<MetaCPAN::API::Tiny> (version 1.131730)
822 which was included at the beginning of this file by the tool C<fatpack>.
824 See L<http://search.cpan.org/~nperez/MetaCPAN-API-Tiny-1.131730/>.
826 See L<http://search.cpan.org/search?query=App-FatPacker&mode=dist>.
828 These both libraries are free software and may be distributed under the same
829 terms as perl itself.
831 And perl may be distributed under the terms of Artistic v1 or GPL v1 license.