gather(yum): Don't exclude packages from lookaside
Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
This commit is contained in:
parent
ed0a8249b1
commit
eead6ccc44
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user