Hi.
I'm trying to build some packages which require a dependency which is both in my local repository and in Solus one.
I need to prioritize my local one: online I found out that in order to do that I need to remove_repos
to pop out Solus repository and then to add_repos
to add it back after the local one. So, assuming my local repository is defined as Local
:
remove_repos = ['Solus']
add_repos = ['Local','Solus']
With this modification I can see Solbuild is updating indexes in the correct order, but when it needs to pick the dependency which is in both, it always gets it from Solus repository (even though in my local repository it has greater release number).
Is someone able to help me?