From: Francois Perrad Date: Wed, 14 Jun 2017 14:15:30 +0000 (+0200) Subject: scancpan: refactor with MetaCPAN::API source() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e27c0b5acbac221df4ad6a1476aa1bcd1509f274;p=buildroot.git scancpan: refactor with MetaCPAN::API source() instead of get_manifest() Signed-off-by: Francois Perrad Signed-off-by: Thomas Petazzoni --- diff --git a/support/scripts/scancpan b/support/scripts/scancpan index f87cdce7af..82c77a8575 100755 --- a/support/scripts/scancpan +++ b/support/scripts/scancpan @@ -536,13 +536,6 @@ sub get_checksum { return $chksum->{$basename}, $basename; } -sub get_manifest { - my ($author, $distname, $version) = @_; - my $url = qq{http://fastapi.metacpan.org/source/${author}/${distname}-${version}/MANIFEST}; - my $response = $ua->get($url); - return $response->{content}; -} - sub is_xs { my ($manifest) = @_; # This heuristic determines if a module is a native extension, by searching @@ -572,7 +565,9 @@ sub fetch { say qq{fetch ${name}} unless $quiet; my $result = $mcpan->release( distribution => $name ); $dist{$name} = $result; - my $manifest = get_manifest( $result->{author}, $name, $result->{version} ); + my $manifest = $mcpan->source( author => $result->{author}, + release => $name . q{-} . $result->{version}, + path => 'MANIFEST' ); $need_dlopen{$name} = is_xs( $manifest ); $license_files{$name} = find_license_files( $manifest ); my %build = ();