package-metadata.pl 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645
  1. #!/usr/bin/env perl
  2. use FindBin;
  3. use lib "$FindBin::Bin";
  4. use strict;
  5. use metadata;
  6. use Getopt::Long;
  7. my %board;
  8. sub version_to_num($) {
  9. my $str = shift;
  10. my $num = 0;
  11. if (defined($str) && $str =~ /^\d+(?:\.\d+)+$/)
  12. {
  13. my @n = (split(/\./, $str), 0, 0, 0, 0);
  14. $num = ($n[0] << 24) | ($n[1] << 16) | ($n[2] << 8) | $n[3];
  15. }
  16. return $num;
  17. }
  18. sub version_filter_list(@) {
  19. my $cmpver = version_to_num(shift @_);
  20. my @items;
  21. foreach my $item (@_)
  22. {
  23. if ($item =~ s/@(lt|le|gt|ge|eq|ne)(\d+(?:\.\d+)+)\b//)
  24. {
  25. my $op = $1;
  26. my $symver = version_to_num($2);
  27. if ($symver > 0 && $cmpver > 0)
  28. {
  29. next unless (($op eq 'lt' && $cmpver < $symver) ||
  30. ($op eq 'le' && $cmpver <= $symver) ||
  31. ($op eq 'gt' && $cmpver > $symver) ||
  32. ($op eq 'ge' && $cmpver >= $symver) ||
  33. ($op eq 'eq' && $cmpver == $symver) ||
  34. ($op eq 'ne' && $cmpver != $symver));
  35. }
  36. }
  37. push @items, $item;
  38. }
  39. return @items;
  40. }
  41. sub gen_kconfig_overrides() {
  42. my %config;
  43. my %kconfig;
  44. my $package;
  45. my $pkginfo = shift @ARGV;
  46. my $cfgfile = shift @ARGV;
  47. my $patchver = shift @ARGV;
  48. # parameter 2: build system config
  49. open FILE, "<$cfgfile" or return;
  50. while (<FILE>) {
  51. /^(CONFIG_.+?)=(.+)$/ and $config{$1} = 1;
  52. }
  53. close FILE;
  54. # parameter 1: package metadata
  55. open FILE, "<$pkginfo" or return;
  56. while (<FILE>) {
  57. /^Package:\s*(.+?)\s*$/ and $package = $1;
  58. /^Kernel-Config:\s*(.+?)\s*$/ and do {
  59. my @config = split /\s+/, $1;
  60. foreach my $config (version_filter_list($patchver, @config)) {
  61. my $val = 'm';
  62. my $override;
  63. if ($config =~ /^(.+?)=(.+)$/) {
  64. $config = $1;
  65. $override = 1;
  66. $val = $2;
  67. }
  68. if ($config{"CONFIG_PACKAGE_$package"} and ($config ne 'n')) {
  69. next if $kconfig{$config} eq 'y';
  70. $kconfig{$config} = $val;
  71. } elsif (!$override) {
  72. $kconfig{$config} or $kconfig{$config} = 'n';
  73. }
  74. }
  75. };
  76. };
  77. close FILE;
  78. foreach my $kconfig (sort keys %kconfig) {
  79. if ($kconfig{$kconfig} eq 'n') {
  80. print "# $kconfig is not set\n";
  81. } else {
  82. print "$kconfig=$kconfig{$kconfig}\n";
  83. }
  84. }
  85. }
  86. my %dep_check;
  87. sub __find_package_dep($$) {
  88. my $pkg = shift;
  89. my $name = shift;
  90. my $deps = ($pkg->{vdepends} or $pkg->{depends});
  91. return 0 unless defined $deps;
  92. foreach my $dep (@{$deps}) {
  93. next if $dep_check{$dep};
  94. $dep_check{$dep} = 1;
  95. return 1 if $dep eq $name;
  96. return 1 if ($package{$dep} and (__find_package_dep($package{$dep},$name) == 1));
  97. }
  98. return 0;
  99. }
  100. # wrapper to avoid infinite recursion
  101. sub find_package_dep($$) {
  102. my $pkg = shift;
  103. my $name = shift;
  104. %dep_check = ();
  105. return __find_package_dep($pkg, $name);
  106. }
  107. sub package_depends($$) {
  108. my $a = shift;
  109. my $b = shift;
  110. my $ret;
  111. return 0 if ($a->{submenu} ne $b->{submenu});
  112. if (find_package_dep($a, $b->{name}) == 1) {
  113. $ret = 1;
  114. } elsif (find_package_dep($b, $a->{name}) == 1) {
  115. $ret = -1;
  116. } else {
  117. return 0;
  118. }
  119. return $ret;
  120. }
  121. sub mconf_depends {
  122. my $pkgname = shift;
  123. my $depends = shift;
  124. my $only_dep = shift;
  125. my $res;
  126. my $dep = shift;
  127. my $seen = shift;
  128. my $parent_condition = shift;
  129. $dep or $dep = {};
  130. $seen or $seen = {};
  131. my @t_depends;
  132. $depends or return;
  133. my @depends = @$depends;
  134. foreach my $depend (@depends) {
  135. my $m = "depends on";
  136. my $flags = "";
  137. $depend =~ s/^([@\+]+)// and $flags = $1;
  138. my $vdep;
  139. my $condition = $parent_condition;
  140. next if $condition eq $depend;
  141. next if $seen->{"$parent_condition:$depend"};
  142. next if $seen->{":$depend"};
  143. $seen->{"$parent_condition:$depend"} = 1;
  144. if ($depend =~ /^(.+):(.+)$/) {
  145. if ($1 ne "PACKAGE_$pkgname") {
  146. if ($condition) {
  147. $condition = "$condition && $1";
  148. } else {
  149. $condition = $1;
  150. }
  151. }
  152. $depend = $2;
  153. }
  154. next if $package{$depend} and $package{$depend}->{buildonly};
  155. if ($flags =~ /\+/) {
  156. if ($vdep = $package{$depend}->{vdepends}) {
  157. my @vdeps = @$vdep;
  158. $depend = shift @vdeps;
  159. if (@vdeps > 1) {
  160. $condition = '!('.join("||", map { "PACKAGE_".$_ } @vdeps).')';
  161. } elsif (@vdeps > 0) {
  162. $condition = '!PACKAGE_'.$vdeps[0];
  163. }
  164. }
  165. # Menuconfig will not treat 'select FOO' as a real dependency
  166. # thus if FOO depends on other config options, these dependencies
  167. # will not be checked. To fix this, we simply emit all of FOO's
  168. # depends here as well.
  169. $package{$depend} and push @t_depends, [ $package{$depend}->{depends}, $condition ];
  170. $m = "select";
  171. next if $only_dep;
  172. } else {
  173. if ($vdep = $package{$depend}->{vdepends}) {
  174. $depend = join("||", map { "PACKAGE_".$_ } @$vdep);
  175. }
  176. }
  177. $flags =~ /@/ or $depend = "PACKAGE_$depend";
  178. if ($condition) {
  179. if ($m =~ /select/) {
  180. next if $depend eq $condition;
  181. $depend = "$depend if $condition";
  182. } else {
  183. $depend = "!($condition) || $depend" unless $dep->{$condition} eq 'select';
  184. }
  185. }
  186. $dep->{$depend} =~ /select/ or $dep->{$depend} = $m;
  187. }
  188. foreach my $tdep (@t_depends) {
  189. mconf_depends($pkgname, $tdep->[0], 1, $dep, $seen, $tdep->[1]);
  190. }
  191. foreach my $depend (keys %$dep) {
  192. my $m = $dep->{$depend};
  193. $res .= "\t\t$m $depend\n";
  194. }
  195. return $res;
  196. }
  197. sub mconf_conflicts {
  198. my $pkgname = shift;
  199. my $depends = shift;
  200. my $res = "";
  201. foreach my $depend (@$depends) {
  202. next unless $package{$depend};
  203. $res .= "\t\tdepends on m || (PACKAGE_$depend != y)\n";
  204. }
  205. return $res;
  206. }
  207. sub print_package_config_category($) {
  208. my $cat = shift;
  209. my %menus;
  210. my %menu_dep;
  211. return unless $category{$cat};
  212. print "menu \"$cat\"\n\n";
  213. my %spkg = %{$category{$cat}};
  214. foreach my $spkg (sort {uc($a) cmp uc($b)} keys %spkg) {
  215. foreach my $pkg (@{$spkg{$spkg}}) {
  216. next if $pkg->{buildonly};
  217. my $menu = $pkg->{submenu};
  218. if ($menu) {
  219. $menu_dep{$menu} or $menu_dep{$menu} = $pkg->{submenudep};
  220. } else {
  221. $menu = 'undef';
  222. }
  223. $menus{$menu} or $menus{$menu} = [];
  224. push @{$menus{$menu}}, $pkg;
  225. }
  226. }
  227. my @menus = sort {
  228. ($a eq 'undef' ? 1 : 0) or
  229. ($b eq 'undef' ? -1 : 0) or
  230. ($a cmp $b)
  231. } keys %menus;
  232. foreach my $menu (@menus) {
  233. my @pkgs = sort {
  234. package_depends($a, $b) or
  235. ($a->{name} cmp $b->{name})
  236. } @{$menus{$menu}};
  237. if ($menu ne 'undef') {
  238. $menu_dep{$menu} and print "if $menu_dep{$menu}\n";
  239. print "menu \"$menu\"\n";
  240. }
  241. foreach my $pkg (@pkgs) {
  242. my $title = $pkg->{name};
  243. my $c = (72 - length($pkg->{name}) - length($pkg->{title}));
  244. if ($c > 0) {
  245. $title .= ("." x $c). " ". $pkg->{title};
  246. }
  247. $title = "\"$title\"";
  248. print "\t";
  249. $pkg->{menu} and print "menu";
  250. print "config PACKAGE_".$pkg->{name}."\n";
  251. $pkg->{hidden} and $title = "";
  252. print "\t\t".($pkg->{tristate} ? 'tristate' : 'bool')." $title\n";
  253. print "\t\tdefault y if DEFAULT_".$pkg->{name}."\n";
  254. unless ($pkg->{hidden}) {
  255. my @def = ("ALL");
  256. if (!exists($pkg->{repository})) {
  257. push @def, "ALL_NONSHARED";
  258. }
  259. if ($pkg->{name} =~ /^kmod-/) {
  260. push @def, "ALL_KMODS";
  261. }
  262. $pkg->{default} ||= "m if " . join("||", @def);
  263. }
  264. if ($pkg->{default}) {
  265. foreach my $default (split /\s*,\s*/, $pkg->{default}) {
  266. print "\t\tdefault $default\n";
  267. }
  268. }
  269. print mconf_depends($pkg->{name}, $pkg->{depends}, 0);
  270. print mconf_depends($pkg->{name}, $pkg->{mdepends}, 0);
  271. print mconf_conflicts($pkg->{name}, $pkg->{conflicts});
  272. print "\t\thelp\n";
  273. print $pkg->{description};
  274. print "\n";
  275. $pkg->{config} and print $pkg->{config}."\n";
  276. }
  277. if ($menu ne 'undef') {
  278. print "endmenu\n";
  279. $menu_dep{$menu} and print "endif\n";
  280. }
  281. }
  282. print "endmenu\n\n";
  283. undef $category{$cat};
  284. }
  285. sub print_package_features() {
  286. keys %features > 0 or return;
  287. print "menu \"Package features\"\n";
  288. foreach my $n (keys %features) {
  289. my @features = sort { $b->{priority} <=> $a->{priority} or $a->{title} cmp $b->{title} } @{$features{$n}};
  290. print <<EOF;
  291. choice
  292. prompt "$features[0]->{target_title}"
  293. default FEATURE_$features[0]->{name}
  294. EOF
  295. foreach my $feature (@features) {
  296. print <<EOF;
  297. config FEATURE_$feature->{name}
  298. bool "$feature->{title}"
  299. EOF
  300. $feature->{description} =~ /\w/ and do {
  301. print "\t\thelp\n".$feature->{description}."\n";
  302. };
  303. }
  304. print "endchoice\n"
  305. }
  306. print "endmenu\n\n";
  307. }
  308. sub print_package_overrides() {
  309. keys %overrides > 0 or return;
  310. print "\tconfig OVERRIDE_PKGS\n";
  311. print "\t\tstring\n";
  312. print "\t\tdefault \"".join(" ", keys %overrides)."\"\n\n";
  313. }
  314. sub gen_package_config() {
  315. parse_package_metadata($ARGV[0]) or exit 1;
  316. print "menuconfig IMAGEOPT\n\tbool \"Image configuration\"\n\tdefault n\n";
  317. foreach my $preconfig (keys %preconfig) {
  318. foreach my $cfg (keys %{$preconfig{$preconfig}}) {
  319. my $conf = $preconfig{$preconfig}->{$cfg}->{id};
  320. $conf =~ tr/\.-/__/;
  321. print <<EOF
  322. config UCI_PRECONFIG_$conf
  323. string "$preconfig{$preconfig}->{$cfg}->{label}" if IMAGEOPT
  324. depends on PACKAGE_$preconfig
  325. default "$preconfig{$preconfig}->{$cfg}->{default}"
  326. EOF
  327. }
  328. }
  329. print "source \"package/*/image-config.in\"\n";
  330. if (scalar glob "package/feeds/*/*/image-config.in") {
  331. print "source \"package/feeds/*/*/image-config.in\"\n";
  332. }
  333. print_package_features();
  334. print_package_config_category 'Base system';
  335. foreach my $cat (sort {uc($a) cmp uc($b)} keys %category) {
  336. print_package_config_category $cat;
  337. }
  338. print_package_overrides();
  339. }
  340. sub get_conditional_dep($$) {
  341. my $condition = shift;
  342. my $depstr = shift;
  343. if ($condition) {
  344. if ($condition =~ /^!(.+)/) {
  345. return "\$(if \$(CONFIG_$1),,$depstr)";
  346. } else {
  347. return "\$(if \$(CONFIG_$condition),$depstr)";
  348. }
  349. } else {
  350. return $depstr;
  351. }
  352. }
  353. sub gen_package_mk() {
  354. my %conf;
  355. my %dep;
  356. my %done;
  357. my $line;
  358. parse_package_metadata($ARGV[0]) or exit 1;
  359. foreach my $name (sort {uc($a) cmp uc($b)} keys %package) {
  360. my $config;
  361. my $pkg = $package{$name};
  362. my @srcdeps;
  363. next if defined $pkg->{vdepends};
  364. $config = "\$(CONFIG_PACKAGE_$name)";
  365. if ($config) {
  366. $pkg->{buildonly} and $config = "";
  367. print "package-$config += $pkg->{subdir}$pkg->{src}\n";
  368. if ($pkg->{variant}) {
  369. if (!defined($done{$pkg->{src}}) or $pkg->{variant_default}) {
  370. print "\$(curdir)/$pkg->{subdir}$pkg->{src}/default-variant := $pkg->{variant}\n";
  371. }
  372. print "\$(curdir)/$pkg->{subdir}$pkg->{src}/variants += \$(if $config,$pkg->{variant})\n"
  373. }
  374. $pkg->{prereq} and print "prereq-$config += $pkg->{subdir}$pkg->{src}\n";
  375. }
  376. next if $done{$pkg->{src}};
  377. $done{$pkg->{src}} = 1;
  378. if (@{$pkg->{buildtypes}} > 0) {
  379. print "buildtypes-$pkg->{subdir}$pkg->{src} = ".join(' ', @{$pkg->{buildtypes}})."\n";
  380. }
  381. foreach my $spkg (@{$srcpackage{$pkg->{src}}}) {
  382. foreach my $dep (@{$spkg->{depends}}, @{$spkg->{builddepends}}) {
  383. $dep =~ /@/ or do {
  384. $dep =~ s/\+//g;
  385. push @srcdeps, $dep;
  386. };
  387. }
  388. }
  389. foreach my $type (@{$pkg->{buildtypes}}) {
  390. my @extra_deps;
  391. my %deplines;
  392. next unless $pkg->{"builddepends/$type"};
  393. foreach my $dep (@{$pkg->{"builddepends/$type"}}) {
  394. my $suffix = "";
  395. my $condition;
  396. if ($dep =~ /^(.+):(.+)/) {
  397. $condition = $1;
  398. $dep = $2;
  399. }
  400. if ($dep =~ /^(.+)(\/.+)/) {
  401. $dep = $1;
  402. $suffix = $2;
  403. }
  404. my $idx = "";
  405. my $pkg_dep = $package{$dep};
  406. if (defined($pkg_dep) && defined($pkg_dep->{src})) {
  407. $idx = $pkg_dep->{subdir}.$pkg_dep->{src};
  408. } elsif (defined($srcpackage{$dep})) {
  409. $idx = $subdir{$dep}.$dep;
  410. } else {
  411. next;
  412. }
  413. my $depstr = "\$(curdir)/$idx$suffix/compile";
  414. my $depline = get_conditional_dep($condition, $depstr);
  415. if ($depline) {
  416. $deplines{$depline}++;
  417. }
  418. }
  419. my $depline = join(" ", sort keys %deplines);
  420. if ($depline) {
  421. $line .= "\$(curdir)/".$pkg->{subdir}."$pkg->{src}/$type/compile += $depline\n";
  422. }
  423. }
  424. my $hasdeps = 0;
  425. my %deplines;
  426. foreach my $deps (@srcdeps) {
  427. my $idx;
  428. my $condition;
  429. my $prefix = "";
  430. my $suffix = "";
  431. if ($deps =~ /^(.+):(.+)/) {
  432. $condition = $1;
  433. $deps = $2;
  434. }
  435. if ($deps =~ /^(.+)(\/.+)/) {
  436. $deps = $1;
  437. $suffix = $2;
  438. }
  439. my $pkg_dep = $package{$deps};
  440. my @deps;
  441. if ($pkg_dep->{vdepends}) {
  442. @deps = @{$pkg_dep->{vdepends}};
  443. } else {
  444. @deps = ($deps);
  445. }
  446. foreach my $dep (@deps) {
  447. $pkg_dep = $package{$deps};
  448. if (defined $pkg_dep->{src}) {
  449. ($pkg->{src} ne $pkg_dep->{src}.$suffix) and $idx = $pkg_dep->{subdir}.$pkg_dep->{src};
  450. } elsif (defined($srcpackage{$dep})) {
  451. $idx = $subdir{$dep}.$dep;
  452. }
  453. undef $idx if $idx eq 'base-files';
  454. if ($idx) {
  455. $idx .= $suffix;
  456. my $depline;
  457. next if $pkg->{src} eq $pkg_dep->{src}.$suffix;
  458. next if $dep{$condition.":".$pkg->{src}."->".$idx};
  459. next if $dep{$pkg->{src}."->($dep)".$idx} and $pkg_dep->{vdepends};
  460. my $depstr;
  461. if ($pkg_dep->{vdepends}) {
  462. $depstr = "\$(if \$(CONFIG_PACKAGE_$dep),\$(curdir)/$idx/compile)";
  463. $dep{$pkg->{src}."->($dep)".$idx} = 1;
  464. } else {
  465. $depstr = "\$(curdir)/$idx/compile";
  466. $dep{$pkg->{src}."->".$idx} = 1;
  467. }
  468. $depline = get_conditional_dep($condition, $depstr);
  469. if ($depline) {
  470. $deplines{$depline}++;
  471. }
  472. }
  473. }
  474. }
  475. my $depline = join(" ", sort keys %deplines);
  476. if ($depline) {
  477. $line .= "\$(curdir)/".$pkg->{subdir}."$pkg->{src}/compile += $depline\n";
  478. }
  479. }
  480. if ($line ne "") {
  481. print "\n$line";
  482. }
  483. foreach my $preconfig (keys %preconfig) {
  484. my $cmds;
  485. foreach my $cfg (keys %{$preconfig{$preconfig}}) {
  486. my $conf = $preconfig{$preconfig}->{$cfg}->{id};
  487. $conf =~ tr/\.-/__/;
  488. $cmds .= "\techo \"uci set '$preconfig{$preconfig}->{$cfg}->{id}=\$(subst \",,\$(CONFIG_UCI_PRECONFIG_$conf))'\"; \\\n";
  489. }
  490. next unless $cmds;
  491. print <<EOF
  492. ifndef DUMP_TARGET_DB
  493. \$(TARGET_DIR)/etc/uci-defaults/$preconfig: FORCE
  494. ( \\
  495. $cmds \\
  496. ) > \$@
  497. ifneq (\$(IMAGEOPT)\$(CONFIG_IMAGEOPT),)
  498. package/preconfig: \$(TARGET_DIR)/etc/uci-defaults/$preconfig
  499. endif
  500. endif
  501. EOF
  502. }
  503. }
  504. sub gen_package_source() {
  505. parse_package_metadata($ARGV[0]) or exit 1;
  506. foreach my $name (sort {uc($a) cmp uc($b)} keys %package) {
  507. my $pkg = $package{$name};
  508. if ($pkg->{name} && $pkg->{source}) {
  509. print "$pkg->{name}: ";
  510. print "$pkg->{source}\n";
  511. }
  512. }
  513. }
  514. sub gen_package_subdirs() {
  515. parse_package_metadata($ARGV[0]) or exit 1;
  516. foreach my $name (sort {uc($a) cmp uc($b)} keys %package) {
  517. my $pkg = $package{$name};
  518. if ($pkg->{name} && $pkg->{repository}) {
  519. print "Package/$name/subdir = $pkg->{repository}\n";
  520. }
  521. }
  522. }
  523. sub gen_package_license($) {
  524. my $level = shift;
  525. parse_package_metadata($ARGV[0]) or exit 1;
  526. foreach my $name (sort {uc($a) cmp uc($b)} keys %package) {
  527. my $pkg = $package{$name};
  528. if ($pkg->{name}) {
  529. if ($pkg->{license}) {
  530. print "$pkg->{name}: ";
  531. print "$pkg->{license}\n";
  532. if ($pkg->{licensefiles} && $level == 0) {
  533. print "\tFiles: $pkg->{licensefiles}\n";
  534. }
  535. } else {
  536. if ($level == 1) {
  537. print "$pkg->{name}: Missing license! ";
  538. print "Please fix $pkg->{makefile}\n";
  539. }
  540. }
  541. }
  542. }
  543. }
  544. sub gen_version_filtered_list() {
  545. foreach my $item (version_filter_list(@ARGV)) {
  546. print "$item\n";
  547. }
  548. }
  549. sub parse_command() {
  550. GetOptions("ignore=s", \@ignore);
  551. my $cmd = shift @ARGV;
  552. for ($cmd) {
  553. /^mk$/ and return gen_package_mk();
  554. /^config$/ and return gen_package_config();
  555. /^kconfig/ and return gen_kconfig_overrides();
  556. /^source$/ and return gen_package_source();
  557. /^subdirs$/ and return gen_package_subdirs();
  558. /^license$/ and return gen_package_license(0);
  559. /^licensefull$/ and return gen_package_license(1);
  560. /^version_filter$/ and return gen_version_filtered_list();
  561. }
  562. die <<EOF
  563. Available Commands:
  564. $0 mk [file] Package metadata in makefile format
  565. $0 config [file] Package metadata in Kconfig format
  566. $0 kconfig [file] [config] [patchver] Kernel config overrides
  567. $0 source [file] Package source file information
  568. $0 subdirs [file] Package subdir information in makefile format
  569. $0 license [file] Package license information
  570. $0 licensefull [file] Package license information (full list)
  571. $0 version_filter [patchver] [list...] Filter list of version tagged strings
  572. Options:
  573. --ignore <name> Ignore the source package <name>
  574. EOF
  575. }
  576. parse_command();