Fedora Workstation ships with a flathub remote which is filtered. Only explicitly allowed applications and runtimes are available, unless the user has explicitly installed the full Flatpak remote.
This repository holds data files with the status of available downloads from Flathub, and scripts for updating those files.
The main data files are apps.txt with applications and other.txt with other downloads: runtime, runtime extensions, and app extensions. An entry in one of these files looks like:
[com.spotify.Client] Name: Spotify Include: yes Comments: very popular. Downloads via extra-data Summary: Online music streaming service Homepage: https://www.spotify.com Links: https://flathub.org/apps/details/com.spotify.Client https://github.com/flathub/com.spotify.Client License: LicenseRef-proprietary=https://www.spotify.com/us/legal/end-user-agreement/ Runtime: org.freedesktop.Platform/20.08 Downloads (new last month): 29978 (rank: 1) Fedora Flatpak: no
Notes:
Downloads (new last month) is non-incremental downloads in the last month.
We ignore incremental updates,
because we don't want to count apps that are frequently updated as more popular.
Rank is separate for applications and other downloads.Comments is free-form text explaining a value of yes or no in IncludeInclude indicates a decision to include or exclude the Flatpak from Fedora.
For now, most components will have blank values for Include, which means
they will be excluded, but no decision has been made.Links is a field with useful links to learn more about this entry. Its
filled in automatically for apps.txt, but starts off empty and is editable
in other.txt.There is also a file wildcard.txt which holds entries
for wild-card patterns that match against many entries in apps.txt
or other.txt.
[org.freedesktop.Platform.GL.default/*] Comments: Mesa libGL. Built as part of org.freedesktop.Platform Include: yes Links: https://gitlab.com/freedesktop-sdk/freedesktop-sdk
Unlike apps.txt and other.txt, wildcard.txt starts off empty,
and entries have to be added to it manually. When entries in
wildcard.txt match items in apps.txt or other.txt, they are
inserted as follows:
[org.freedesktop.Platform.GL.default/20.08] Matched: org.freedesktop.Platform.GL.default/* Include: # yes Comments: # Mesa libGL. Built as part of org.freedesktop.Platform Links: # https://gitlab.com/freedesktop-sdk/freedesktop-sdk Downloads (new last month): 278820 (rank: 1) Fedora Flatpak: no
filter.txt is the final filter file. It shouldn't be edited manually.
The update.py script is used to update apps.txt, other.txt, and filter.txt.
Usage is simple. To download the latest data from Flathub and Fedora,
and update the data files, run:
./update.py
Interesting options are:
--verbose show slightly more output--quiet show less output--force-download force downloading current application data,
even if the cached data is recent.--rebase=TARGET like git rebase TARGET,
but with special handling of apps.txt and other.textThe last deserves more explanation.
The big problem with the strategy of checking apps.txt and other.txt into git
is that as download statistics change, they change a lot.
Commits to this repository that mixed updates and substantive changes would be unreadable.
What --rebase=TARGET does is create a single commit on top of TARGET
with only changes from running update.py, and then replays commits not in TARGET,
merging changes to apps.txt, other.txt, and wildcard.txt in a smart fashion.
git clone https://pagure.io/fedora-flathub-filter cd fedora-flathub-filter # make a branch to work on git checkout -b updates-2021-03-24 # add an initial commit with just update.py changes ./update.py --rebase main # Edit, edit, edit, commit, edit, ..., commit # update your branch with any upstream and Flathub changes git fetch origin ./update.py --rebase origin/main # File your branch as a pull request
extra-data mechanism.
If the program is coming from an established, well-known commercial entity,
you can assume they have obtained all necessary patent and other licenses.Comments non-speculative. Something like:
"Contains h264, not currently shipped with Fedora" is appropriate.