benoit_lx
BBlueBuild
•Created by benoit_lx on 9/3/2024 in #questions
Why rpm dependencies conflict is not stopping the build
In my
rpm-ostree
module I wanted to remove some package without knowing they were needed by other packages. This leads to error while resolving dependencies at build time. Somehow the build in the CI was successful and I rebased without being aware of these conflicts. I would like to know if this behavior is on purpose or not.
Here is a link to the action log (line 3355) : https://github.com/benoitlx/custom-desktop-image/actions/runs/10683413026/job/2961142710711 replies
BBlueBuild
•Created by benoit_lx on 7/30/2024 in #questions
What is the best way to install programs from source ?
I wanted to try the
Ly
login manager https://github.com/fairyglade/ly, but I'm not sure how I can install this since it's not like an rpm or a flatpak.
Could it be a solution to make a script that will run at build-time and do the following :
- install required dependencies for compilation (zig
, libc
...)
- clone the repository
- compile the programs
- copy binaries and systemd file to the right folder91 replies
BBlueBuild
•Created by benoit_lx on 7/29/2024 in #questions
What is the best way to modify a systemd .service file ?
I want to modify the
sddm.service
file as stated in the last message of this issue : https://github.com/sddm/sddm/issues/703. I guess the way to do that is by adding the file systemd/system/sddm.service
with the desired content in the files
directory. However I don't know if this file will be overwritten during build time by the sddm
package nor if there will be a conflict with the systemd
module. What are your thought on that ?6 replies