5 our @EXPORT = qw(%package %vpackage %srcpackage %category %overrides clear_packages parse_package_metadata parse_target_metadata get_multiline @ignore %usernames %groupnames);
25 $str .= (($_ and $prefix) ? $prefix . $_ : $_);
28 return $str ? $str : "";
33 $conf =~ tr#/\.\-/#___#;
37 sub parse_package_metadata_usergroup($$$$$) {
46 # the regex for name is taken from is_valid_name() of package shadow
47 if ($spec =~ /^([a-z_][a-z0-9_-]*\$?)$/) {
50 } elsif ($spec =~ /^([a-z_][a-z0-9_-]*\$?)=(\d+)$/) {
54 warn "$makefile: invalid $typename spec $spec\n";
58 if ($id =~ /^[1-9]\d*$/) {
60 warn "$makefile: $typename $name id $id >= 65536";
63 if (not exists $ids->{$id}) {
66 makefile => $makefile,
68 } elsif ($ids->{$id}{name} ne $name) {
69 warn "$makefile: $typename $name id $id is already taken by $ids->{$id}{makefile}\n";
73 warn "$makefile: $typename $name has invalid id $id\n";
77 if (not exists $names->{$name}) {
80 makefile => $makefile,
82 } elsif ($names->{$name}{id} != $id) {
83 warn "$makefile: id of $typename $name collides with that defined defined in $names->{$name}{makefile}\n";
89 sub parse_target_metadata($) {
91 my ($target, @target, $profile);
95 open FILE, "<$file" or do {
96 warn "Can't open file '$file': $!\n";
101 /^Source-Makefile: \s*((.+\/)([^\/]+)\/Makefile)\s*$/ and $makefile = $1;
102 /^Target:\s*(.+)\s*$/ and do {
107 makefile => $makefile,
108 boardconf => confstr($name),
109 conf => confstr($name),
115 push @target, $target;
116 $target{$name} = $target;
117 if ($name =~ /([^\/]+)\/([^\/]+)/) {
118 push @{$target{$1}->{subtargets}}, $2;
119 $target->{board} = $1;
120 $target->{boardconf} = confstr($1);
121 $target->{subtarget} = 1;
122 $target->{parent} = $target{$1};
125 /^Target-Name:\s*(.+)\s*$/ and $target->{name} = $1;
126 /^Target-Arch:\s*(.+)\s*$/ and $target->{arch} = $1;
127 /^Target-Arch-Packages:\s*(.+)\s*$/ and $target->{arch_packages} = $1;
128 /^Target-Features:\s*(.+)\s*$/ and $target->{features} = [ split(/\s+/, $1) ];
129 /^Target-Depends:\s*(.+)\s*$/ and $target->{depends} = [ split(/\s+/, $1) ];
130 /^Target-Description:/ and $target->{desc} = get_multiline(*FILE);
131 /^Target-Optimization:\s*(.+)\s*$/ and $target->{cflags} = $1;
132 /^CPU-Type:\s*(.+)\s*$/ and $target->{cputype} = $1;
133 /^Linux-Version:\s*(.+)\s*$/ and $target->{version} = $1;
134 /^Linux-Testing-Version:\s*(.+)\s*$/ and $target->{testing_version} = $1;
135 /^Linux-Release:\s*(.+)\s*$/ and $target->{release} = $1;
136 /^Linux-Kernel-Arch:\s*(.+)\s*$/ and $target->{karch} = $1;
137 /^Default-Subtarget:\s*(.+)\s*$/ and $target->{def_subtarget} = $1;
138 /^Default-Packages:\s*(.+)\s*$/ and $target->{packages} = [ split(/\s+/, $1) ];
139 /^Target-Profile:\s*(.+)\s*$/ and do {
143 has_image_metadata => 0,
144 supported_devices => [],
147 default => "y if TARGET_ALL_PROFILES"
149 $1 =~ /^DEVICE_/ and $target->{has_devices} = 1;
150 push @{$target->{profiles}}, $profile;
152 /^Target-Profile-Name:\s*(.+)\s*$/ and $profile->{name} = $1;
153 /^Target-Profile-hasImageMetadata:\s*(\d+)\s*$/ and $profile->{has_image_metadata} = $1;
154 /^Target-Profile-SupportedDevices:\s*(.+)\s*$/ and $profile->{supported_devices} = [ split(/\s+/, $1) ];
155 /^Target-Profile-Priority:\s*(\d+)\s*$/ and do {
156 $profile->{priority} = $1;
159 /^Target-Profile-Packages:\s*(.*)\s*$/ and $profile->{packages} = [ split(/\s+/, $1) ];
160 /^Target-Profile-Description:\s*(.*)\s*/ and $profile->{desc} = get_multiline(*FILE);
161 /^Target-Profile-Default:\s*(.+)\s*$/ and $profile->{default} = $1;
164 foreach my $target (@target) {
165 if (@{$target->{subtargets}} > 0) {
166 $target->{profiles} = [];
169 @{$target->{profiles}} > 0 or $target->{profiles} = [
177 $target->{sort} and @{$target->{profiles}} = sort {
178 $a->{priority} <=> $b->{priority} or
179 $a->{name} cmp $b->{name};
180 } @{$target->{profiles}};
185 sub clear_packages() {
195 sub parse_package_metadata($) {
200 my %ignore = map { $_ => 1 } @ignore;
202 open FILE, "<$file" or do {
203 warn "Cannot open '$file': $!\n";
208 /^Source-Makefile: \s*((?:package\/)?((?:.+\/)?([^\/]+))\/Makefile)\s*$/ and do {
213 ignore => $ignore{$3},
218 $srcpackage{$3} = $src;
222 /^Override: \s*(.+?)\s*$/ and do {
224 $overrides{$src->{name}} = 1;
227 /^Package:\s*(.+?)\s*$/ and do {
232 $pkg->{depends} = [];
233 $pkg->{mdepends} = [];
234 $pkg->{provides} = [$1];
235 $pkg->{tristate} = 1;
236 $pkg->{override} = $override;
238 push @{$src->{packages}}, $pkg;
240 $vpackage{$1} or $vpackage{$1} = [];
241 unshift @{$vpackage{$1}}, $pkg;
243 /^Build-Depends: \s*(.+)\s*$/ and $src->{builddepends} = [ split /\s+/, $1 ];
244 /^Build-Depends\/(\w+): \s*(.+)\s*$/ and $src->{"builddepends/$1"} = [ split /\s+/, $2 ];
245 /^Build-Types:\s*(.+)\s*$/ and $src->{buildtypes} = [ split /\s+/, $1 ];
247 /^Version: \s*(.+)\s*$/ and $pkg->{version} = $1;
248 /^ABIVersion: \s*(.+)\s*$/ and $pkg->{abiversion} = $1;
249 /^Title: \s*(.+)\s*$/ and $pkg->{title} = $1;
250 /^Menu: \s*(.+)\s*$/ and $pkg->{menu} = $1;
251 /^Submenu: \s*(.+)\s*$/ and $pkg->{submenu} = $1;
252 /^Submenu-Depends: \s*(.+)\s*$/ and $pkg->{submenudep} = $1;
253 /^Source: \s*(.+)\s*$/ and $pkg->{source} = $1;
254 /^License: \s*(.+)\s*$/ and $pkg->{license} = $1;
255 /^LicenseFiles: \s*(.+)\s*$/ and $pkg->{licensefiles} = $1;
256 /^Default: \s*(.+)\s*$/ and $pkg->{default} = $1;
257 /^Provides: \s*(.+)\s*$/ and do {
258 my @vpkg = split /\s+/, $1;
259 @{$pkg->{provides}} = ($pkg->{name}, @vpkg);
260 foreach my $vpkg (@vpkg) {
261 next if ($vpkg eq $pkg->{name});
262 $vpackage{$vpkg} or $vpackage{$vpkg} = [];
263 push @{$vpackage{$vpkg}}, $pkg;
266 /^Menu-Depends: \s*(.+)\s*$/ and $pkg->{mdepends} = [ split /\s+/, $1 ];
267 /^Depends: \s*(.+)\s*$/ and $pkg->{depends} = [ split /\s+/, $1 ];
268 /^Conflicts: \s*(.+)\s*$/ and $pkg->{conflicts} = [ split /\s+/, $1 ];
269 /^Hidden: \s*(.+)\s*$/ and $pkg->{hidden} = 1;
270 /^Build-Variant: \s*([\w\-]+)\s*/ and $pkg->{variant} = $1;
271 /^Default-Variant: .*/ and $pkg->{variant_default} = 1;
272 /^Build-Only: \s*(.+)\s*$/ and $pkg->{buildonly} = 1;
273 /^Repository:\s*(.+?)\s*$/ and $pkg->{repository} = $1;
274 /^Category: \s*(.+)\s*$/ and do {
275 $pkg->{category} = $1;
276 defined $category{$1} or $category{$1} = {};
277 defined $category{$1}{$src->{name}} or $category{$1}{$src->{name}} = [];
278 push @{$category{$1}{$src->{name}}}, $pkg;
280 /^Description: \s*(.*)\s*$/ and $pkg->{description} = "\t\t $1\n". get_multiline(*FILE, "\t\t ");
281 /^Type: \s*(.+)\s*$/ and do {
282 $pkg->{type} = [ split /\s+/, $1 ];
283 undef $pkg->{tristate};
284 foreach my $type (@{$pkg->{type}}) {
285 $type =~ /ipkg/ and $pkg->{tristate} = 1;
288 /^Config:\s*(.*)\s*$/ and $pkg->{config} = "$1\n".get_multiline(*FILE, "\t");
289 /^Prereq-Check:/ and $pkg->{prereq} = 1;
290 /^Require-User:\s*(.*?)\s*$/ and do {
291 my @ugspecs = split /\s+/, $1;
293 for my $ugspec (@ugspecs) {
294 my @ugspec = split /:/, $ugspec, 2;
296 parse_package_metadata_usergroup($src->{makefile}, "user", \%usernames, \%userids, $ugspec[0]) or return 0;
299 parse_package_metadata_usergroup($src->{makefile}, "group", \%groupnames, \%groupids, $ugspec[1]) or return 0;