mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
git-update: accept any arch in arch-dependent metadata
Currently we hardcode the architectures the official repos historically supported, which seems both inefficient because of hardcoding, and simply wrong, because many packages support various ARM platforms too. If we were to say "only officially supported arches will be supported in the AUR" we'd have to disable i686, which seems silly and arbitrarily restrictive. Also there's better places to implement such a blacklist (via die_commit in the main loop, via a config option to list supported arches, would make much more sense in terms of logic). As for the metadata extraction itself, there's no reason to hardcode the arches to check for at all. We can get this information too, from the .SRCINFO itself. Detecting this dynamically is not incompatible with a blacklist, should we ever decide to implement such a thing. Signed-off-by: Eli Schwartz <eschwartz@archlinux.org> Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
This commit is contained in:
parent
d24737f3f5
commit
16795eaf46
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ def extract_arch_fields(pkginfo, field):
|
||||||
for val in pkginfo[field]:
|
for val in pkginfo[field]:
|
||||||
values.append({"value": val, "arch": None})
|
values.append({"value": val, "arch": None})
|
||||||
|
|
||||||
for arch in ['i686', 'x86_64']:
|
for arch in pkginfo['arch']:
|
||||||
if field + '_' + arch in pkginfo:
|
if field + '_' + arch in pkginfo:
|
||||||
for val in pkginfo[field + '_' + arch]:
|
for val in pkginfo[field + '_' + arch]:
|
||||||
values.append({"value": val, "arch": arch})
|
values.append({"value": val, "arch": arch})
|
||||||
|
|
Loading…
Add table
Reference in a new issue