public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Owen W. Taylor <otaylor@fishsoup.net>
To: git-commits@fedoraproject.org
Subject: [flatpaks/flatpak-runtime] f45: Update for newer upstream runtimes
Date: Fri, 11 Sep 2026 14:40:18 GMT	[thread overview]
Message-ID: <178913761812.1.15485132269238907594.flatpaks-flatpak-runtime-172bdec7b631@fedoraproject.org> (raw)

            A new commit has been pushed.

            Repo   : flatpaks/flatpak-runtime
            Branch : f45
            Commit : 172bdec7b631a5f72cfa6becdfd3f7de2f4fd726
            Author : Owen W. Taylor <otaylor@fishsoup.net>
            Date   : 2018-02-05T13:00:48-05:00
            Stats  : +18/-0 in 2 file(s)
            URL    : https://src.fedoraproject.org/flatpaks/flatpak-runtime/c/172bdec7b631a5f72cfa6becdfd3f7de2f4fd726?branch=f45

            Log:
            Update for newer upstream runtimes

Match file changes in a newer version of the upstream runtimes; exclude fcitx
to avoid pulling in qt4.

---
diff --git a/flatpak-runtime.yaml b/flatpak-runtime.yaml
index 62b13d8..c1f6e47 100644
--- a/flatpak-runtime.yaml
+++ b/flatpak-runtime.yaml
@@ -138,6 +138,7 @@ data:
       - gstreamer1-plugins-bad-free
       - gstreamer1-plugins-base
       - gtk2
+      - gtk2-engines
       - gtk-update-icon-cache
       - gtk3
       - guile
@@ -238,6 +239,7 @@ data:
       - libimobiledevice
       - libinput
       - libjpeg-turbo
+      - turbojpeg
       - libksba
       - libmetalink
       - libmnl
@@ -474,6 +476,7 @@ data:
       - dbus
       - dbus-libs
       - dbus-x11
+      - dconf
       - dejavu-fonts-common
       - dejavu-sans-fonts
       - dejavu-sans-mono-fonts
@@ -626,6 +629,7 @@ data:
       - libidn
       - libidn2
       - libjpeg-turbo
+      - turbojpeg
       - libksba
       - libmetalink
       - libmodman
@@ -1052,6 +1056,8 @@ data:
       - gtk-doc
       - gtk2
       - gtk2-devel
+      - gtk2-engines
+      - gtk2-engines-devel
       - gtk-update-icon-cache
       - gtk3
       - gtk3-devel
@@ -1914,6 +1920,7 @@ data:
       - dbus-libs
       - dbus-x11
       - dconf
+      - dconf-devel
       - dejavu-fonts-common
       - dejavu-sans-fonts
       - dejavu-sans-mono-fonts

diff --git a/tools/resolve-files.py b/tools/resolve-files.py
index b1c4abd..d4985d5 100755
--- a/tools/resolve-files.py
+++ b/tools/resolve-files.py
@@ -267,6 +267,14 @@ rename_patterns = [
 ]
 rename_compiled = [(re.compile(a), b) for a, b in rename_patterns]
 
+global_package_ignore_patterns = [
+    # The Fedora packages of fcitx pull in qt4. While would be nice to match the upstream
+    # runtime in including fcitx for full compatiblity when the host is using fcitx,
+    # it doesn't seem worth the increase in runtime size.
+    '^fcitx-.*$',
+]
+global_package_ignore_compiled = [re.compile(p) for p in global_package_ignore_patterns]
+
 platform_package_ignore_patterns = [
     "^.*-devel$",
     "^libappstream-glib-builder$", # may not need in the sdk either
@@ -513,6 +521,9 @@ for r in to_resolve:
         print(r, file=unmatched_file)
         unmatched_count += 1
     else:
+        if any(p.match(providing) is not None for p in global_package_ignore_compiled):
+            continue
+
         if is_platform and any(p.match(providing) is not None for p in platform_package_ignore_compiled):
             continue
 

                 reply	other threads:[~2026-09-11 14:40 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178913761812.1.15485132269238907594.flatpaks-flatpak-runtime-172bdec7b631@fedoraproject.org \
    --to=otaylor@fishsoup.net \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox