Browse Source

scripts/feeds: properly handle virtual packages as well, use the first available provider by default

SVN-Revision: 12103
Felix Fietkau 17 years ago
parent
commit
9cda3fb084
1 changed files with 7 additions and 1 deletions
  1. 7 1
      scripts/metadata.pm

+ 7 - 1
scripts/metadata.pm

@@ -76,7 +76,13 @@ sub parse_package_metadata($) {
 		/^Provides: \s*(.+)\s*$/ and do {
 			my @vpkg = split /\s+/, $1;
 			foreach my $vpkg (@vpkg) {
-				$package{$vpkg} or $package{$vpkg} = { vdepends => [] };
+				$package{$vpkg} or $package{$vpkg} = {
+					name => $vpkg,
+					vdepends => [],
+					src => $src,
+					subdir => $subdir,
+					makefile => $makefile
+				};
 				push @{$package{$vpkg}->{vdepends}}, $pkg->{name};
 			}
 		};