Add Flatpak base support - #64
Merged
Merged
Conversation
Base is different from runtime. This can help fix PySide, for example, by using https://github.com/flathub/com.riverbankcomputing.PyQt.BaseApp/ as the base.
4 tasks
limdingwen
marked this pull request as ready for review
September 14, 2025 07:18
limdingwen
added a commit
to limdingwen/KemonoDownloader
that referenced
this pull request
Sep 14, 2025
Requires beeware/briefcase-linux-flatpak-template#64 to be merged in first! In the meantime, you can use my template: ``` [tool.briefcase.app.kemonodownloader.linux.flatpak] flatpak_runtime = "org.kde.Platform" flatpak_runtime_version = "6.7" flatpak_base = "com.riverbankcomputing.PyQt.BaseApp" flatpak_base_version = "6.7" flatpak_sdk = "org.kde.Sdk" template = "https://github.com/limdingwen/briefcase-linux-flatpak-template/" ``` Before this commit, running `briefcase build linux flatpak` would work, but running it would cause a missing `libgssapi_krb5.so.2` error and an instant crash. One of the ways to fix this is by using https://github.com/flathub/com.riverbankcomputing.PyQt.BaseApp/ as the base, which this commit does.
freakboy3742
approved these changes
Sep 17, 2025
freakboy3742
left a comment
Member
There was a problem hiding this comment.
Thanks - this change makes sense to me!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds the optional ability for the user to add a base to the
manifest.yml.Base is different from runtime. This can help fix PySide, for example, by using https://github.com/flathub/com.riverbankcomputing.PyQt.BaseApp/ as the base.
Refs:
PR Checklist: