Na CentOS 7 zainstalowałem foobar w wersji 2, skompilowany ze źródeł.
Jak mogę poinformować yum o tej instalacji, aby nie instalowała foobar w wersji 1 dla zależności?
Instalacja foobar
$ git clone https://example.com/foobar.git
[...]
$ cd foobar
$ make && sudo make install
[...]
$ foobar --version
foobar v2
Instalacja pakietu wymagającego foobar
$ sudo yum install baz
[...]
---> Package baz.x86_64 0:3.14.15-9 will be installed
--> Processing Dependency: foobar >= 1 for package: baz-3.14.15-9.x86_64
[...]
Dependencies Resolved
==============================================================
Package Arch Version Repository Size
==============================================================
Installing:
baz x86_64 3.14.15-9 example 1.1 M
Installing for dependencies:
foobar x86_64 1.0.0-0.el7 example 4.5 M
Chciałbym wiedzieć yum foobar 2 jest zainstalowany i od baz wymaga foobar >= 1
albo po prostu foobar
, foobar-1.0.0-0.el7.x86_64.rpm
nie powinny być instalowane.