From 142b741384347dd31ee2008726b3b3d237e2588f Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Sat, 21 Aug 2021 08:24:35 -0400 Subject: [PATCH] python: Workaround broken install path --- mesonbuild/modules/python.py | 23 ++++++++++++++++++++--- run_project_tests.py | 5 ++--- 2 files changed, 22 insertions(+), 6 deletions(-) diff --git a/mesonbuild/modules/python.py b/mesonbuild/modules/python.py index f2f407667..ed8dbd804 100644 --- a/mesonbuild/modules/python.py +++ b/mesonbuild/modules/python.py @@ -272,6 +272,7 @@ print (json.dumps ({ 'variables': sysconfig.get_config_vars(), 'paths': sysconfig.get_paths(), 'install_paths': install_paths, + 'sys_paths': sys.path, 'version': sysconfig.get_python_version(), 'platform': sysconfig.get_platform(), 'is_pypy': '__pypy__' in sys.builtin_module_names, @@ -334,10 +335,27 @@ class PythonExternalProgram(ExternalProgram): variables = info['variables'] info['suffix'] = variables.get('EXT_SUFFIX') or variables.get('SO') or variables.get('.so') self.info = T.cast('PythonIntrospectionDict', info) + self.platlib = self._get_path('platlib') + self.purelib = self._get_path('purelib') return True else: return False + def _get_path(self, key: str) -> None: + user_dir = str(Path.home()) + sys_paths = self.info['sys_paths'] + rel_path = self.info['install_paths'][key][1:] + if not any(p.endswith(rel_path) for p in sys_paths if not p.startswith(user_dir)): + # On Debian derivatives sysconfig install path is broken and is not + # included in the locations python actually lookup. + # See https://github.com/mesonbuild/meson/issues/8739. + mlog.warning('Broken python installation detected. Python files', + 'installed by Meson might not be found by python interpreter.', + once=True) + if mesonlib.is_debianlike(): + rel_path = 'lib/python3/dist-packages' + return rel_path + class PythonInstallation(ExternalProgramHolder): def __init__(self, python, interpreter): @@ -347,9 +365,8 @@ class PythonInstallation(ExternalProgramHolder): self.variables = info['variables'] self.suffix = info['suffix'] self.paths = info['paths'] - install_paths = info['install_paths'] - self.platlib_install_path = os.path.join(prefix, install_paths['platlib'][1:]) - self.purelib_install_path = os.path.join(prefix, install_paths['purelib'][1:]) + self.platlib_install_path = os.path.join(prefix, python.platlib) + self.purelib_install_path = os.path.join(prefix, python.purelib) self.version = info['version'] self.platform = info['platform'] self.is_pypy = info['is_pypy'] diff --git a/run_project_tests.py b/run_project_tests.py index 3819357f5..289aef931 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -147,7 +147,6 @@ class InstalledFile: (env.machines.host.is_windows() and compiler in {'pgi', 'dmd', 'ldc'})): canonical_compiler = 'msvc' - python_paths = python.info['install_paths'] python_suffix = python.info['suffix'] has_pdb = False @@ -170,8 +169,8 @@ class InstalledFile: # Handle the different types if self.typ in {'py_implib', 'python_lib', 'python_file'}: val = p.as_posix() - val = val.replace('@PYTHON_PLATLIB@', python_paths['platlib']) - val = val.replace('@PYTHON_PURELIB@', python_paths['purelib']) + val = val.replace('@PYTHON_PLATLIB@', python.platlib) + val = val.replace('@PYTHON_PURELIB@', python.purelib) p = Path(val) if self.typ == 'python_file': return p