New, cleaner package repository structure.

Package repositories now look like this:

    top-level-dir/
        repo.yaml
        packages/
            libelf/
                package.py
            mpich/
                package.py
            ...

This leaves room at the top level for additional metadata, source,
per-repo configs, indexes, etc., and it makes it easy to see that
something is a spack repo (just look for repo.yaml and packages).
This commit is contained in:
Todd Gamblin
2015-11-26 14:19:27 -08:00
parent 04f032d6e3
commit 89d5127900
285 changed files with 137 additions and 64 deletions

View File

@@ -0,0 +1,13 @@
diff --git a/config/compiler-defs.m4 b/config/compiler-defs.m4
index d7d85d2..780c8de 100644
--- a/config/compiler-defs.m4
+++ b/config/compiler-defs.m4
@@ -28,7 +28,7 @@ dnl predefined by a specific compiler
# g++|gcc|mpicc|mpic++|mpicxx|mpiCC)
# TOO (2/16/2011): added support for tensilica compilers, assuming they are
# like GCC (they use a GCC front-end)
- g++*|gcc*|mpicc|mpic++|mpicxx|mpiCC|xt-xc++|xt-xcc)
+ cc*|c++*|g++*|gcc*|mpicc|mpic++|mpicxx|mpiCC|xt-xc++|xt-xcc)
BACKEND_GCC_MAJOR=`echo|$BACKEND_CXX_COMPILER -dumpversion | cut -d\. -f1`
BACKEND_GCC_MINOR=`echo|$BACKEND_CXX_COMPILER -dumpversion | cut -d\. -f2`
BACKEND_GCC_PATCHLEVEL=`echo|$BACKEND_CXX_COMPILER -dumpversion | cut -d\. -f3`

View File

@@ -0,0 +1,39 @@
#------------------------------------------------------------------------------
# Author: Justin Too <too1@llnl.gov>
#------------------------------------------------------------------------------
from spack import *
class Rose(Package):
"""A compiler infrastructure to build source-to-source program
transformation and analysis tools.
(Developed at Lawrence Livermore National Lab)"""
homepage = "http://rosecompiler.org/"
url = "https://github.com/rose-compiler/edg4x-rose"
version('master', branch='master', git='https://github.com/rose-compiler/edg4x-rose.git')
patch('add_spack_compiler_recognition.patch')
depends_on("autoconf@2.69")
depends_on("automake@1.14")
depends_on("libtool@2.4")
depends_on("boost@1.54.0")
depends_on("jdk@8u25-linux-x64")
def install(self, spec, prefix):
# Bootstrap with autotools
bash = which('bash')
bash('build')
# Configure, compile & install
with working_dir('rose-build', create=True):
boost = spec['boost']
configure = Executable('../configure')
configure("--prefix=" + prefix,
"--with-boost=" + boost.prefix,
"--disable-boost-version-check")
make("install-core")