public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [flatpaks/flatpak-runtime] f45: Update ARCH_SPECIFIC_PACKAGES
@ 2026-09-11 14:42 Yaakov Selkowitz
0 siblings, 0 replies; only message in thread
From: Yaakov Selkowitz @ 2026-09-11 14:42 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : flatpaks/flatpak-runtime
Branch : f45
Commit : 985ec851879e0a60cab96121dc3affdd676eec5a
Author : Yaakov Selkowitz <yselkowi@redhat.com>
Date : 2026-03-02T20:29:46-05:00
Stats : +10/-10 in 3 file(s)
URL : https://src.fedoraproject.org/flatpaks/flatpak-runtime/c/985ec851879e0a60cab96121dc3affdd676eec5a?branch=f45
Log:
Update ARCH_SPECIFIC_PACKAGES
libasan is available on all arches. libquadmath is also enabled on
ppc64le (since gcc-8), and is used by flexiblas thereon, albeit not yet
by fftw.
---
diff --git a/container-sdk.yaml b/container-sdk.yaml
index ef0fc5a..56c385c 100644
--- a/container-sdk.yaml
+++ b/container-sdk.yaml
@@ -565,10 +565,7 @@ flatpak:
- libappstream-glib-devel
- libarchive
- libarchive-devel
- - name: libasan
- platforms:
- only:
- - aarch64
+ - libasan
- libass
- libassuan
- libassuan-devel
@@ -754,10 +751,12 @@ flatpak:
- name: libquadmath
platforms:
only:
+ - ppc64le
- x86_64
- name: libquadmath-devel
platforms:
only:
+ - ppc64le
- x86_64
- librabbitmq
- libraw1394
diff --git a/container.yaml b/container.yaml
index e1d21d0..966c8c9 100644
--- a/container.yaml
+++ b/container.yaml
@@ -369,10 +369,7 @@ flatpak:
- libaom
- libappstream-glib
- libarchive
- - name: libasan
- platforms:
- only:
- - aarch64
+ - libasan
- libass
- libassuan
- libasyncns
@@ -484,6 +481,7 @@ flatpak:
- name: libquadmath
platforms:
only:
+ - ppc64le
- x86_64
- librabbitmq
- libraw1394
diff --git a/tools/util.py b/tools/util.py
index 987f2b7..76a8fe4 100644
--- a/tools/util.py
+++ b/tools/util.py
@@ -22,8 +22,11 @@ XDG_CACHE_HOME = os.environ.get("XDG_CACHE_HOME") or os.path.expanduser("~/.cach
# packages that are only available or required on specific architectures
ARCH_SPECIFIC_PACKAGES = {}
-ARCH_SPECIFIC_PACKAGES['aarch64'] = [
- "libasan",
+ARCH_SPECIFIC_PACKAGES['aarch64'] = []
+
+ARCH_SPECIFIC_PACKAGES['ppc64le'] = [
+ "libquadmath",
+ "libquadmath-devel",
]
ARCH_SPECIFIC_PACKAGES['s390x'] = [
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-09-11 14:42 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-11 14:42 [flatpaks/flatpak-runtime] f45: Update ARCH_SPECIFIC_PACKAGES Yaakov Selkowitz
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox