Maik Wöhl
Maik Wöhl
Looking at the [pspec](https://github.com/getsolus/packages/blob/main/packages/c/chocolate-doom/pspec_x86_64.xml) of `chocolate-doom` it is possible to make 4 packages out of it. The only shared files are: ```xml /usr/share/icons/chocolate-doom.png /usr/share/icons/chocolate-setup.png ``` but there is more: ```xml...
Another idea would be to add a search in solus-sc that scans the repo for `{tld}.{vendor}.{3..(n-1)}` using [`get_apps_by_id`](https://lazka.github.io/pgi-docs/AppStreamGlib-1.0/classes/Store.html#AppStreamGlib.Store.get_apps_by_id). [Appstream docs](https://www.freedesktop.org/software/appstream/docs/chap-Metadata.html#tag-id-generic) mentions a convention that is also followed by `chocolate-doom`. In...
Okay appstream-builder is parsing the package name from the file and then assigning it to all three appstream metadata files. The icon is read from the `*.desktop` files, copied to...
First shot, with a little bug in the desktop files: https://github.com/maikwoehl/solus-packages/blob/fix-chocolate-doom-appstream/packages/c/chocolate-doom/package.yml
> @maikwoehl This is looking really good! If you need help or tips, don't hesitate to get in touch in the Solus Packaging channel on matrix. ^^' Hi @ermo, I...
That would be really nice indeed. I could use it for my bachelor thesis to autogenerate an API documentation for the PLC code. I will evaluate if I have time...
If I have spare time this week, I can try to add file locking with https://docs.rs/fs2/0.4.3/fs2/trait.FileExt.html. I need a tool for tracking the work on my bachelor thesis.
Do it really need some file locking mechanism with the filesystem already enforcing exclusive write access to the file while executing multiple instances? Or is this issue about a wait...