On 12/29/2015 10:07 AM, Sandro Mani wrote:

A simple dnf repoquery --whatrequires libwebp gives me no results at all.

Am I missing something about repoquery?

Remember: Dependencies are automatically added to an RPM at build time. RPM uses the library SONAME instead of the package name as part of the dependency. Instead of "Requires: libwebp" you will see "Requires: libwebp.so.5()(64bit)".

The correct repoquery is:
# dnf repoquery --whatrequires libwebp.so.5()(64bit)
or non-arch specific and non-SONAME specific:
# dnf repoquery --whatrequires libwebp.so.*
or arch specfic
# dnf repoquery --whatrequires libwebp.so.*(64bit)

:)
--
devel mailing list
devel@lists.fedoraproject.org
http://lists.fedoraproject.org/admin/lists/devel@lists.fedoraproject.org

Reply via email to