0

I want flatpak 1.14.4 for the resolution of this issue when attempting to run kmail on WSL Ubuntu. When I run sudo apt upgrade flatpak, it says that the latest version of flatpak is 1.12.7-1. flatpak 1.14.4 was released in March, so the apt database has surely updated by now. How can I get flatpak 1.14.4?

Update 11-27-2023 2:19 PM

$ sudo apt install flatpak=1.14.4
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Package flatpak is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
  xdg-desktop-portal flatpak-builder

E: Version '1.14.4' for 'flatpak' was not found

But:

$ apt list flatpak
Listing... Done
flatpak/jammy,now 1.12.7-1 amd64 [installed]

1 Answers1

3

If you use 22.04 (Jammy), then 1.12.7-1 is the recent version of the flatpak-package. This package comes from the universe repository, Canonical does not provide updates for the package, some updates may (or may not) be provided by the community, obviously this was not the case.

However, you can get version 1.14.4-1 from the Flatpak team on launchpad:

sudo add-apt-repository ppa:flatpak/stable
sudo apt update
sudo apt upgrade (if flatpak is installed already, otherwise use sudo apt install flatpak)
mook765
  • 15,925