Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 450518 - dev-python/egenix-mx-base: 'setup.py install' does not respect --build-lib
Summary: dev-python/egenix-mx-base: 'setup.py install' does not respect --build-lib
Status: RESOLVED UPSTREAM
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal major
Assignee: Python Gentoo Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-01-06 11:53 UTC by Michał Górny
Modified: 2016-10-14 10:50 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Michał Górny archtester Gentoo Infrastructure gentoo-dev Security 2013-01-06 11:53:00 UTC
/usr/bin/python2.7 setup.py build --build-base /tmp/portage/dev-python/egenix-mx-base-3.2.5/work/egenix-mx-base-3.2.5-python2_7 --build-lib /tmp/portage/dev-python/egenix-mx-base-3.2.5/work/egenix-mx-base-3.2.5-python2_7/lib --build-scripts /tmp/portage/dev-python/egenix-mx-base-3.2.5/work/egenix-mx-base-3.2.5-python2_7/scripts install --compile -O2 --root=/tmp/portage/dev-python/egenix-mx-base-3.2.5/image//_python2.7

[...]

warning: mx_install_lib: '/tmp/portage/dev-python/egenix-mx-base-3.2.5/work/egenix-mx-base-3.2.5-python2_7/lib.linux-x86_64-2.7_ucs4' does not exist -- no Python modules to install
Comment 1 Michał Górny archtester Gentoo Infrastructure gentoo-dev Security 2013-01-06 12:37:54 UTC
It seems that the following work-around in mxSetup.py is responsible:

        # Undo the change introduced in Python 2.4 to bdist_wininst
        # which manipulates the build.build_lib path and adds
        # a target_version specific ending; we simply override
        # the value here (rather than in build), since all install_*
        # commands pick up the .build_lib value from this command
        # rather than build.
        if self.distribution.has_ext_modules():
            build = self.get_finalized_command('build')
            if _debug:
                print ('resetting build_lib from "%s" to "%s"' %
                       (self.build_lib,
                        build.build_platlib))
            self.build_lib = build.build_platlib


Adding --build-platlib to setup.py install-phase invocation work-arounds it.
Comment 2 Patrice Clement (RETIRED) gentoo-dev 2016-10-14 10:50:43 UTC
File a bug upstream Michal if you want the install procedure to work as expected.