You are not logged in.
Hi!
Please tell me the procedure for adding my program to the Community repository?
https://github.com/CineEncoder/cine-encoder
The program is already in the AUR repository (cine-encoder)
I completely redesigned the program and added new features. The program works perfectly.
Offline
https://wiki.archlinux.org/index.php/Of … #community
https://wiki.archlinux.org/index.php/Ar … repository?
In short, you don't, TUs do if they're interested.
Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD
Making lemonade from lemons since 2015.
Offline
No /usr/bin/cineencoder (or similar)? Just a .desktop? Would be annoying to call on occasion.
Offline
OK, but how do I report my program to Trusted Users?
Offline
WorMzy's second link is broken, the question mark is actually part of the link. Please read both links, it's explained in the second.
Offline
What do you mean "Just a .desktop"?
Last edited by Helg1980 (2020-08-12 09:01:53)
Offline
There is no simple way to launch the program from a cli or something like it, like the default dmenu runner on i3. Just a sidenote.
Offline
This is because I did it on Python, I'll rewrite it in C++ later
Try this:
$ python /usr/lib/python3.8/site-packages/cine-encoder/main.py
Last edited by Helg1980 (2020-08-12 09:20:40)
Offline
Use setuptools entry_points for this. Also https://github.com/CineEncoder/cine-enc … desktop#L9
Your desktop file incorrectly lists supported Mimetype= values that can be opened with "python /usr/lib/python3.8/site-packages/cine-encoder/main.py /path/to/file.mp4" or whatever. But the desktop file doesn't actually pass those arguments to the program as per https://specifications.freedesktop.org/ … -variables
Furthermore a quick glance at the code indicates there is no option parsing to use those command-line arguments even if you try.
Either implement this, or remove the Mimetype= key.
Managing AUR repos The Right Way -- aurpublish (now a standalone tool)
Offline
Use setuptools entry_points for this. Also https://github.com/CineEncoder/cine-enc … desktop#L9
Your desktop file incorrectly lists supported Mimetype= values that can be opened with "python /usr/lib/python3.8/site-packages/cine-encoder/main.py /path/to/file.mp4" or whatever. But the desktop file doesn't actually pass those arguments to the program as per https://specifications.freedesktop.org/ … -variables
Furthermore a quick glance at the code indicates there is no option parsing to use those command-line arguments even if you try.
Either implement this, or remove the Mimetype= key.
I corrected this error today (just deleted Mimetype= key).
Offline