scripts/metadata.pl: add support for ignoring source packages when generating metadata

Signed-off-by: Felix Fietkau <nbd@openwrt.org>

SVN-Revision: 48170
This commit is contained in:
Felix Fietkau
2016-01-10 16:35:16 +00:00
parent da19a09b9e
commit 3d8c8cf3bb
2 changed files with 8 additions and 1 deletions

View File

@@ -3,6 +3,7 @@ use FindBin;
use lib "$FindBin::Bin";
use strict;
use metadata;
use Getopt::Long;
my %board;
@@ -871,6 +872,7 @@ sub gen_version_filtered_list() {
}
sub parse_command() {
GetOptions("ignore=s", \@ignore);
my $cmd = shift @ARGV;
for ($cmd) {
/^target_config$/ and return gen_target_config();
@@ -895,6 +897,8 @@ Available Commands:
$0 package_licensefull [file] Package license information (full list)
$0 version_filter [patchver] [list...] Filter list of version tagged strings
Options:
--ignore <name> Ignore the source package <name>
EOF
}