I think packaging Qt5 snaps currently is not really great. What the way others actually use for their Qt apps?
There are a couple of options I am aware of, all with drawbacks:
Use the kde-neon extension: This is the currently recommended approach. The downside is you are stuck with a nearly 4 year old version of Qt5. Also it depends on kde-frameworks-5-core18, which is only available for amd64.
Use a newer kde-framework part, e.g. there is the kde-frameworks-5-qt-5-14-core18 with newer Qt: This works, but one needs to replicate a lot of the boilerplate that kde-neon extension offers. Also it is still limited to amd64.
Include Qt5 in your snap: This gives the most flexibility. But it makes the snap much bigger (a snap already easily becomes a >100 MB monster, no need to make this even bigger), requires you to deal with building Qt5 and again all the boilerplate to make the snap use the proper locations on launch.
I like the idea behind the kde-neon extensions for its simplicity in using it. In theory this lets me focus on packaging my application itself. Also it is promoted as the recommended solution, which makes this look attractive at first glance. But it is not really being made clear that it is limited to amd64, and if you need newer Qt you are out of luck.
Any recommendations how to best deal with this (having a newer Qt version, being able to provide a snap for other architectures) without reinventing the wheel?
There are a couple of other solutions you could look into:
wait for the core20 version of the kde snaps and extension, that should be coming soon and at least add support for arm in the near future.
help the kde team to bootstrap this faster.
create your own Qt snap using the content interface to distribute your kde related applications. Same publisher snaps can do this at will.
These options are not turn key solutions today, but keep in mind that these platform snaps have a team behind them, it Qt or someone people trust with Qt wants to own something like a Qt platform snap, that would be most welcome.
Thanks for the suggestions. Probably have a core20 version of the kde framework and kde-neon extension is the most promising here, hopfefully with ARM support someday. At least I think the extension gives currently the best experience for packagers in regards of using it.
I also saw this very similar thread:
Same issue: How to get a newer version of Qt5. There it is suggested to use a PPA, maybe another thing to try, but seems to depend on a preview feature of snapcraft.
Currently I try to get this to work using the deprecated desktop helpers using the core20, but the resulting build is giving me other headaches :(.
As I am dealing with only a single application thatâs about the same as bundling this into the snap.
I understood that nothing will happen in near time since kde-neon maintainers probably doing their extension only for their apps and Qt folks arenât interested in maintaining a snap extension. Since no one will allow maintaining such an extension for random people, there are no hope that the situation will improve, so I switched to building Qt in snapcraft.yaml.
Thanks for sharing. I actually think I will give this a go and settle with bundling Qt in the snap. As proper Qt version often has been quite important to address bugs I think it makes sense. After all bundling Qt is also what we e.g. do on Windows and macOS.
Thatâs where I am effectively too (as in, bundling the more recent Qt soâs), though in a âdonât touch it as long as it worksâ trial-error way. I am both using the kde-neon plug, which yields a few UI subtleties, e.g. the mouse cursor/icon becomes modern, and am deploying (many of) my Qt .soâs that PyInstaller pulls together for a simple build. I found about 60 of the PyInstallerâs full choice were not actually used, and thus got excluded in the end - I mean stuff like libQt53DAnimation - the app still works, so in total I am well below 100 MB with my âzippedâ as well as snapped setups. (Probably doesnât matter too much, but I use PySide2 wrapping Qt5.15.2 )
I am absolutely unaware of the risks I take in this possibly nutter approach, but sharing the pain might be a relief on its own for you
On the other hand, thanks for raising the topic, I will follow!
That summarizes it very well. I was absolutely happy when I had this running with kde-neon and the entire setup turned out to be rather simple and easy to maintain. Until I came to the point were I need to update Qt to keep it working
Actually using PyInstaller to bundle the necessary dependencies is a very interesting idea. I had not thought about this yet. As we use PyInstaller to build the packages for other operating systems this could actually simplify things. Do you have an example how you do this in combination with Snaps? Or did I misunderstand and you either use Snaps or a PyInstaller created bundle?
Actually it is, thanks a lot I try to like snap as a packaging format, but somehow the predominant feeling I have is frustration. I fear that shines through in my posts. For now I just want to find a working solution to this. As it currently stands I am looking towards hours of trial and error to find the best approach. Once I find the time to do this and get a satisfying solution Iâll post it here.
Hello! Sorry the slow reply, I am trying to do some quite immersive coding sessions.
Firstly, I do use almost all things that seem to contradict each other, it is very much a frownable process - but Iâll detail it briefly, and then you might be quicker to find some time to evolve it into something better. (Sorry, no full example yet. Iâm on the PySide2/LGPL train at this point, the code is not intended by default to be public, and even if Iâd like to share it does need some care.)
Remark: In fact, my Snapcraft experience is not that bad at all, I had way worse times beforeâŚ
⌠extremely weird situations with packages not liking each othersâ versions in PyInstaller (my deepest fear was getting in an irresolvable situation where package1 both needs to be up and downgraded ~ possibly goodbye linux version), modules not being detected as required, odd type safety requirements in Cython.
Okay, itâs surely a lot easier at least on Win, but snapcraft felt relatively good, I guess theyâd just need more people for these half-external maintenances.
My horrible process (âdonât try this at homeâ) is so horrible and long, I decided to attach it, then realized I canât. Please check it out at your own risk!
So how things shouldnât happen
I use a Ubuntu 18 box (âbuild PCâ) hosted on my dev. PC to build the snap
I believe this is relevant as the newer Qt .sos within PySide2 will then have a (better, 0 < 1? ) chance to be compatible with core18
I like the VM as I can just run my app, pdb it if needed⌠+ Iâm not feeling lost when it comes to modifications, and it effectively gets quickly tested where its bound to be deployed in a sense anyway.
pull over the code, (clean and re)create a build-dedicated virtualenv
(- mostly unnecessary: verify that the project runs well from source code under
the venv
but whenever it is necessary, I forget to do it
it mostly ends up being a good place to fall back to if things go wrong)
build ârawâ:
PyInstaller does as setup.py tells it to, and takes care of normal duties (AFAIK wrapping the venv in the app executable, collecting whatever it sees needed) + in my case thereâs a preceding cythonization
result is in âdistâ directory
remove unnecessary .soâs (Iâll add that list too)
update the mysnaps/ (=$project) directory:
copy the entire remaining contents of the dist directory into $project/bin
also copy miscellaneous stuff (icon, desktop file in my case)
build the snap
disclaimer: I do use destructive mode
âsnapcraft --destructive-mode Destructive mode. Designed to be used in temporary/short-lived environments, such as on a CI system, because the build could contaminate the host build environment.â
(only my system isnât short-lived although I guess side effects could be eliminated to a degree if I kept reverting to a snapshot - so far didnât seem necessary, I am also packaging a simple app)
the reason for this is I am quite stubborn at using VirtualBox, but the nested mode (?) although switched on, didnât want to pan out and then neither did the MultiPass, and I got very much fed up with rebooting into another OS. Stopped halfway to trying it under VMWareâŚ
(but then this strategy might fit e.g. GitHubâs CI consistently with other platforms?)
(another reason could be startup time + the ~10+ GB that the multipass env. eats up otherwise)
For my use case I switched back to using desktop-helpers for the snap at https://github.com/phw/musicbrainz-picard-snap . Yes, the resulting package is larger, but it works and makes it available for other architectures than just amd64.
Also kde-frameworks snap is now also available as a stable release. I guess that makes it an option again to use. I havenât tried it and donât know whether kde-neon extension would already work well with it, but it is an option. But for my part I will stick with desktop-helpers for the foreseeable future.
I donât have any problems since moved to self-building Qt with desktop-helpers, it works wonderfully. And I even can patch Qt to fix some snap-related things that upstream Qt doesnât want to fix.
Itâs a pity kde-neon extension experience is so terrifying, so I think it shouldnât be positioned as a recommended way to snap Qt applications any longer since KDE maintainers definitely maintaining it only for their own purposes (e.g. they even donât provide the standard qgtk3 platformtheme plugin). Therefore, there should be some minimal extension that gives all the advantages of extensions (e.g. font hooks) without pulling neither gnome or kde libraries.
Youâre quite right, weâre pretty much there. KDE has been publishing arm64 builds of most of its snaps (and they work!) for some time. As the updated kde-neon extension has already been released to stable, this is now available for all users without extra hoops to jump through.
Also, on core22, a more modern architecture will hopefully be adopted for the kde/qt extension that allows the user to switch out the content & sdk snaps easily. A platform based on Ubuntuâs repositories or a Qt6 snap are things that could then be available as alternatives to the standard KDE Neon snap.