On Wed, May 20, 2020 at 8:52 AM Neal Gompa <ngompa13@gmail.com> wrote:
On Wed, May 20, 2020 at 8:39 AM Kaleb Keithley <kkeithle@redhat.com> wrote:
>
> In rawhide the ceph ceph-test subpackage is deriving a Requires: for $subject, and even with gmock and gtest installed the requires is not satisfied.
>
> And the gtest and gmock rpms (somehow) do not provide them. (Is this a bug in the gtest and gmock rpms?)
>
> (They do provide libgtest.so.1.10.0 libgmock.so.1.10.0 and libgmock_main.so.1.10.0 though.)
>
> Is there some magic that if I were to add BuildRequires: gtest gmock the magic that derives the Requires might come up with libg{test,mock,mock_main}.so.1.10.0 instead?
>
> Otherwise I'm tempted to just disable the build of ceph-test for Fedora RPM builds.
>
> I'm stumped.
>

The gtest-devel and gmock-devel packages provide the unversioned
sonames. 

It doesn't look that way to me, e.g.

$ rpm -q --provides gtest-devel
cmake(GTest) = 1.10.0
cmake(gtest) = 1.10.0
gtest-devel = 1.10.0-1.fc33
gtest-devel(x86-64) = 1.10.0-1.fc33
pkgconfig(gtest) = 1.10.0
pkgconfig(gtest_main) = 1.10.0

$ rpm -q --provides gmock-devel
gmock-devel = 1.10.0-1.fc33
gmock-devel(x86-64) = 1.10.0-1.fc33
pkgconfig(gmock) = 1.10.0
pkgconfig(gmock_main) = 1.10.0

--

Kaleb