From 7fd9c353e1149dc657086a718761e8e1ff05dcce Mon Sep 17 00:00:00 2001 From: Julian Andres Klode Date: Mon, 10 Aug 2015 11:21:11 +0200 Subject: policy: Assign per-version pins --- apt-pkg/policy.cc | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'apt-pkg/policy.cc') diff --git a/apt-pkg/policy.cc b/apt-pkg/policy.cc index 5d7ab0e6b..370819e0b 100644 --- a/apt-pkg/policy.cc +++ b/apt-pkg/policy.cc @@ -284,6 +284,17 @@ void pkgPolicy::CreatePin(pkgVersionMatch::MatchType Type,string Name, P->Priority = Priority; P->Data = Data; matched = true; + + // Find matching version(s) and copy the pin into it + pkgVersionMatch Match(P->Data,P->Type); + for (pkgCache::VerIterator Ver = Pkg.VersionList(); Ver.end() != true; Ver++) + { + if (Match.VersionMatches(Ver)) { + Pin *VP = VerPins + Ver->ID; + if (VP->Type == pkgVersionMatch::None) + *VP = *P; + } + } } } -- cgit v1.2.3