gather(yum): Don't exclude packages from lookaside

Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
This commit is contained in:
Lubomír Sedlář 2017-06-23 13:32:04 +02:00
parent ed0a8249b1
commit eead6ccc44
1 changed files with 6 additions and 0 deletions

View File

@ -520,6 +520,9 @@ class Pungi(PungiBase):
for pkg in exactmatched + matched:
if pkg.arch == "src":
continue
if pkg.repoid in self.lookaside_repos:
# Don't exclude packages from lookaside
continue
found = None
for pattern in excluded_list:
@ -545,6 +548,9 @@ class Pungi(PungiBase):
continue
if pkg.arch not in self.valid_multilib_arches:
continue
if pkg.repoid in self.lookaside_repos:
# Don't exclude packages from lookaside
continue
found = None
for pattern in multilib_excluded_list: