Rewrite Rust package (#9998)

This commit is contained in:
sknigh 2018-12-05 11:15:45 -08:00 committed by Massimiliano Culpo
parent 5434a25076
commit 060d1944d4

View File

@ -4,12 +4,6 @@
# SPDX-License-Identifier: (Apache-2.0 OR MIT) # SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack import * from spack import *
import os
def get_submodules():
git = which('git')
git('submodule', 'update', '--init', '--recursive')
class Rust(Package): class Rust(Package):
@ -18,12 +12,7 @@ class Rust(Package):
homepage = "http://www.rust-lang.org" homepage = "http://www.rust-lang.org"
git = "https://github.com/rust-lang/rust.git" git = "https://github.com/rust-lang/rust.git"
version('1.8.0', tag='1.8.0') version('1.30.1', tag='1.30.1')
resource(name='cargo',
git="https://github.com/rust-lang/cargo.git",
tag='0.10.0',
destination='cargo')
extendable = True extendable = True
@ -32,39 +21,36 @@ class Rust(Package):
depends_on("curl") depends_on("curl")
depends_on("git") depends_on("git")
depends_on("cmake") depends_on("cmake")
depends_on("binutils")
depends_on("python@:2.8") depends_on("python@:2.8")
# Cargo # Cargo
depends_on("openssl") depends_on("openssl")
phases = ['configure', 'install']
def configure(self, spec, prefix):
configure_args = [
'--prefix=%s' % prefix,
'--llvm-root=' + spec['llvm'].prefix,
# Workaround for "FileCheck does not exist" error
'--disable-codegen-tests',
# Includes Cargo in the build
# https://github.com/rust-lang/cargo/issues/3772#issuecomment-283109482
'--enable-extended',
# Prevent build from writing bash completion into system path
'--sysconfdir=%s' % join_path(prefix, 'etc/')
]
configure(*configure_args)
# Build system defaults to searching in the same path as Spack's
# compiler wrappers which causes the build to fail
filter_file(
'#ar = "ar"',
'ar = "%s"' % join_path(spec['binutils'].prefix.bin, 'ar'),
'config.toml')
def install(self, spec, prefix): def install(self, spec, prefix):
configure('--prefix=%s' % prefix,
'--llvm-root=' + spec['llvm'].prefix)
make() make()
make("install") make("install")
# Install cargo, rust package manager
with working_dir(os.path.join('cargo', 'cargo')):
get_submodules()
configure('--prefix=' + prefix,
'--local-rust-root=' + prefix)
make()
make("install")
def setup_dependent_package(self, module, dependent_spec):
"""
Called before python modules' install() methods.
In most cases, extensions will only need to have one or two lines::
cargo('build')
cargo('install', '--root', prefix)
or
cargo('install', '--root', prefix)
"""
# Rust extension builds can have a global cargo executable function
module.cargo = Executable(join_path(self.spec.prefix.bin, 'cargo'))