Add package-specific rpath back to shiboken and pyside.
This commit is contained in:
@@ -1,5 +1,4 @@
|
|||||||
from spack import *
|
from spack import *
|
||||||
import spack.package
|
|
||||||
import os
|
import os
|
||||||
|
|
||||||
class PyPyside(Package):
|
class PyPyside(Package):
|
||||||
@@ -9,25 +8,33 @@ class PyPyside(Package):
|
|||||||
|
|
||||||
version('1.2.2', 'c45bc400c8a86d6b35f34c29e379e44d')
|
version('1.2.2', 'c45bc400c8a86d6b35f34c29e379e44d')
|
||||||
|
|
||||||
|
# TODO: make build dependency
|
||||||
|
# depends_on("cmake")
|
||||||
|
|
||||||
extends('python')
|
extends('python')
|
||||||
depends_on('py-setuptools')
|
depends_on('py-setuptools')
|
||||||
depends_on('qt@:4')
|
depends_on('qt@:4')
|
||||||
|
|
||||||
def patch(self):
|
def patch(self):
|
||||||
"""Undo PySide RPATH handling and add Spack RPATH."""
|
"""Undo PySide RPATH handling and add Spack RPATH."""
|
||||||
|
# Figure out the special RPATH
|
||||||
|
pypkg = self.spec['python'].package
|
||||||
|
rpath = self.rpath
|
||||||
|
rpath.append(os.path.join(self.prefix, pypkg.site_packages_dir, 'PySide'))
|
||||||
|
|
||||||
# Add Spack's standard CMake args to the sub-builds.
|
# Add Spack's standard CMake args to the sub-builds.
|
||||||
# They're called BY setup.py so we have to patch it.
|
# They're called BY setup.py so we have to patch it.
|
||||||
filter_file(
|
filter_file(
|
||||||
r'OPTION_CMAKE,',
|
r'OPTION_CMAKE,',
|
||||||
r'OPTION_CMAKE, ' + (
|
r'OPTION_CMAKE, ' + (
|
||||||
'"-DCMAKE_INSTALL_RPATH_USE_LINK_PATH=FALSE", '
|
'"-DCMAKE_INSTALL_RPATH_USE_LINK_PATH=FALSE", '
|
||||||
'"-DCMAKE_INSTALL_RPATH=%s",' % ':'.join(self.rpath)),
|
'"-DCMAKE_INSTALL_RPATH=%s",' % ':'.join(rpath)),
|
||||||
'setup.py')
|
'setup.py')
|
||||||
|
|
||||||
# PySide tries to patch ELF files to remove RPATHs
|
# PySide tries to patch ELF files to remove RPATHs
|
||||||
# Disable this and go with the one we set.
|
# Disable this and go with the one we set.
|
||||||
filter_file(
|
filter_file(
|
||||||
r'rpath_cmd\(pyside_path, srcpath\)',
|
r'^\s*rpath_cmd\(pyside_path, srcpath\)',
|
||||||
r'#rpath_cmd(pyside_path, srcpath)',
|
r'#rpath_cmd(pyside_path, srcpath)',
|
||||||
'pyside_postinstall.py')
|
'pyside_postinstall.py')
|
||||||
|
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
from spack import *
|
from spack import *
|
||||||
|
import os
|
||||||
|
|
||||||
class PyShiboken(Package):
|
class PyShiboken(Package):
|
||||||
"""Shiboken generates bindings for C++ libraries using CPython source code."""
|
"""Shiboken generates bindings for C++ libraries using CPython source code."""
|
||||||
@@ -19,11 +20,15 @@ def patch(self):
|
|||||||
"""Undo Shiboken RPATH handling and add Spack RPATH."""
|
"""Undo Shiboken RPATH handling and add Spack RPATH."""
|
||||||
# Add Spack's standard CMake args to the sub-builds.
|
# Add Spack's standard CMake args to the sub-builds.
|
||||||
# They're called BY setup.py so we have to patch it.
|
# They're called BY setup.py so we have to patch it.
|
||||||
|
pypkg = self.spec['python'].package
|
||||||
|
rpath = self.rpath
|
||||||
|
rpath.append(os.path.join(self.prefix, pypkg.site_packages_dir, 'Shiboken'))
|
||||||
|
|
||||||
filter_file(
|
filter_file(
|
||||||
r'OPTION_CMAKE,',
|
r'OPTION_CMAKE,',
|
||||||
r'OPTION_CMAKE, ' + (
|
r'OPTION_CMAKE, ' + (
|
||||||
'"-DCMAKE_INSTALL_RPATH_USE_LINK_PATH=FALSE", '
|
'"-DCMAKE_INSTALL_RPATH_USE_LINK_PATH=FALSE", '
|
||||||
'"-DCMAKE_INSTALL_RPATH=%s",' % ':'.join(self.rpath)),
|
'"-DCMAKE_INSTALL_RPATH=%s",' % ':'.join(rpath)),
|
||||||
'setup.py')
|
'setup.py')
|
||||||
|
|
||||||
# Shiboken tries to patch ELF files to remove RPATHs
|
# Shiboken tries to patch ELF files to remove RPATHs
|
||||||
|
Reference in New Issue
Block a user