package-metadata.pl 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649
  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. $flags =~ /@/ or $depend = "PACKAGE_$depend";
  173. } else {
  174. if ($vdep = $package{$depend}->{vdepends}) {
  175. $depend = join("||", map { "PACKAGE_".$_ } @$vdep);
  176. } else {
  177. $flags =~ /@/ or $depend = "PACKAGE_$depend";
  178. }
  179. }
  180. if ($condition) {
  181. if ($m =~ /select/) {
  182. next if $depend eq $condition;
  183. $depend = "$depend if $condition";
  184. } else {
  185. $depend = "!($condition) || $depend" unless $dep->{$condition} eq 'select';
  186. }
  187. }
  188. $dep->{$depend} =~ /select/ or $dep->{$depend} = $m;
  189. }
  190. foreach my $tdep (@t_depends) {
  191. mconf_depends($pkgname, $tdep->[0], 1, $dep, $seen, $tdep->[1]);
  192. }
  193. foreach my $depend (keys %$dep) {
  194. my $m = $dep->{$depend};
  195. $res .= "\t\t$m $depend\n";
  196. }
  197. return $res;
  198. }
  199. sub mconf_conflicts {
  200. my $pkgname = shift;
  201. my $depends = shift;
  202. my $res = "";
  203. foreach my $depend (@$depends) {
  204. next unless $package{$depend};
  205. $res .= "\t\tdepends on m || (PACKAGE_$depend != y)\n";
  206. }
  207. return $res;
  208. }
  209. sub print_package_config_category($) {
  210. my $cat = shift;
  211. my %menus;
  212. my %menu_dep;
  213. return unless $category{$cat};
  214. print "menu \"$cat\"\n\n";
  215. my %spkg = %{$category{$cat}};
  216. foreach my $spkg (sort {uc($a) cmp uc($b)} keys %spkg) {
  217. foreach my $pkg (@{$spkg{$spkg}}) {
  218. next if $pkg->{buildonly};
  219. my $menu = $pkg->{submenu};
  220. if ($menu) {
  221. $menu_dep{$menu} or $menu_dep{$menu} = $pkg->{submenudep};
  222. } else {
  223. $menu = 'undef';
  224. }
  225. $menus{$menu} or $menus{$menu} = [];
  226. push @{$menus{$menu}}, $pkg;
  227. }
  228. }
  229. my @menus = sort {
  230. ($a eq 'undef' ? 1 : 0) or
  231. ($b eq 'undef' ? -1 : 0) or
  232. ($a cmp $b)
  233. } keys %menus;
  234. foreach my $menu (@menus) {
  235. my @pkgs = sort {
  236. package_depends($a, $b) or
  237. ($a->{name} cmp $b->{name})
  238. } @{$menus{$menu}};
  239. if ($menu ne 'undef') {
  240. $menu_dep{$menu} and print "if $menu_dep{$menu}\n";
  241. print "menu \"$menu\"\n";
  242. }
  243. foreach my $pkg (@pkgs) {
  244. next if $pkg->{ignore};
  245. my $title = $pkg->{name};
  246. my $c = (72 - length($pkg->{name}) - length($pkg->{title}));
  247. if ($c > 0) {
  248. $title .= ("." x $c). " ". $pkg->{title};
  249. }
  250. $title = "\"$title\"";
  251. print "\t";
  252. $pkg->{menu} and print "menu";
  253. print "config PACKAGE_".$pkg->{name}."\n";
  254. $pkg->{hidden} and $title = "";
  255. print "\t\t".($pkg->{tristate} ? 'tristate' : 'bool')." $title\n";
  256. print "\t\tdefault y if DEFAULT_".$pkg->{name}."\n";
  257. unless ($pkg->{hidden}) {
  258. my @def = ("ALL");
  259. if (!exists($pkg->{repository})) {
  260. push @def, "ALL_NONSHARED";
  261. }
  262. if ($pkg->{name} =~ /^kmod-/) {
  263. push @def, "ALL_KMODS";
  264. }
  265. $pkg->{default} ||= "m if " . join("||", @def);
  266. }
  267. if ($pkg->{default}) {
  268. foreach my $default (split /\s*,\s*/, $pkg->{default}) {
  269. print "\t\tdefault $default\n";
  270. }
  271. }
  272. print mconf_depends($pkg->{name}, $pkg->{depends}, 0);
  273. print mconf_depends($pkg->{name}, $pkg->{mdepends}, 0);
  274. print mconf_conflicts($pkg->{name}, $pkg->{conflicts});
  275. print "\t\thelp\n";
  276. print $pkg->{description};
  277. print "\n";
  278. $pkg->{config} and print $pkg->{config}."\n";
  279. }
  280. if ($menu ne 'undef') {
  281. print "endmenu\n";
  282. $menu_dep{$menu} and print "endif\n";
  283. }
  284. }
  285. print "endmenu\n\n";
  286. undef $category{$cat};
  287. }
  288. sub print_package_features() {
  289. keys %features > 0 or return;
  290. print "menu \"Package features\"\n";
  291. foreach my $n (keys %features) {
  292. my @features = sort { $b->{priority} <=> $a->{priority} or $a->{title} cmp $b->{title} } @{$features{$n}};
  293. print <<EOF;
  294. choice
  295. prompt "$features[0]->{target_title}"
  296. default FEATURE_$features[0]->{name}
  297. EOF
  298. foreach my $feature (@features) {
  299. print <<EOF;
  300. config FEATURE_$feature->{name}
  301. bool "$feature->{title}"
  302. EOF
  303. $feature->{description} =~ /\w/ and do {
  304. print "\t\thelp\n".$feature->{description}."\n";
  305. };
  306. }
  307. print "endchoice\n"
  308. }
  309. print "endmenu\n\n";
  310. }
  311. sub print_package_overrides() {
  312. keys %overrides > 0 or return;
  313. print "\tconfig OVERRIDE_PKGS\n";
  314. print "\t\tstring\n";
  315. print "\t\tdefault \"".join(" ", sort keys %overrides)."\"\n\n";
  316. }
  317. sub gen_package_config() {
  318. parse_package_metadata($ARGV[0]) or exit 1;
  319. print "menuconfig IMAGEOPT\n\tbool \"Image configuration\"\n\tdefault n\n";
  320. foreach my $preconfig (keys %preconfig) {
  321. foreach my $cfg (keys %{$preconfig{$preconfig}}) {
  322. my $conf = $preconfig{$preconfig}->{$cfg}->{id};
  323. $conf =~ tr/\.-/__/;
  324. print <<EOF
  325. config UCI_PRECONFIG_$conf
  326. string "$preconfig{$preconfig}->{$cfg}->{label}" if IMAGEOPT
  327. depends on PACKAGE_$preconfig
  328. default "$preconfig{$preconfig}->{$cfg}->{default}"
  329. EOF
  330. }
  331. }
  332. print "source \"package/*/image-config.in\"\n";
  333. if (scalar glob "package/feeds/*/*/image-config.in") {
  334. print "source \"package/feeds/*/*/image-config.in\"\n";
  335. }
  336. print_package_features();
  337. print_package_config_category 'Base system';
  338. foreach my $cat (sort {uc($a) cmp uc($b)} keys %category) {
  339. print_package_config_category $cat;
  340. }
  341. print_package_overrides();
  342. }
  343. sub get_conditional_dep($$) {
  344. my $condition = shift;
  345. my $depstr = shift;
  346. if ($condition) {
  347. if ($condition =~ /^!(.+)/) {
  348. return "\$(if \$(CONFIG_$1),,$depstr)";
  349. } else {
  350. return "\$(if \$(CONFIG_$condition),$depstr)";
  351. }
  352. } else {
  353. return $depstr;
  354. }
  355. }
  356. sub gen_package_mk() {
  357. my %conf;
  358. my %dep;
  359. my %done;
  360. my $line;
  361. parse_package_metadata($ARGV[0]) or exit 1;
  362. foreach my $name (sort {uc($a) cmp uc($b)} keys %package) {
  363. my $config;
  364. my $pkg = $package{$name};
  365. my @srcdeps;
  366. next if defined $pkg->{vdepends};
  367. $config = "\$(CONFIG_PACKAGE_$name)";
  368. if ($config) {
  369. $pkg->{buildonly} and $config = "";
  370. print "package-$config += $pkg->{subdir}$pkg->{src}\n";
  371. if ($pkg->{variant}) {
  372. if (!defined($done{$pkg->{src}}) or $pkg->{variant_default}) {
  373. print "\$(curdir)/$pkg->{subdir}$pkg->{src}/default-variant := $pkg->{variant}\n";
  374. }
  375. print "\$(curdir)/$pkg->{subdir}$pkg->{src}/variants += \$(if $config,$pkg->{variant})\n"
  376. }
  377. $pkg->{prereq} and print "prereq-$config += $pkg->{subdir}$pkg->{src}\n";
  378. }
  379. next if $done{$pkg->{src}};
  380. $done{$pkg->{src}} = 1;
  381. if (@{$pkg->{buildtypes}} > 0) {
  382. print "buildtypes-$pkg->{subdir}$pkg->{src} = ".join(' ', @{$pkg->{buildtypes}})."\n";
  383. }
  384. foreach my $spkg (@{$srcpackage{$pkg->{src}}}) {
  385. foreach my $dep (@{$spkg->{depends}}, @{$spkg->{builddepends}}) {
  386. $dep =~ /@/ or do {
  387. $dep =~ s/\+//g;
  388. push @srcdeps, $dep;
  389. };
  390. }
  391. }
  392. foreach my $type (@{$pkg->{buildtypes}}) {
  393. my @extra_deps;
  394. my %deplines;
  395. next unless $pkg->{"builddepends/$type"};
  396. foreach my $dep (@{$pkg->{"builddepends/$type"}}) {
  397. my $suffix = "";
  398. my $condition;
  399. if ($dep =~ /^(.+):(.+)/) {
  400. $condition = $1;
  401. $dep = $2;
  402. }
  403. if ($dep =~ /^(.+)(\/.+)/) {
  404. $dep = $1;
  405. $suffix = $2;
  406. }
  407. my $idx = "";
  408. my $pkg_dep = $package{$dep};
  409. if (defined($pkg_dep) && defined($pkg_dep->{src})) {
  410. $idx = $pkg_dep->{subdir}.$pkg_dep->{src};
  411. } elsif (defined($srcpackage{$dep})) {
  412. $idx = $subdir{$dep}.$dep;
  413. } else {
  414. next;
  415. }
  416. my $depstr = "\$(curdir)/$idx$suffix/compile";
  417. my $depline = get_conditional_dep($condition, $depstr);
  418. if ($depline) {
  419. $deplines{$depline}++;
  420. }
  421. }
  422. my $depline = join(" ", sort keys %deplines);
  423. if ($depline) {
  424. $line .= "\$(curdir)/".$pkg->{subdir}."$pkg->{src}/$type/compile += $depline\n";
  425. }
  426. }
  427. my $hasdeps = 0;
  428. my %deplines;
  429. foreach my $deps (@srcdeps) {
  430. my $idx;
  431. my $condition;
  432. my $prefix = "";
  433. my $suffix = "";
  434. if ($deps =~ /^(.+):(.+)/) {
  435. $condition = $1;
  436. $deps = $2;
  437. }
  438. if ($deps =~ /^(.+)(\/.+)/) {
  439. $deps = $1;
  440. $suffix = $2;
  441. }
  442. my $pkg_dep = $package{$deps};
  443. my @deps;
  444. if ($pkg_dep->{vdepends}) {
  445. @deps = @{$pkg_dep->{vdepends}};
  446. } else {
  447. @deps = ($deps);
  448. }
  449. foreach my $dep (@deps) {
  450. $pkg_dep = $package{$deps};
  451. if (defined $pkg_dep->{src}) {
  452. ($pkg->{src} ne $pkg_dep->{src}.$suffix) and $idx = $pkg_dep->{subdir}.$pkg_dep->{src};
  453. } elsif (defined($srcpackage{$dep})) {
  454. $idx = $subdir{$dep}.$dep;
  455. }
  456. undef $idx if $idx eq 'base-files';
  457. if ($idx) {
  458. $idx .= $suffix;
  459. my $depline;
  460. next if $pkg->{src} eq $pkg_dep->{src}.$suffix;
  461. next if $dep{$condition.":".$pkg->{src}."->".$idx};
  462. next if $dep{$pkg->{src}."->($dep)".$idx} and $pkg_dep->{vdepends};
  463. my $depstr;
  464. if ($pkg_dep->{vdepends}) {
  465. $depstr = "\$(if \$(CONFIG_PACKAGE_$dep),\$(curdir)/$idx/compile)";
  466. $dep{$pkg->{src}."->($dep)".$idx} = 1;
  467. } else {
  468. $depstr = "\$(curdir)/$idx/compile";
  469. $dep{$pkg->{src}."->".$idx} = 1;
  470. }
  471. $depline = get_conditional_dep($condition, $depstr);
  472. if ($depline) {
  473. $deplines{$depline}++;
  474. }
  475. }
  476. }
  477. }
  478. my $depline = join(" ", sort keys %deplines);
  479. if ($depline) {
  480. $line .= "\$(curdir)/".$pkg->{subdir}."$pkg->{src}/compile += $depline\n";
  481. }
  482. }
  483. if ($line ne "") {
  484. print "\n$line";
  485. }
  486. foreach my $preconfig (keys %preconfig) {
  487. my $cmds;
  488. foreach my $cfg (keys %{$preconfig{$preconfig}}) {
  489. my $conf = $preconfig{$preconfig}->{$cfg}->{id};
  490. $conf =~ tr/\.-/__/;
  491. $cmds .= "\techo \"uci set '$preconfig{$preconfig}->{$cfg}->{id}=\$(subst \",,\$(CONFIG_UCI_PRECONFIG_$conf))'\"; \\\n";
  492. }
  493. next unless $cmds;
  494. print <<EOF
  495. ifndef DUMP_TARGET_DB
  496. \$(TARGET_DIR)/etc/uci-defaults/$preconfig: FORCE
  497. ( \\
  498. $cmds \\
  499. ) > \$@
  500. ifneq (\$(IMAGEOPT)\$(CONFIG_IMAGEOPT),)
  501. package/preconfig: \$(TARGET_DIR)/etc/uci-defaults/$preconfig
  502. endif
  503. endif
  504. EOF
  505. }
  506. }
  507. sub gen_package_source() {
  508. parse_package_metadata($ARGV[0]) or exit 1;
  509. foreach my $name (sort {uc($a) cmp uc($b)} keys %package) {
  510. my $pkg = $package{$name};
  511. if ($pkg->{name} && $pkg->{source}) {
  512. print "$pkg->{name}: ";
  513. print "$pkg->{source}\n";
  514. }
  515. }
  516. }
  517. sub gen_package_subdirs() {
  518. parse_package_metadata($ARGV[0]) or exit 1;
  519. foreach my $name (sort {uc($a) cmp uc($b)} keys %package) {
  520. my $pkg = $package{$name};
  521. if ($pkg->{name} && $pkg->{repository}) {
  522. print "Package/$name/subdir = $pkg->{repository}\n";
  523. }
  524. }
  525. }
  526. sub gen_package_license($) {
  527. my $level = shift;
  528. parse_package_metadata($ARGV[0]) or exit 1;
  529. foreach my $name (sort {uc($a) cmp uc($b)} keys %package) {
  530. my $pkg = $package{$name};
  531. if ($pkg->{name}) {
  532. if ($pkg->{license}) {
  533. print "$pkg->{name}: ";
  534. print "$pkg->{license}\n";
  535. if ($pkg->{licensefiles} && $level == 0) {
  536. print "\tFiles: $pkg->{licensefiles}\n";
  537. }
  538. } else {
  539. if ($level == 1) {
  540. print "$pkg->{name}: Missing license! ";
  541. print "Please fix $pkg->{makefile}\n";
  542. }
  543. }
  544. }
  545. }
  546. }
  547. sub gen_version_filtered_list() {
  548. foreach my $item (version_filter_list(@ARGV)) {
  549. print "$item\n";
  550. }
  551. }
  552. sub parse_command() {
  553. GetOptions("ignore=s", \@ignore);
  554. my $cmd = shift @ARGV;
  555. for ($cmd) {
  556. /^mk$/ and return gen_package_mk();
  557. /^config$/ and return gen_package_config();
  558. /^kconfig/ and return gen_kconfig_overrides();
  559. /^source$/ and return gen_package_source();
  560. /^subdirs$/ and return gen_package_subdirs();
  561. /^license$/ and return gen_package_license(0);
  562. /^licensefull$/ and return gen_package_license(1);
  563. /^version_filter$/ and return gen_version_filtered_list();
  564. }
  565. die <<EOF
  566. Available Commands:
  567. $0 mk [file] Package metadata in makefile format
  568. $0 config [file] Package metadata in Kconfig format
  569. $0 kconfig [file] [config] [patchver] Kernel config overrides
  570. $0 source [file] Package source file information
  571. $0 subdirs [file] Package subdir information in makefile format
  572. $0 license [file] Package license information
  573. $0 licensefull [file] Package license information (full list)
  574. $0 version_filter [patchver] [list...] Filter list of version tagged strings
  575. Options:
  576. --ignore <name> Ignore the source package <name>
  577. EOF
  578. }
  579. parse_command();