From 3e6f43cfbe2d6795b150ba325545ed4f61aed54a Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Thu, 28 Jul 2011 18:06:30 +0200 Subject: [PATCH] [entropy.server] when running dependencies test, always match against given list of repository identifiers --- libraries/entropy/server/interfaces/main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libraries/entropy/server/interfaces/main.py b/libraries/entropy/server/interfaces/main.py index 0f4e8a794..f12135e02 100644 --- a/libraries/entropy/server/interfaces/main.py +++ b/libraries/entropy/server/interfaces/main.py @@ -3622,7 +3622,8 @@ class Server(Client): # that every packages comes out with all of them. xdeps = dbconn.retrieveDependencies(idpackage) for xdep in xdeps: - xid, xuseless = self.atom_match(xdep) + xid, xuseless = self.atom_match(xdep, + match_repo = server_repos) if xid == -1: deps_not_satisfied.add(xdep)