Go to file
Miro Hrončok 1879d8a0e2 Use nonstandardlib for purelib definition (#1609492)
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.

Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1609492
2018-07-28 22:36:22 +02:00
COPYING Fork upstream generators 2018-02-11 00:50:54 +01:00
python-rpm-generators.spec Use nonstandardlib for purelib definition (#1609492) 2018-07-28 22:36:22 +02:00
python.attr Split python to pythondist generator 2018-07-28 14:26:48 +02:00
pythondeps.sh Fork upstream generators 2018-02-11 00:50:54 +01:00
pythondist.attr fix wrong regex in dist attr 2018-07-28 14:39:01 +02:00
pythondistdeps.py Use nonstandardlib for purelib definition (#1609492) 2018-07-28 22:36:22 +02:00