2007-09-23 10:39:01 +08:00
|
|
|
package metadata;
|
|
|
|
use base 'Exporter';
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
2015-03-15 19:07:40 +08:00
|
|
|
our @EXPORT = qw(%package %srcpackage %category %subdir %preconfig %features %overrides clear_packages parse_package_metadata parse_target_metadata get_multiline);
|
2007-09-23 10:39:01 +08:00
|
|
|
|
|
|
|
our %package;
|
|
|
|
our %preconfig;
|
|
|
|
our %srcpackage;
|
|
|
|
our %category;
|
|
|
|
our %subdir;
|
2009-10-18 06:11:21 +08:00
|
|
|
our %features;
|
2015-02-09 20:09:43 +08:00
|
|
|
our %overrides;
|
2007-09-23 10:39:01 +08:00
|
|
|
|
|
|
|
sub get_multiline {
|
|
|
|
my $fh = shift;
|
|
|
|
my $prefix = shift;
|
|
|
|
my $str;
|
|
|
|
while (<$fh>) {
|
|
|
|
last if /^@@/;
|
|
|
|
$str .= (($_ and $prefix) ? $prefix . $_ : $_);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $str ? $str : "";
|
|
|
|
}
|
|
|
|
|
2015-03-15 19:07:40 +08:00
|
|
|
sub confstr($) {
|
|
|
|
my $conf = shift;
|
|
|
|
$conf =~ tr#/\.\-/#___#;
|
|
|
|
return $conf;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub parse_target_metadata($) {
|
|
|
|
my $file = shift;
|
|
|
|
my ($target, @target, $profile);
|
|
|
|
my %target;
|
2015-03-15 19:08:01 +08:00
|
|
|
my $makefile;
|
2015-03-15 19:07:40 +08:00
|
|
|
|
|
|
|
open FILE, "<$file" or do {
|
|
|
|
warn "Can't open file '$file': $!\n";
|
|
|
|
return;
|
|
|
|
};
|
|
|
|
while (<FILE>) {
|
|
|
|
chomp;
|
2015-03-15 19:08:01 +08:00
|
|
|
/^Source-Makefile: \s*((.+\/)([^\/]+)\/Makefile)\s*$/ and $makefile = $1;
|
2015-03-15 19:07:40 +08:00
|
|
|
/^Target:\s*(.+)\s*$/ and do {
|
|
|
|
my $name = $1;
|
|
|
|
$target = {
|
|
|
|
id => $name,
|
|
|
|
board => $name,
|
2015-03-15 19:08:01 +08:00
|
|
|
makefile => $makefile,
|
2015-03-15 19:07:40 +08:00
|
|
|
boardconf => confstr($name),
|
|
|
|
conf => confstr($name),
|
|
|
|
profiles => [],
|
|
|
|
features => [],
|
|
|
|
depends => [],
|
|
|
|
subtargets => []
|
|
|
|
};
|
|
|
|
push @target, $target;
|
|
|
|
$target{$name} = $target;
|
|
|
|
if ($name =~ /([^\/]+)\/([^\/]+)/) {
|
|
|
|
push @{$target{$1}->{subtargets}}, $2;
|
|
|
|
$target->{board} = $1;
|
|
|
|
$target->{boardconf} = confstr($1);
|
|
|
|
$target->{subtarget} = 1;
|
|
|
|
$target->{parent} = $target{$1};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
/^Target-Name:\s*(.+)\s*$/ and $target->{name} = $1;
|
|
|
|
/^Target-Path:\s*(.+)\s*$/ and $target->{path} = $1;
|
|
|
|
/^Target-Arch:\s*(.+)\s*$/ and $target->{arch} = $1;
|
|
|
|
/^Target-Arch-Packages:\s*(.+)\s*$/ and $target->{arch_packages} = $1;
|
|
|
|
/^Target-Features:\s*(.+)\s*$/ and $target->{features} = [ split(/\s+/, $1) ];
|
|
|
|
/^Target-Depends:\s*(.+)\s*$/ and $target->{depends} = [ split(/\s+/, $1) ];
|
|
|
|
/^Target-Description:/ and $target->{desc} = get_multiline(*FILE);
|
|
|
|
/^Target-Optimization:\s*(.+)\s*$/ and $target->{cflags} = $1;
|
|
|
|
/^CPU-Type:\s*(.+)\s*$/ and $target->{cputype} = $1;
|
|
|
|
/^Linux-Version:\s*(.+)\s*$/ and $target->{version} = $1;
|
|
|
|
/^Linux-Release:\s*(.+)\s*$/ and $target->{release} = $1;
|
|
|
|
/^Linux-Kernel-Arch:\s*(.+)\s*$/ and $target->{karch} = $1;
|
|
|
|
/^Default-Subtarget:\s*(.+)\s*$/ and $target->{def_subtarget} = $1;
|
|
|
|
/^Default-Packages:\s*(.+)\s*$/ and $target->{packages} = [ split(/\s+/, $1) ];
|
|
|
|
/^Target-Profile:\s*(.+)\s*$/ and do {
|
|
|
|
$profile = {
|
|
|
|
id => $1,
|
|
|
|
name => $1,
|
|
|
|
packages => []
|
|
|
|
};
|
|
|
|
push @{$target->{profiles}}, $profile;
|
|
|
|
};
|
|
|
|
/^Target-Profile-Name:\s*(.+)\s*$/ and $profile->{name} = $1;
|
|
|
|
/^Target-Profile-Packages:\s*(.*)\s*$/ and $profile->{packages} = [ split(/\s+/, $1) ];
|
|
|
|
/^Target-Profile-Description:\s*(.*)\s*/ and $profile->{desc} = get_multiline(*FILE);
|
|
|
|
/^Target-Profile-Config:/ and $profile->{config} = get_multiline(*FILE, "\t");
|
|
|
|
/^Target-Profile-Kconfig:/ and $profile->{kconfig} = 1;
|
|
|
|
}
|
|
|
|
close FILE;
|
|
|
|
foreach my $target (@target) {
|
|
|
|
if (@{$target->{subtargets}} > 0) {
|
|
|
|
$target->{profiles} = [];
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
@{$target->{profiles}} > 0 or $target->{profiles} = [
|
|
|
|
{
|
|
|
|
id => 'Default',
|
|
|
|
name => 'Default',
|
|
|
|
packages => []
|
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
|
|
|
return @target;
|
|
|
|
}
|
|
|
|
|
2007-09-23 10:39:01 +08:00
|
|
|
sub clear_packages() {
|
|
|
|
%subdir = ();
|
|
|
|
%preconfig = ();
|
|
|
|
%package = ();
|
|
|
|
%srcpackage = ();
|
|
|
|
%category = ();
|
2009-10-18 06:11:21 +08:00
|
|
|
%features = ();
|
2015-02-09 20:09:43 +08:00
|
|
|
%overrides = ();
|
2007-09-23 10:39:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
sub parse_package_metadata($) {
|
|
|
|
my $file = shift;
|
|
|
|
my $pkg;
|
2009-10-18 06:11:21 +08:00
|
|
|
my $feature;
|
2007-09-23 10:39:01 +08:00
|
|
|
my $makefile;
|
|
|
|
my $preconfig;
|
|
|
|
my $subdir;
|
|
|
|
my $src;
|
2015-02-09 20:09:43 +08:00
|
|
|
my $override;
|
2007-09-23 10:39:01 +08:00
|
|
|
|
|
|
|
open FILE, "<$file" or do {
|
|
|
|
warn "Cannot open '$file': $!\n";
|
|
|
|
return undef;
|
|
|
|
};
|
|
|
|
while (<FILE>) {
|
|
|
|
chomp;
|
|
|
|
/^Source-Makefile: \s*((.+\/)([^\/]+)\/Makefile)\s*$/ and do {
|
|
|
|
$makefile = $1;
|
|
|
|
$subdir = $2;
|
|
|
|
$src = $3;
|
|
|
|
$subdir =~ s/^package\///;
|
|
|
|
$subdir{$src} = $subdir;
|
|
|
|
$srcpackage{$src} = [];
|
2015-02-09 20:09:43 +08:00
|
|
|
$override = "";
|
2007-09-23 10:39:01 +08:00
|
|
|
undef $pkg;
|
|
|
|
};
|
2015-02-09 20:09:43 +08:00
|
|
|
/^Override: \s*(.+?)\s*$/ and do {
|
|
|
|
$override = $1;
|
|
|
|
$overrides{$src} = 1;
|
|
|
|
};
|
2008-08-17 01:00:50 +08:00
|
|
|
next unless $src;
|
2007-09-23 10:39:01 +08:00
|
|
|
/^Package:\s*(.+?)\s*$/ and do {
|
2009-10-18 06:11:21 +08:00
|
|
|
undef $feature;
|
2007-09-23 10:39:01 +08:00
|
|
|
$pkg = {};
|
|
|
|
$pkg->{src} = $src;
|
|
|
|
$pkg->{makefile} = $makefile;
|
|
|
|
$pkg->{name} = $1;
|
2009-05-05 02:50:58 +08:00
|
|
|
$pkg->{title} = "";
|
2007-09-23 10:39:01 +08:00
|
|
|
$pkg->{depends} = [];
|
2011-04-06 03:03:51 +08:00
|
|
|
$pkg->{mdepends} = [];
|
2007-09-23 10:39:01 +08:00
|
|
|
$pkg->{builddepends} = [];
|
2009-03-17 10:20:34 +08:00
|
|
|
$pkg->{buildtypes} = [];
|
2007-09-23 10:39:01 +08:00
|
|
|
$pkg->{subdir} = $subdir;
|
2007-09-29 09:21:56 +08:00
|
|
|
$pkg->{tristate} = 1;
|
2015-02-09 20:09:43 +08:00
|
|
|
$pkg->{override} = $override;
|
2007-09-23 10:39:01 +08:00
|
|
|
$package{$1} = $pkg;
|
|
|
|
push @{$srcpackage{$src}}, $pkg;
|
|
|
|
};
|
2009-10-18 06:11:21 +08:00
|
|
|
/^Feature:\s*(.+?)\s*$/ and do {
|
|
|
|
undef $pkg;
|
|
|
|
$feature = {};
|
|
|
|
$feature->{name} = $1;
|
|
|
|
$feature->{priority} = 0;
|
|
|
|
};
|
|
|
|
$feature and do {
|
|
|
|
/^Target-Name:\s*(.+?)\s*$/ and do {
|
|
|
|
$features{$1} or $features{$1} = [];
|
|
|
|
push @{$features{$1}}, $feature;
|
|
|
|
};
|
|
|
|
/^Target-Title:\s*(.+?)\s*$/ and $feature->{target_title} = $1;
|
|
|
|
/^Feature-Priority:\s*(\d+)\s*$/ and $feature->{priority} = $1;
|
|
|
|
/^Feature-Name:\s*(.+?)\s*$/ and $feature->{title} = $1;
|
|
|
|
/^Feature-Description:/ and $feature->{description} = get_multiline(\*FILE, "\t\t\t");
|
|
|
|
next;
|
|
|
|
};
|
|
|
|
next unless $pkg;
|
2007-09-23 10:39:01 +08:00
|
|
|
/^Version: \s*(.+)\s*$/ and $pkg->{version} = $1;
|
|
|
|
/^Title: \s*(.+)\s*$/ and $pkg->{title} = $1;
|
|
|
|
/^Menu: \s*(.+)\s*$/ and $pkg->{menu} = $1;
|
|
|
|
/^Submenu: \s*(.+)\s*$/ and $pkg->{submenu} = $1;
|
|
|
|
/^Submenu-Depends: \s*(.+)\s*$/ and $pkg->{submenudep} = $1;
|
2009-03-01 17:35:53 +08:00
|
|
|
/^Source: \s*(.+)\s*$/ and $pkg->{source} = $1;
|
2014-10-27 00:57:33 +08:00
|
|
|
/^License: \s*(.+)\s*$/ and $pkg->{license} = $1;
|
|
|
|
/^LicenseFiles: \s*(.+)\s*$/ and $pkg->{licensefiles} = $1;
|
2007-09-23 10:39:01 +08:00
|
|
|
/^Default: \s*(.+)\s*$/ and $pkg->{default} = $1;
|
|
|
|
/^Provides: \s*(.+)\s*$/ and do {
|
|
|
|
my @vpkg = split /\s+/, $1;
|
|
|
|
foreach my $vpkg (@vpkg) {
|
2008-08-05 06:22:43 +08:00
|
|
|
$package{$vpkg} or $package{$vpkg} = {
|
|
|
|
name => $vpkg,
|
|
|
|
vdepends => [],
|
|
|
|
src => $src,
|
|
|
|
subdir => $subdir,
|
|
|
|
makefile => $makefile
|
|
|
|
};
|
2007-09-23 10:39:01 +08:00
|
|
|
push @{$package{$vpkg}->{vdepends}}, $pkg->{name};
|
|
|
|
}
|
|
|
|
};
|
2011-04-06 03:03:51 +08:00
|
|
|
/^Menu-Depends: \s*(.+)\s*$/ and $pkg->{mdepends} = [ split /\s+/, $1 ];
|
2007-09-23 10:39:01 +08:00
|
|
|
/^Depends: \s*(.+)\s*$/ and $pkg->{depends} = [ split /\s+/, $1 ];
|
2014-10-06 00:41:33 +08:00
|
|
|
/^Conflicts: \s*(.+)\s*$/ and $pkg->{conflicts} = [ split /\s+/, $1 ];
|
2011-07-02 14:49:09 +08:00
|
|
|
/^Hidden: \s*(.+)\s*$/ and $pkg->{hidden} = 1;
|
2010-01-23 16:28:15 +08:00
|
|
|
/^Build-Variant: \s*([\w\-]+)\s*/ and $pkg->{variant} = $1;
|
2014-09-23 18:41:15 +08:00
|
|
|
/^Default-Variant: .*/ and $pkg->{variant_default} = 1;
|
2009-01-13 10:02:56 +08:00
|
|
|
/^Build-Only: \s*(.+)\s*$/ and $pkg->{buildonly} = 1;
|
2007-09-23 10:39:01 +08:00
|
|
|
/^Build-Depends: \s*(.+)\s*$/ and $pkg->{builddepends} = [ split /\s+/, $1 ];
|
2009-03-17 10:20:34 +08:00
|
|
|
/^Build-Depends\/(\w+): \s*(.+)\s*$/ and $pkg->{"builddepends/$1"} = [ split /\s+/, $2 ];
|
|
|
|
/^Build-Types:\s*(.+)\s*$/ and $pkg->{buildtypes} = [ split /\s+/, $1 ];
|
2014-08-05 19:24:24 +08:00
|
|
|
/^Feed:\s*(.+?)\s*$/ and $pkg->{feed} = $1;
|
2007-09-23 10:39:01 +08:00
|
|
|
/^Category: \s*(.+)\s*$/ and do {
|
|
|
|
$pkg->{category} = $1;
|
|
|
|
defined $category{$1} or $category{$1} = {};
|
|
|
|
defined $category{$1}->{$src} or $category{$1}->{$src} = [];
|
|
|
|
push @{$category{$1}->{$src}}, $pkg;
|
|
|
|
};
|
|
|
|
/^Description: \s*(.*)\s*$/ and $pkg->{description} = "\t\t $1\n". get_multiline(*FILE, "\t\t ");
|
2007-09-29 09:21:56 +08:00
|
|
|
/^Type: \s*(.+)\s*$/ and do {
|
|
|
|
$pkg->{type} = [ split /\s+/, $1 ];
|
|
|
|
undef $pkg->{tristate};
|
|
|
|
foreach my $type (@{$pkg->{type}}) {
|
|
|
|
$type =~ /ipkg/ and $pkg->{tristate} = 1;
|
|
|
|
}
|
|
|
|
};
|
2009-03-03 22:03:37 +08:00
|
|
|
/^Config:\s*(.*)\s*$/ and $pkg->{config} = "$1\n".get_multiline(*FILE, "\t");
|
2007-09-23 10:39:01 +08:00
|
|
|
/^Prereq-Check:/ and $pkg->{prereq} = 1;
|
|
|
|
/^Preconfig:\s*(.+)\s*$/ and do {
|
|
|
|
my $pkgname = $pkg->{name};
|
|
|
|
$preconfig{$pkgname} or $preconfig{$pkgname} = {};
|
|
|
|
if (exists $preconfig{$pkgname}->{$1}) {
|
|
|
|
$preconfig = $preconfig{$pkgname}->{$1};
|
|
|
|
} else {
|
|
|
|
$preconfig = {
|
|
|
|
id => $1
|
|
|
|
};
|
|
|
|
$preconfig{$pkgname}->{$1} = $preconfig;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
/^Preconfig-Type:\s*(.*?)\s*$/ and $preconfig->{type} = $1;
|
|
|
|
/^Preconfig-Label:\s*(.*?)\s*$/ and $preconfig->{label} = $1;
|
|
|
|
/^Preconfig-Default:\s*(.*?)\s*$/ and $preconfig->{default} = $1;
|
|
|
|
}
|
|
|
|
close FILE;
|
2007-12-14 08:33:25 +08:00
|
|
|
return 1;
|
2007-09-23 10:39:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
1;
|