From 501669faba73d578fad745954f2deed8d653ebe2 Mon Sep 17 00:00:00 2001 From: 健美猞猁 Date: Wed, 5 Sep 2018 03:49:28 +0800 Subject: Pack dlang's stdlib into dmd. (#9131) * Update dmd. * Build dmd and druntime. * Build dmd. * Restore edit. * Flake8. --- var/spack/repos/builtin/packages/dmd/package.py | 55 ++++++++++++++++++++++--- 1 file changed, 50 insertions(+), 5 deletions(-) (limited to 'var') diff --git a/var/spack/repos/builtin/packages/dmd/package.py b/var/spack/repos/builtin/packages/dmd/package.py index 1396d80878..dcbae9f869 100644 --- a/var/spack/repos/builtin/packages/dmd/package.py +++ b/var/spack/repos/builtin/packages/dmd/package.py @@ -23,6 +23,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ############################################################################## from spack import * +import os class Dmd(MakefilePackage): @@ -36,16 +37,60 @@ class Dmd(MakefilePackage): depends_on('openssl') depends_on('curl') + # https://wiki.dlang.org/Building_under_Posix + resource(name='druntime', + url='https://github.com/dlang/druntime/archive/v2.081.1.tar.gz', + md5='49c8ba48fcb1e53d553a52d8ed7f9164', + placement='druntime') + resource(name='phobos', + url='https://github.com/dlang/phobos/archive/v2.081.1.tar.gz', + md5='ccf4787275b490eb2ddfc6713f9e9882', + placement='phobos') + resource(name='tools', + url='https://github.com/dlang/tools/archive/v2.081.1.tar.gz', + md5='a3bc7ed3d60b39712ef011bf19b3d427', + placement='tools') + def setup_environment(self, spack_env, run_env): run_env.prepend_path('PATH', self.prefix.linux.bin64) + run_env.prepend_path('LIBRARY_PATH', self.prefix.linux.lib64) + run_env.prepend_path('LD_LIBRARY_PATH', self.prefix.linux.lib64) def edit(self, spec, prefix): - makefile = FileFilter('posix.mak') - makefile.filter('$(PWD)/../install', prefix, string=True) + # Move contents to dmd/ + mkdir = which('mkdir') + mkdir('dmd') + mv = which('mv') + dmd_files = [f for f in os.listdir('.') + if not f.startswith(('dmd', + 'druntime', + 'phobos', + 'tools', + 'spack-build'))] + for f in dmd_files: + mv(f, 'dmd') + # Edit + dmd_mak = FileFilter('dmd/posix.mak') + dmd_mak.filter('$(PWD)/../install', prefix, string=True) + dr_mak = FileFilter('druntime/posix.mak') + dr_mak.filter('INSTALL_DIR=.*', 'INSTALL_DIR={0}'.format(prefix)) + pb_mak = FileFilter('phobos/posix.mak') + pb_mak.filter('INSTALL_DIR = .*', 'INSTALL_DIR = {0}'.format(prefix)) + tl_mak = FileFilter('tools/posix.mak') + tl_mak.filter('INSTALL_DIR = .*', 'INSTALL_DIR = {0}'.format(prefix)) def build(self, spec, prefix): - make('-f', 'posix.mak', 'AUTO_BOOTSTRAP=1') + with working_dir('dmd'): + make('-f', 'posix.mak', 'AUTO_BOOTSTRAP=1') + with working_dir('phobos'): + make('-f', 'posix.mak') def install(self, spec, prefix): - make('-f', 'posix.mak', 'install', 'AUTO_BOOTSTRAP=1') - install_tree('src', prefix.src) + with working_dir('dmd'): + make('-f', 'posix.mak', 'install', 'AUTO_BOOTSTRAP=1') + with working_dir('phobos'): + make('-f', 'posix.mak', 'install') + with working_dir('tools'): + make('-f', 'posix.mak', 'install') + with working_dir('druntime'): + make('-f', 'posix.mak', 'install') -- cgit v1.2.3-70-g09d2