The purelib and platlib were both defined to /usr/lib64/python on 64bits 
systems. This is because:

    >>> get_python_lib(standard_lib=1, plat_specific=0)
    '/usr/lib64/python3.7'

    >>> get_python_lib(standard_lib=1, plat_specific=1)
    '/usr/lib64/python3.7'

    >>> get_python_lib(standard_lib=0, plat_specific=0)
    '/usr/lib/python3.7/site-packages'

    >>> get_python_lib(standard_lib=0, plat_specific=1)
    '/usr/lib64/python3.7/site-packages'

So now we use standard_lib=0 to get the site-packages base path from /usr/lib 
and not /usr/lib64.

See https://bugzilla.redhat.com/show_bug.cgi?id=1609492

And https://src.fedoraproject.org/rpms/python-rpm-generators/pull-request/2

You can view, comment on, or merge this pull request online at:

  https://github.com/rpm-software-management/rpm/pull/483

-- Commit Summary --

  * Python generators: Use nonstandardlib for purelib definition

-- File Changes --

    M scripts/pythondistdeps.py (4)

-- Patch Links --

https://github.com/rpm-software-management/rpm/pull/483.patch
https://github.com/rpm-software-management/rpm/pull/483.diff

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/rpm-software-management/rpm/pull/483
_______________________________________________
Rpm-maint mailing list
Rpm-maint@lists.rpm.org
http://lists.rpm.org/mailman/listinfo/rpm-maint

Reply via email to