[OpenWrt-Devel] [PATCH 1/2] scripts/metadata.pm: avoid adding dup names in provides list

Yousong Zhou yszhou4tech at gmail.com
Wed Sep 5 11:40:35 EDT 2018


The need arises from building Open vSwitch kernel datapath modules, e.g.

 - kmod-openvswitch from Linux upstream
 - kmod-openvswitch-intree from openvswitch source code

where both provides virtual package "kmod-openvswitch" for userspace
packages to select and depend on

Signed-off-by: Yousong Zhou <yszhou4tech at gmail.com>
---
 scripts/metadata.pm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/scripts/metadata.pm b/scripts/metadata.pm
index e05e400991..4a5464edc0 100644
--- a/scripts/metadata.pm
+++ b/scripts/metadata.pm
@@ -250,6 +250,7 @@ sub parse_package_metadata($) {
 			my @vpkg = split /\s+/, $1;
 			@{$pkg->{provides}} = ($pkg->{name}, @vpkg);
 			foreach my $vpkg (@vpkg) {
+				next if ($vpkg eq $pkg->{name});
 				$vpackage{$vpkg} or $vpackage{$vpkg} = [];
 				push @{$vpackage{$vpkg}}, $pkg;
 			}

_______________________________________________
openwrt-devel mailing list
openwrt-devel at lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel



More information about the openwrt-devel mailing list