diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | ebuild-mode.el | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2024-09-25 Ulrich Müller <ulm@gentoo.org> + + * ebuild-mode.el (ebuild-mode-arch-list): Remove ia64. + 2024-09-10 Ulrich Müller <ulm@gentoo.org> * test/ebuild-mode-tests.el (ebuild-mode-test-update-copyright): diff --git a/ebuild-mode.el b/ebuild-mode.el index 1116213..a6e265e 100644 --- a/ebuild-mode.el +++ b/ebuild-mode.el @@ -139,7 +139,7 @@ Returns non-nil if A is less than B by Gentoo keyword ordering." (sort (split-string (buffer-string)) #'ebuild-mode-arch-lessp)) (file-error nil)) ;; could not read architectures from repository, so fall back to default - '("alpha" "amd64" "arm" "arm64" "hppa" "ia64" "loong" "m68k" "mips" + '("alpha" "amd64" "arm" "arm64" "hppa" "loong" "m68k" "mips" "ppc" "ppc64" "riscv" "s390" "sparc" "x86")) "List of architectures.") |