From 0537f012408a004ca9e916457da2afd7b166caca Mon Sep 17 00:00:00 2001 From: Mikhail Novosyolov Date: Tue, 21 Mar 2023 00:55:13 +0300 Subject: [PATCH] Set default arches for rosa2019.05 and rosa2021.15 (future fork of rosa2021.1) --- abf.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/abf.py b/abf.py index 781d3f4..f8994a2 100755 --- a/abf.py +++ b/abf.py @@ -1409,9 +1409,15 @@ def auto_resolve(): if str(build_repositories[0]).find("rosa2019.0") >= 0 or str(build_repositories[0]).find("rosa2016.1") >= 0: try_arches = ['i586','x86_64'] + if str(build_repositories[0]).find("rosa2019.05") >= 0: + try_arches = ['i686', 'x86_64'] + if str(build_repositories[0]).find("rosa2021.1") >= 0 or str(build_repositories[0]).find("rosa2023.1") >=0: try_arches = ['i686','x86_64','aarch64', 'riscv64', 'e2kv4'] + if str(build_repositories[0]).find("rosa2021.15") >= 0: + try_arches = ['i686', 'x86_64', 'aarch64', 'e2kv4'] + if str(build_repositories[0]).find("openmandriva") >= 0 or str(build_repositories[0]).find("4.2") >= 0: try_arches = ['x86_64','znver1','aarch64']