本文整理汇总了Python中easybuild.easyblocks.generic.pythonpackage.PythonPackage.build_step方法的典型用法代码示例。如果您正苦于以下问题:Python PythonPackage.build_step方法的具体用法?Python PythonPackage.build_step怎么用?Python PythonPackage.build_step使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类easybuild.easyblocks.generic.pythonpackage.PythonPackage
的用法示例。
在下文中一共展示了PythonPackage.build_step方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: install_step
# 需要导入模块: from easybuild.easyblocks.generic.pythonpackage import PythonPackage [as 别名]
# 或者: from easybuild.easyblocks.generic.pythonpackage.PythonPackage import build_step [as 别名]
def install_step(self):
"""Custom install procedure for EggLib: first build/install C++ library, then build Python library."""
# build/install C++ library
cpp_subdir = os.path.join(self.builddir, 'egglib-cpp-%s' % self.version)
try:
os.chdir(cpp_subdir)
except OSError as err:
raise EasyBuildError("Failed to move to: %s", err)
ConfigureMake.configure_step(self)
ConfigureMake.build_step(self)
ConfigureMake.install_step(self)
# header files and libraries must be found when building Python library
for varname, subdir in [('CPATH', 'include'), ('LIBRARY_PATH', 'lib')]:
env.setvar(varname, '%s:%s' % (os.path.join(self.installdir, subdir), os.environ.get(varname, '')))
# build/install Python package
py_subdir = os.path.join(self.builddir, 'egglib-py-%s' % self.version)
try:
os.chdir(py_subdir)
except OSError as err:
raise EasyBuildError("Failed to move to: %s", err)
PythonPackage.build_step(self)
self.cfg.update('installopts', "--install-lib %s" % os.path.join(self.installdir, self.pylibdir))
self.cfg.update('installopts', "--install-scripts %s" % os.path.join(self.installdir, 'bin'))
PythonPackage.install_step(self)
示例2: build_step
# 需要导入模块: from easybuild.easyblocks.generic.pythonpackage import PythonPackage [as 别名]
# 或者: from easybuild.easyblocks.generic.pythonpackage.PythonPackage import build_step [as 别名]
def build_step(self):
"""
Make libxml2 first, then make python bindings
"""
ConfigureMake.build_step(self)
try:
os.chdir('python')
# set cflags to point to include folder
env.setvar('CFLAGS', "-I../include")
PythonPackage.build_step(self)
os.chdir('..')
except OSError, err:
self.log.error("Failed to build libxml2 Python bindings: %s" % err)
示例3: install_step
# 需要导入模块: from easybuild.easyblocks.generic.pythonpackage import PythonPackage [as 别名]
# 或者: from easybuild.easyblocks.generic.pythonpackage.PythonPackage import build_step [as 别名]
def install_step(self):
"""
Install libxml2 and install python bindings
"""
ConfigureMake.install_step(self)
try:
# We can only do the python bindings after the initial installation
# since setup.py expects to find the include dir in the installation path
# and that only exists after installation
os.chdir('python')
PythonPackage.configure_step(self)
# set cflags to point to include folder for the compilation step to succeed
env.setvar('CFLAGS', "-I../include")
PythonPackage.build_step(self)
PythonPackage.install_step(self)
os.chdir('..')
except OSError, err:
raise EasyBuildError("Failed to install libxml2 Python bindings: %s", err)
示例4: install_step
# 需要导入模块: from easybuild.easyblocks.generic.pythonpackage import PythonPackage [as 别名]
# 或者: from easybuild.easyblocks.generic.pythonpackage.PythonPackage import build_step [as 别名]
def install_step(self):
"""
Custom install step for libxml2;
also build Python bindings ourselves if desired (only for older libxml2 versions
"""
ConfigureMake.install_step(self)
if self.with_python_bindings and LooseVersion(self.version) < LooseVersion('2.9.2'):
try:
# We can only do the Python bindings after the initial installation
# since setup.py expects to find the include dir in the installation path
# and that only exists after installation
os.chdir('python')
PythonPackage.configure_step(self)
# set cflags to point to include folder for the compilation step to succeed
env.setvar('CFLAGS', "-I../include")
PythonPackage.build_step(self)
PythonPackage.install_step(self)
os.chdir('..')
except OSError as err:
raise EasyBuildError("Failed to install libxml2 Python bindings: %s", err)
示例5: EasyBuildError
# 需要导入模块: from easybuild.easyblocks.generic.pythonpackage import PythonPackage [as 别名]
# 或者: from easybuild.easyblocks.generic.pythonpackage.PythonPackage import build_step [as 别名]
ConfigureMake.configure_step(self)
ConfigureMake.build_step(self)
ConfigureMake.install_step(self)
# header files and libraries must be found when building Python library
for varname, subdir in [('CPATH', 'include'), ('LIBRARY_PATH', 'lib')]:
env.setvar(varname, '%s:%s' % (os.path.join(self.installdir, subdir), os.environ.get(varname, '')))
# build/install Python package
py_subdir = os.path.join(self.builddir, 'egglib-py-%s' % self.version)
try:
os.chdir(py_subdir)
except OSError, err:
raise EasyBuildError("Failed to move to: %s", err)
PythonPackage.build_step(self)
self.cfg.update('installopts', "--install-lib %s" % os.path.join(self.installdir, self.pylibdir))
self.cfg.update('installopts', "--install-scripts %s" % os.path.join(self.installdir, 'bin'))
PythonPackage.install_step(self)
def sanity_check_step(self):
"""Custom sanity check for EggLib."""
custom_paths = {
'files': ['bin/egglib', 'lib/libegglib-cpp.a'],
'dirs': ['include/egglib-cpp', self.pylibdir],
}
super(EB_EggLib, self).sanity_check_step(custom_paths=custom_paths)