Updating flatpak

As gnome-builder closes itself without any crash message, I found on web the suggestion to uninstall gnome-builder, updating flatpak and than to reinstall builder.
The problem is that when I give the command sudo flatpack update it return this:

sudo flatpak update
Looking for updates…

Info: runtime org.gnome.Platform branch 43 is end-of-life, with reason:
   The GNOME 43 runtime is no longer supported as of September 20, 2023. Please ask your application developer to migrate to a supported platform.
Info: applications using this runtime:
   com.github.rafostar.Clapper, com.leinardi.gst, fr.handbrake.ghb

Info: runtime org.freedesktop.Platform branch 20.08 is end-of-life, with reason:
   org.freedesktop.Platform 20.08 is no longer receiving fixes and security updates. Please update to a supported runtime version.
Info: applications using this runtime:
   org.wesnoth.Wesnoth

Info: runtime org.freedesktop.Platform.GL.default branch 20.08 is end-of-life, with reason:
   org.freedesktop.Platform 20.08 is no longer receiving fixes and security updates. Please update to a supported runtime version.
Info: applications using this extension:
   org.wesnoth.Wesnoth

Nothing to do.

So, how can I updating properly?

1 Like
Nothing to do.

The above message indicates that the "flatpak update" command completed successfully ( meaning nothing to automatically update in your flatpak installation ).

Above info messages are informing you that you’re using old flatpak runtimes ( and old apps which use those old runtimes ). You can ignore the messages and use the old apps / runtime if you want ( not recommended though )

But, If you want to get rid of these messages, you can check to see if there are newer versions of those apps listed which use the newer runtimes, and update them accordingly.

Example:

You can fix the Wesnoth messages by removing app:

  • org.wesnoth.Wesnoth/x86_64/1.14 ( which depends on old runtime org.freedesktop.Platform/x86_64/20.08 )

and installing

  • org.wesnoth.Wesnoth/x86_64/stable ( which depends on a newer runtime org.freedesktop.Platform/x86_64/22.08 ).
$ flatpak search  org.wesnoth.Wesnoth
Name                  Application ID         Version      Branch   Remotes
Battle for Wesnoth    org.wesnoth.Wesnoth    1.16.10      stable   flathub
Battle for Wesnoth    org.wesnoth.Wesnoth    1.14.17      1.14     flathub
$ flatpak remote-info flathub org.wesnoth.Wesnoth/x86_64/stable
        ID: org.wesnoth.Wesnoth
       Ref: app/org.wesnoth.Wesnoth/x86_64/stable
      Arch: x86_64
    Branch: stable
Collection: org.flathub.Stable
  Download: 475.2 MB
 Installed: 589.2 MB
   Runtime: org.freedesktop.Platform/x86_64/22.08
       Sdk: org.freedesktop.Sdk/x86_64/22.08

    Commit: 557e585a1fa99f09e33ef8f70ca310c52c411edeadc02011071a36ebb21ec018
    Parent: 644c485435de324eb73f236e8785e9c156e2fbb68f536270b3fae3a581bb4285
   Subject: Version bump (5cce22ec)
      Date: 2023-08-06 11:15:27 +0000
$ flatpak remote-info flathub org.wesnoth.Wesnoth/x86_64/1.14
        ID: org.wesnoth.Wesnoth
       Ref: app/org.wesnoth.Wesnoth/x86_64/1.14
      Arch: x86_64
    Branch: 1.14
Collection: org.flathub.Stable
  Download: 466.0 MB
 Installed: 582.1 MB
   Runtime: org.freedesktop.Platform/x86_64/20.08
       Sdk: org.freedesktop.Sdk/x86_64/20.08

    Commit: 7c454581255fcf82dc68c9d9f875279cb5f05a503c7f794a4de1b37082ac6db2
    Parent: cd064539559bb897ca33d8af278572d62edf9b601f5f9db668c8b21c9fb790db
   Subject: Update appdata patch (11b6a683)
      Date: 2021-06-24 22:44:45 +0000

Cheers!

This topic was automatically closed 45 days after the last reply. New replies are no longer allowed.