https://bugzilla.redhat.com/show_bug.cgi?id=2499975
--- Comment #8 from Daniel Handzus <[email protected]> --- > Unversioned so-files > -------------------- > mariadb-connector-python: > /usr/lib64/python3.15/site-packages/mariadb/_mariadb.cpython-315-x86_64-linux-gnu.so This .so is unversioned because it is a Python C-extension loaded at runtime, and is not meant to be linked against by other system binaries and/or users. According to Fedora packaging guidelines, unversioned so-files are acceptable under the following conditions: 1. The DSO MUST NOT be visible to the dynamic linker - the .so is not visible in the ldconfig -p output. 2. DSO must be located in a private directory (not directly in /usr/lib64/) - the .so is installed within the Python site-packages/ subdirectory. 3. DSO must not be linked against and is loaded at runtime by the implementing application - it is loaded solely at runtime by Python via import. Because these conditions are met, the unversioned DSO does not need to be placed in -devel package. -- You are receiving this mail because: You are always notified about changes to this product and component You are on the CC list for the bug. https://bugzilla.redhat.com/show_bug.cgi?id=2499975 Report this comment as SPAM: https://bugzilla.redhat.com/enter_bug.cgi?product=Bugzilla&format=report-spam&short_desc=Report%20of%20Bug%202499975%23c8 -- _______________________________________________ package-review mailing list -- [email protected] To unsubscribe send an email to [email protected] Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/[email protected] Do not reply to spam, report it: https://forge.fedoraproject.org/infra/tickets/issues/new
