5 our @EXPORT = qw(%package %srcpackage %category %subdir %preconfig %features %overrides clear_packages parse_package_metadata parse_target_metadata get_multiline);
21 $str .= (($_ and $prefix) ? $prefix . $_ : $_);
24 return $str ? $str : "";
29 $conf =~ tr#/\.\-/#___#;
33 sub parse_target_metadata($) {
35 my ($target, @target, $profile);
39 open FILE, "<$file" or do {
40 warn "Can't open file '$file': $!\n";
45 /^Source-Makefile: \s*((.+\/)([^\/]+)\/Makefile)\s*$/ and $makefile = $1;
46 /^Target:\s*(.+)\s*$/ and do {
51 makefile => $makefile,
52 boardconf => confstr($name),
53 conf => confstr($name),
59 push @target, $target;
60 $target{$name} = $target;
61 if ($name =~ /([^\/]+)\/([^\/]+)/) {
62 push @{$target{$1}->{subtargets}}, $2;
63 $target->{board} = $1;
64 $target->{boardconf} = confstr($1);
65 $target->{subtarget} = 1;
66 $target->{parent} = $target{$1};
69 /^Target-Name:\s*(.+)\s*$/ and $target->{name} = $1;
70 /^Target-Path:\s*(.+)\s*$/ and $target->{path} = $1;
71 /^Target-Arch:\s*(.+)\s*$/ and $target->{arch} = $1;
72 /^Target-Arch-Packages:\s*(.+)\s*$/ and $target->{arch_packages} = $1;
73 /^Target-Features:\s*(.+)\s*$/ and $target->{features} = [ split(/\s+/, $1) ];
74 /^Target-Depends:\s*(.+)\s*$/ and $target->{depends} = [ split(/\s+/, $1) ];
75 /^Target-Description:/ and $target->{desc} = get_multiline(*FILE);
76 /^Target-Optimization:\s*(.+)\s*$/ and $target->{cflags} = $1;
77 /^CPU-Type:\s*(.+)\s*$/ and $target->{cputype} = $1;
78 /^Linux-Version:\s*(.+)\s*$/ and $target->{version} = $1;
79 /^Linux-Release:\s*(.+)\s*$/ and $target->{release} = $1;
80 /^Linux-Kernel-Arch:\s*(.+)\s*$/ and $target->{karch} = $1;
81 /^Default-Subtarget:\s*(.+)\s*$/ and $target->{def_subtarget} = $1;
82 /^Default-Packages:\s*(.+)\s*$/ and $target->{packages} = [ split(/\s+/, $1) ];
83 /^Target-Profile:\s*(.+)\s*$/ and do {
89 push @{$target->{profiles}}, $profile;
91 /^Target-Profile-Name:\s*(.+)\s*$/ and $profile->{name} = $1;
92 /^Target-Profile-Packages:\s*(.*)\s*$/ and $profile->{packages} = [ split(/\s+/, $1) ];
93 /^Target-Profile-Description:\s*(.*)\s*/ and $profile->{desc} = get_multiline(*FILE);
94 /^Target-Profile-Config:/ and $profile->{config} = get_multiline(*FILE, "\t");
95 /^Target-Profile-Kconfig:/ and $profile->{kconfig} = 1;
98 foreach my $target (@target) {
99 if (@{$target->{subtargets}} > 0) {
100 $target->{profiles} = [];
103 @{$target->{profiles}} > 0 or $target->{profiles} = [
114 sub clear_packages() {
124 sub parse_package_metadata($) {
134 open FILE, "<$file" or do {
135 warn "Cannot open '$file': $!\n";
140 /^Source-Makefile: \s*((.+\/)([^\/]+)\/Makefile)\s*$/ and do {
144 $subdir =~ s/^package\///;
145 $subdir{$src} = $subdir;
146 $srcpackage{$src} = [];
150 /^Override: \s*(.+?)\s*$/ and do {
152 $overrides{$src} = 1;
155 /^Package:\s*(.+?)\s*$/ and do {
159 $pkg->{makefile} = $makefile;
162 $pkg->{depends} = [];
163 $pkg->{mdepends} = [];
164 $pkg->{builddepends} = [];
165 $pkg->{buildtypes} = [];
166 $pkg->{subdir} = $subdir;
167 $pkg->{tristate} = 1;
168 $pkg->{override} = $override;
170 push @{$srcpackage{$src}}, $pkg;
172 /^Feature:\s*(.+?)\s*$/ and do {
175 $feature->{name} = $1;
176 $feature->{priority} = 0;
179 /^Target-Name:\s*(.+?)\s*$/ and do {
180 $features{$1} or $features{$1} = [];
181 push @{$features{$1}}, $feature;
183 /^Target-Title:\s*(.+?)\s*$/ and $feature->{target_title} = $1;
184 /^Feature-Priority:\s*(\d+)\s*$/ and $feature->{priority} = $1;
185 /^Feature-Name:\s*(.+?)\s*$/ and $feature->{title} = $1;
186 /^Feature-Description:/ and $feature->{description} = get_multiline(\*FILE, "\t\t\t");
190 /^Version: \s*(.+)\s*$/ and $pkg->{version} = $1;
191 /^Title: \s*(.+)\s*$/ and $pkg->{title} = $1;
192 /^Menu: \s*(.+)\s*$/ and $pkg->{menu} = $1;
193 /^Submenu: \s*(.+)\s*$/ and $pkg->{submenu} = $1;
194 /^Submenu-Depends: \s*(.+)\s*$/ and $pkg->{submenudep} = $1;
195 /^Source: \s*(.+)\s*$/ and $pkg->{source} = $1;
196 /^License: \s*(.+)\s*$/ and $pkg->{license} = $1;
197 /^LicenseFiles: \s*(.+)\s*$/ and $pkg->{licensefiles} = $1;
198 /^Default: \s*(.+)\s*$/ and $pkg->{default} = $1;
199 /^Provides: \s*(.+)\s*$/ and do {
200 my @vpkg = split /\s+/, $1;
201 foreach my $vpkg (@vpkg) {
202 $package{$vpkg} or $package{$vpkg} = {
207 makefile => $makefile
209 push @{$package{$vpkg}->{vdepends}}, $pkg->{name};
212 /^Menu-Depends: \s*(.+)\s*$/ and $pkg->{mdepends} = [ split /\s+/, $1 ];
213 /^Depends: \s*(.+)\s*$/ and $pkg->{depends} = [ split /\s+/, $1 ];
214 /^Conflicts: \s*(.+)\s*$/ and $pkg->{conflicts} = [ split /\s+/, $1 ];
215 /^Hidden: \s*(.+)\s*$/ and $pkg->{hidden} = 1;
216 /^Build-Variant: \s*([\w\-]+)\s*/ and $pkg->{variant} = $1;
217 /^Default-Variant: .*/ and $pkg->{variant_default} = 1;
218 /^Build-Only: \s*(.+)\s*$/ and $pkg->{buildonly} = 1;
219 /^Build-Depends: \s*(.+)\s*$/ and $pkg->{builddepends} = [ split /\s+/, $1 ];
220 /^Build-Depends\/(\w+): \s*(.+)\s*$/ and $pkg->{"builddepends/$1"} = [ split /\s+/, $2 ];
221 /^Build-Types:\s*(.+)\s*$/ and $pkg->{buildtypes} = [ split /\s+/, $1 ];
222 /^Feed:\s*(.+?)\s*$/ and $pkg->{feed} = $1;
223 /^Category: \s*(.+)\s*$/ and do {
224 $pkg->{category} = $1;
225 defined $category{$1} or $category{$1} = {};
226 defined $category{$1}->{$src} or $category{$1}->{$src} = [];
227 push @{$category{$1}->{$src}}, $pkg;
229 /^Description: \s*(.*)\s*$/ and $pkg->{description} = "\t\t $1\n". get_multiline(*FILE, "\t\t ");
230 /^Type: \s*(.+)\s*$/ and do {
231 $pkg->{type} = [ split /\s+/, $1 ];
232 undef $pkg->{tristate};
233 foreach my $type (@{$pkg->{type}}) {
234 $type =~ /ipkg/ and $pkg->{tristate} = 1;
237 /^Config:\s*(.*)\s*$/ and $pkg->{config} = "$1\n".get_multiline(*FILE, "\t");
238 /^Prereq-Check:/ and $pkg->{prereq} = 1;
239 /^Preconfig:\s*(.+)\s*$/ and do {
240 my $pkgname = $pkg->{name};
241 $preconfig{$pkgname} or $preconfig{$pkgname} = {};
242 if (exists $preconfig{$pkgname}->{$1}) {
243 $preconfig = $preconfig{$pkgname}->{$1};
248 $preconfig{$pkgname}->{$1} = $preconfig;
251 /^Preconfig-Type:\s*(.*?)\s*$/ and $preconfig->{type} = $1;
252 /^Preconfig-Label:\s*(.*?)\s*$/ and $preconfig->{label} = $1;
253 /^Preconfig-Default:\s*(.*?)\s*$/ and $preconfig->{default} = $1;