Hi,
I have created a rpm (cmake, cpack) that when installed with zypper resolvs and installs the dependencies.
But now with a new lib ( /usr/lib64/libRInside.so ) linked ,in the C++ program, zypper is not able to resolv and install and finally stops without installing.
Info here :
///////// The lib exits.
#ls /usr/lib64/libRInside.so
/usr/lib64/libRInside.so
///////// The package is installed.
zypper se R-RInside Loading repository data…
Reading installed packages…
S | Name | Type | Version | Arch | Repository
—±----------------±-----------±------------±-------±--------------------------
i+ | R-RInside | package | 0.2.13-2.1 | x86_64 | devel:languages:R:released
v | R-RInside | package | 0.2.13-1.64 | i586 | devel:languages:R:released
| R-RInside | srcpackage | 0.2.13-2.1 | noarch | devel:languages:R:released
| R-RInside | srcpackage | 0.2.13-1.64 | noarch | devel:languages:R:released
i+ | R-RInside-devel | package | 0.2.13-2.1 | x86_64 | devel:languages:R:released
v | R-RInside-devel | package | 0.2.13-1.64 | i586 | devel:languages:R:released
//// The lib is in the package
rpm -q --whatprovides /usr/lib64/libRInside.so
R-RInside-0.2.13-2.1.x86_64
/// If I try to install
#zypper in myPkg
Loading repository data…
Reading installed packages…
Forcing installation of ‘myPkg-0.4.master.4661920-1.i686’ from repository ‘myPkgRepo’.
Resolving package dependencies…
Problem: nothing provides libRInside.so()(64bit) needed by myPkg-0.4.master.4661920-1.i686
Solution 1: do not install myPkg-0.4.master.4661920-1.i686
Solution 2: break myPkg-0.4.master.4661920-1.i686 by ignoring some of its dependencies
Choose from above solutions by number or cancel [1/2/c] (c):
Any clues?
Thank you.