Explorar el Código

scripts: metadata: use the new "Repository" field

Switch to the new "Repository" metadata field to populate tmp/.packagesubdirs

Signed-off-by: Jo-Philipp Wich <[email protected]>
Jo-Philipp Wich hace 9 años
padre
commit
9a04a80677
Se han modificado 2 ficheros con 3 adiciones y 2 borrados
  1. 2 2
      scripts/metadata.pl
  2. 1 0
      scripts/metadata.pm

+ 2 - 2
scripts/metadata.pl

@@ -849,8 +849,8 @@ sub gen_package_subdirs() {
 	parse_package_metadata($ARGV[0]) or exit 1;
 	foreach my $name (sort {uc($a) cmp uc($b)} keys %package) {
 		my $pkg = $package{$name};
-		if ($pkg->{name} && $pkg->{package_subdir}) {
-			print "Package/$name/subdir = $pkg->{package_subdir}\n";
+		if ($pkg->{name} && $pkg->{repository}) {
+			print "Package/$name/subdir = $pkg->{repository}\n";
 		}
 	}
 }

+ 1 - 0
scripts/metadata.pm

@@ -223,6 +223,7 @@ sub parse_package_metadata($) {
 		/^Build-Depends\/(\w+): \s*(.+)\s*$/ and $pkg->{"builddepends/$1"} = [ split /\s+/, $2 ];
 		/^Build-Types:\s*(.+)\s*$/ and $pkg->{buildtypes} = [ split /\s+/, $1 ];
 		/^Package-Subdir:\s*(.+?)\s*$/ and $pkg->{package_subdir} = $1;
+		/^Repository:\s*(.+?)\s*$/ and $pkg->{repository} = $1;
 		/^Category: \s*(.+)\s*$/ and do {
 			$pkg->{category} = $1;
 			defined $category{$1} or $category{$1} = {};