From 75430a95b9e130710d4072f2a3567349caa4523a Mon Sep 17 00:00:00 2001 From: Lubomír Sedlář Date: Apr 26 2017 07:49:00 +0000 Subject: gather: Process dependencies sorted Instead of going in random order, we should do it deterministically and process the dependencies in order. This should actually fix a problem where `glibc-langpack` packages are missing on some architectures for Fedora Rawhide. Fixes: https://pagure.io/pungi-fedora/issue/214 Signed-off-by: Lubomír Sedlář --- diff --git a/pungi/gather.py b/pungi/gather.py index 20cc33d..fe68db6 100644 --- a/pungi/gather.py +++ b/pungi/gather.py @@ -645,7 +645,7 @@ class Pungi(PungiBase): continue self.resolved_deps[req] = None - for add in added: + for add in sorted(added): self.get_package_deps(add) return added