-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Runtime 43 #8
Runtime 43 #8
Conversation
Started test build 113243 |
Build 113243 successful
|
Started test build 113283 |
Build 113283 successful
|
Any idea why this says There is a warning while building python-xapp but that seems to be an issue with the setuptools version included in the runtime and doesn't cause the build/install to fail as far as I can see. |
Sorry for taking so long here - The xapp module is this: It should be added to the GTK3_MODULES environment variable by an xinit script: It performs a couple of magic adjustments to Gtk like adding an xapp 'Favorites' bookmark into the Gtk file dialog and giving our webapps a bit more reliable control over their taskbar icon in Cinnamon. I'm guessing there's a way we could force it to load via environment options here but it's pretty pointless - XApp Favorites are stored in gsettings/dconf, and not shared between flatpak and userspace as far as I know. |
bot, build |
Queued test build for org.x.Warpinator. |
Started test build 4484 |
Build 4484 successful
|
Ah sorry I see there are two separate messages at startup. The 'no module named xapp' is because the build thinks ..../site-packages is a non-standard path - it's only copying the egg file over but not unpacking it. It looks like people add
|
No, that doesn't do anything - adding to finish-args |
Started test build 4515 |
Build 4515 successful
|
Ok it seems to work now (other than the module warning). That warning, it turns out, is caused by the local user's GTK3_MODULES environment variable. When I run the following, there is no warning:
I'm surprised by this, but I don't work with flatpaks much, so there's probably a reason I'm missing (for inheriting the user's environment). Let me know if this works for you now, and I'll merge it. Thanks! |
I don't see any warnings regarding GTK modules.
Yes, seems to work. Thanks for the fix!
I think it's an issue with setuptools but I'm not sure, maybe pypa/setuptools#3143... |
Ah that warning's just me then, sorry. I don't know much about python's packaging/building tools, and I'm ok with continuing that trend. |
No description provided.