public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [flatpaks/flatpak-runtime] f45: Special case glibc-headers-{arch}
@ 2026-09-11 14:43 Owen W. Taylor
  0 siblings, 0 replies; only message in thread
From: Owen W. Taylor @ 2026-09-11 14:43 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : flatpaks/flatpak-runtime
Branch : f45
Commit : 5f24b070382707a49e8a0fde8d945ffd515de231
Author : Owen W. Taylor <otaylor@fishsoup.net>
Date   : 2026-03-02T21:12:38-05:00
Stats  : +7/-0 in 1 file(s)
URL    : https://src.fedoraproject.org/flatpaks/flatpak-runtime/c/5f24b070382707a49e8a0fde8d945ffd515de231?branch=f45

Log:
Special case glibc-headers-{arch}

---
diff --git a/tools/resolve-files.py b/tools/resolve-files.py
index 14a8d29..599e17d 100755
--- a/tools/resolve-files.py
+++ b/tools/resolve-files.py
@@ -701,6 +701,13 @@ for r in to_resolve:
         print(r, file=unmatched_file)
         unmatched_count += 1
     else:
+        # On Fedora glibc-headers-s390 and glibc-headers-x86_64 are no-arch
+        # dependencies of glibc-devel required on the specific platform;
+        # we just normalize to glibc-devel and let dependencies pull in the
+        # appropriate glibc-headers package.
+        if providing.startswith("glibc-headers-"):
+            providing = "glibc-devel"
+
         if any(p.match(providing) is not None for p in global_package_ignore_compiled):
             continue
 

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2026-09-11 14:43 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:43 [flatpaks/flatpak-runtime] f45: Special case glibc-headers-{arch} Owen W. Taylor

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox