summaryrefslogtreecommitdiffstats
path: root/support
diff options
context:
space:
mode:
authorFrancois Perrad <fperrad@gmail.com>2014-06-23 20:14:44 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2014-06-29 10:45:25 +0200
commit6b8376d8f08b35789717b48e7f5a8fdec088530d (patch)
tree205733d12e13c2e5f4d02be1848550574ad6bd07 /support
parent7cf527426fb129a026b65bd7fd5c61a152e71413 (diff)
downloadbuildroot-6b8376d8f08b35789717b48e7f5a8fdec088530d.tar.gz
buildroot-6b8376d8f08b35789717b48e7f5a8fdec088530d.zip
support/script/cpan: improve Makefile generation
- remove trailing space after perl when it's the only dependency - license: substitution of perl name by BR name - add a tabulation before source Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'support')
-rwxr-xr-xsupport/scripts/scancpan11
1 files changed, 7 insertions, 4 deletions
diff --git a/support/scripts/scancpan b/support/scripts/scancpan
index 4be47548dc..348b7cc77b 100755
--- a/support/scripts/scancpan
+++ b/support/scripts/scancpan
@@ -598,14 +598,17 @@ while (my ($distname, $dist) = each %dist) {
# the scheme is not used, because the job is done by the BR download infrastructure
# the auth part is not used, because we use $(BR2_CPAN_MIRROR)
my($filename, $directories, $suffix) = fileparse( $path, q{tar.gz}, q{tgz} );
- my $dependencies = join q{ }, map( { q{host-} . fsname( $_ ); } sort @{$deps_build{$distname}} ),
+ my $dependencies = join q{ }, qw( perl ),
+ map( { q{host-} . fsname( $_ ); } sort @{$deps_build{$distname}} ),
map( { fsname( $_ ); } sort @{$deps_runtime{$distname}} );
my $host_dependencies = join q{ }, map { q{host-} . fsname( $_ ); } sort( @{$deps_build{$distname}},
@{$deps_runtime{$distname}} );
my $license = ref $dist->{license} eq 'ARRAY'
? join q{ or }, @{$dist->{license}}
: $dist->{license};
- $license = q{Artistic or GPLv1+} if $license eq q{perl_5};
+ $license =~ s|artistic_2|Artistic-2.0|;
+ $license =~ s|openssl|OpenSSL|;
+ $license =~ s|perl_5|Artistic or GPLv1+|;
say qq{write ${mkname}} unless $quiet;
open my $fh, q{>}, $mkname;
say {$fh} qq{################################################################################};
@@ -617,7 +620,7 @@ while (my ($distname, $dist) = each %dist) {
say {$fh} qq{${brname}_VERSION = ${version}};
say {$fh} qq{${brname}_SOURCE = ${distname}-\$(${brname}_VERSION).${suffix}};
say {$fh} qq{${brname}_SITE = \$(BR2_CPAN_MIRROR)${directories}};
- say {$fh} qq{${brname}_DEPENDENCIES = perl ${dependencies}} if $need_target{$distname};
+ say {$fh} qq{${brname}_DEPENDENCIES = ${dependencies}} if $need_target{$distname};
say {$fh} qq{HOST_${brname}_DEPENDENCIES = ${host_dependencies}} if $need_host{$distname};
say {$fh} qq{${brname}_LICENSE = ${license}} if $license && $license ne q{unknown};
say {$fh} qq{};
@@ -640,7 +643,7 @@ if (-f $cfgname) {
foreach my $distname (keys %need_target) {
my $fsname = fsname( $distname );
- $pkg{qq{source "package/${fsname}/Config.in"}} = 1;
+ $pkg{qq{\tsource "package/${fsname}/Config.in"}} = 1;
}
say qq{${cfgname} must contain the following lines:};
OpenPOWER on IntegriCloud