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:
|
for pkg in exactmatched + matched:
|
||||||
if pkg.arch == "src":
|
if pkg.arch == "src":
|
||||||
continue
|
continue
|
||||||
|
if pkg.repoid in self.lookaside_repos:
|
||||||
|
# Don't exclude packages from lookaside
|
||||||
|
continue
|
||||||
|
|
||||||
found = None
|
found = None
|
||||||
for pattern in excluded_list:
|
for pattern in excluded_list:
|
||||||
@ -545,6 +548,9 @@ class Pungi(PungiBase):
|
|||||||
continue
|
continue
|
||||||
if pkg.arch not in self.valid_multilib_arches:
|
if pkg.arch not in self.valid_multilib_arches:
|
||||||
continue
|
continue
|
||||||
|
if pkg.repoid in self.lookaside_repos:
|
||||||
|
# Don't exclude packages from lookaside
|
||||||
|
continue
|
||||||
|
|
||||||
found = None
|
found = None
|
||||||
for pattern in multilib_excluded_list:
|
for pattern in multilib_excluded_list:
|
||||||
|
Loading…
Reference in New Issue
Block a user