From ad9119d4b225eb43a07029ea3553f270cf724d0c Mon Sep 17 00:00:00 2001 From: Stephan Kulow Date: Fri, 22 Jan 2021 11:23:55 +0100 Subject: [PATCH] Calculate the i586 DVD as i686 package set mozjs is now i686 exclusive and GNOME and KDE depends on it --- pkglistgen/tool.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkglistgen/tool.py b/pkglistgen/tool.py index d20528f3..997d3698 100644 --- a/pkglistgen/tool.py +++ b/pkglistgen/tool.py @@ -189,7 +189,11 @@ class PkgListGen(ToolBase.ToolBase): def prepare_pool(self, arch, ignore_conflicts): pool = solv.Pool() - pool.setarch(arch) + # the i586 DVD is really a i686 one + if arch == 'i586': + pool.setarch('i686') + else: + pool.setarch(arch) self.lockjobs[arch] = [] solvables = set()