diff --git a/pungi/gather.py b/pungi/gather.py index d6cfa7a0..392407b3 100644 --- a/pungi/gather.py +++ b/pungi/gather.py @@ -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: