summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2018-11-06New repo for advanced packaging tutorial (#9711)Peter Scheibel14-35/+958
* modified tutorial packages * update hint in hdf5 tutorial file (typo for suggested argument) * add repo.yaml to tutorial repository * update tutorial docs to refer user to tutorial package repository * flake edits * recommend site scope vs. defaults * you don't specify the repo's name when adding a repo, just the path
2018-11-06Binary caching: remove symlinks, copy files instead (#9747)Peter Scheibel1-3/+5
* omit symlinks and create file copies when making a binary cache of a package * unrelated flake edits involving regexes that recent flake is now angry about
2018-11-06cdash: report clean results to CDash server (#9564)Zack Galbreath4-12/+38
* Record stdout for packages without errors Previously our reporter only stored stdout if something went wrong while installing a package. This prevented us from properly reporting on steps where everything went as expected. * More robustly report all phases to CDash Previously if a phase generated no output it would not be reported to CDash. For example, consider the following output: ==> Executing phase: 'configure' ==> Executing phase: 'build' This would not generate a report for the configure phase. Now it does. * Add test case for CDash reporting clean builds * Fix default directory for CDash reports The default 'cdash_report' directory name was getting overwritten by 'junit-report'. * Upload the build phase first to CDash Older versions of CDash expect Build.xml to be the first file uploaded for any given build. * Define cdash_phase before referring to it
2018-11-06bugfix: work around ruamel.yaml vendoring issues (#9725)Massimiliano Culpo1-0/+12
- Delete references to ruamel.yaml at Spack start-up, if they are present - ruamel.yaml generates a .pth file when installed via pip that has the effect of always preferring the version of this package installed at site scope (effectively preventing us from vendoring it). - This mechanism triggers when implicitly importing the 'site' module when the python interpreter is started. In this PR we explicitly delete references to 'ruamel.yaml' and 'ruamel' in sys.modules, if any, after we set 'sys.path' to search from the directory where we store vendored packages. This ensures that the imports after those statements will be done from our vendored version. - See #9206 for further details
2018-11-06Adapted the code of the non-daemonic pool to recent python versionsMassimiliano Culpo1-7/+19
fixes #9739 The non-daemonic pool relies heavily on implementation details of the multiprocessing package. In this commit we provide an implementation that fits recent python versions.
2018-11-06snpeff: add wrapper for SnpSift.jar (#9674)Levi Baber2-14/+21
2018-11-06Add OpenMPI 3.1.3 and a bug patch (#9680)sknigh2-0/+33
2018-11-05py-backports-functools-lru-cache: add to 'backports' namespace (#9720)Gregory Lee1-0/+2
2018-11-02new package: homer (starting at 4.9.1) (#9669)Justin Stanley1-0/+48
2018-11-02freetype: enable-freetype-config build option for 2.9.1 (#9653)Eric1-1/+4
This builds the 'freetype-config' binary which can be used to get configuration information about the freetype install, used by some dependents.
2018-11-02Add version 2.0.2 of BookLeaf_Cpp and version 3.0.2 of Typhon. (#9662)Tim Law2-0/+3
2018-11-02compilers: add arm compiler detection to SpackNick Forrington1-0/+73
- added arm.py with support for detecting `armclang` and `armflang` Co-authored-by: Srinath Vadlamani <srinath.vadlamani@arm.com>
2018-11-01henson: new package (#9657)Dmitriy1-0/+38
* henson: new package * henson: change github path to henson-insitu * henson: make mpi-wrappers=off by default * henson: remove unsued variable and spaces to make linter happy * henson: rename version master to develop
2018-10-31xeus: new package (#9682)Thomas Stitt6-5/+113
* xeus: new package cppzmq: add version 4.3.0 zeromq: make libsodium optional, on by default * xeus: add patch so it builds, add new version nlohmann-json: add more versions cryptopp: add more versions * xeus: flake8 * xeus: fix license
2018-10-31Parse the ${NAMESPACE} format string in a spec's format method. (#9686)Tim Fuller1-0/+3
This allows installing software on a namespace basis by including ${NAMESPACE} in `install_path_scheme`. e.g., ``` cat ~/.spack/config.yaml config: install_path_scheme: "${ARCHITECTURE}/${NAMESPACE}/${COMPILERNAME}-${COMPILERVER}/${PACKAGE}-${VERSION}-${HASH}" ```
2018-10-31static_to_shared_library: separate options from option values (#9690)Satish Balay1-4/+4
The 'static_to_shared_library' function takes a compiler Executable, which is intended to be invoked with a list of arguments; the arguments must be separated from their values in the list, given the way that 'Executable.__call__' invokes the underlying executable. 'static_to_shared_library' was not doing this, which this commit fixes.
2018-10-31ecp-proxy-apps: disable building CANDLE Benchmarks by default (#9691)Abhinav Bhatele1-2/+5
add as a variant
2018-10-31lbzip2: add new package (#9688)Federico Ficarelli1-0/+16
2018-10-31Provide a newer doxygen version. (#9681)Kelly (KT) Thompson2-0/+32
* Provide a newer doxygen version. + Also provide a patch that allows collaboration diagrams to work properly with C++ std::shared_ptr<T>. Ref: https://github.com/Sleepyowl/doxygen/commit/6c380ba91ae41c6d5c409a5163119318932ae2a3?diff=unified
2018-10-31Packmol: a new package. (#9687)健美猞猁1-0/+16
2018-10-31r-dismo: new package starting at 1.1-4 (#9675)Justin Stanley1-0/+21
2018-10-30compilers: update clang fortran compiler wrapper selection (#9678)Todd Gamblin1-16/+44
Clang has support for using different fortran compilers with the Clang executable. Spack includes logic to select a compiler wrapper symlink which refers to the fortran executable (since some build systems depend on the name of the compiler, e.g. 'gfortran' or 'flang'). This selection was previously based on the architecture, and chose incorrectly in some situations (e.g. for clang/gfortran on Linux). This replaces architecture-based wrapper selection with a selection that is based on the name of the Fortran compiler executable.
2018-10-30Update openspeedshop and cbtf-krell module creation code (#9234)Jim Galarowicz7-112/+148
* Add the setting of CBTF_MPI_IMPLEMENTATION to the cbtf-krell and openspeeedshop package files, so that the mpi implementation can be found by the tool. This allows users to not have to set this manually if only one mpi implementation is specified in the build. * Update version ranges for dependencies of cbtf packages
2018-10-30tests: add test for FIXME boilerplate to package_sanity (#9285)Levi Baber1-0/+25
* package_sanity: add test_no_fixme * cleanup & better assert message
2018-10-30Update dependencies for py-llvmlite (#9668)Ross Miller1-1/+1
Change dependency on llvm from >=6.0 to 6.0:6.99. Refs #9667
2018-10-30New package: RegCM, regional climate model. (#9655)Alberto Chiusole1-0/+73
2018-10-30GCC: ISL and mpfr upper bounds (#9513)Axel Huebl2-6/+14
* GCC: constrain version 6, 7, and 8 to build with ISL version at most 0.18 * GCC version 9 (not yet released) will be compatible with ISL version 0.20 so future GCC releases are constrained to build with ISL version at most 0.20 * ISL: Add v0.15, replace all md5 sums with sha256 sums for ISL versions * GCC versions before 6 were constrained to build with ISL 0.14 but have been confirmed to work with ISL 0.15 * GCC: Place an upper bound on GCC's mpfr dependency
2018-10-30vtk: remove redundant option setting (#9597)Ruben Di Battista1-7/+0
This eliminates duplicates for a couple options which are set multiple times.
2018-10-30caliper: specify path to libunwind (#9670)Abhinav Bhatele1-0/+2
2018-10-30warpx: Fixes for building on NERSC (#9671)Dave1-0/+6
2018-10-30Jthies/xsdk add phist (#8980)jthies2-3/+37
* packages/phist: add variant 'fortran' to enable/disable building the Fortran bindings * xsdk: add phist * packages/xsdk: add a comment reg. updating phist dependency * packages/phist: +fortran variant is only for versions 1.7: * packages/phist: update comments * xsdk: forgot to specify kernel library for phist (picked tpetra, assuming trilinos+tpetra will be installed) * packages/phist: add variant 'openmp' to allow disabling OpenMP * phist: fix compile error due to missing -lm * flake8: fix warnings * packages/phist: fix cmake flag: XSDK_ENABLE_Fortran (rather than XSDK_BUILD_Fortran) * packages/phist: allow disabling building the scamac matrix generator (which causes trouble on some systems) * packages/xsdk: disable scamac within phist because it caused problems for @balay and is not essential for now * packages/phist: actually disable scamac via cmake if ~scamac * phist: disable openmp from xsdk
2018-10-30packages/phist: new version 1.7.3 (#9672)jthies1-0/+1
2018-10-29R rjags - new version (#9568)Dan Han1-1/+3
* REMOVED: -callr: updated to newest version, added sha256, added listurl * r-rjags: updated * r-rjags: fix new version
2018-10-29hoomd-blue: fixing issue during build with newer cmakes (#9543)snehring1-1/+4
* Constrain to build with CMake <= 3.9.6 * Specify installation prefix to match install prefix format of other Spack python libraries
2018-10-29strumpack: update to version 3.1.1 (#9666)Satish Balay1-0/+1
2018-10-29slepc: update to version 3.10.1 (#9665)Satish Balay1-0/+1
2018-10-29add package Feature/sentieon (#9557)Miles Perry1-0/+39
* added package sentieon * change file location * updated spack header license and added license_vars * fixed flake8 error * fixed license header * fix license header * license * added import os.path * edits * flake8 edits
2018-10-29orca: new package starting at 4.0.1.2 (#9297)Justin Stanley1-0/+46
* orca: new package starting at 4.0.1.2 * orca: fix typo * orca: fix boilerplate * orca: reorder deps, add openmpi runtime dependency * orca: license update
2018-10-29Expand the libMesh dependency list (#9642)David Wells1-17/+182
This commit overhauls the libMesh package script in a number of ways: * We now inherit from AutotoolsPackage. * libMesh contains about a dozen third-party dependencies that can only be provided by the copy bundled with libMesh. This patch enumerates all such bundled dependencies and disables all of them by default. * libMesh supports compilation with external installations of boost, eigen, hdf5, slepc, and tbb; this patch adds all of them to package.py. * libMesh will look for a few system executables (xz, bzip, gdb) by default. This is now disabled. * libMesh will now used a copy of perl installed by spack instead of trying to find the system copy. * Compilation with non-system MPI installations requires an additional flag (--with-mpi=); this has been added.
2018-10-29setup-env: Avoid different output format of `ps` (#9629)Bert Wesarg1-1/+1
setup-env includes a call to 'ps' to determine what shell is being used. 'ps' can be instructed to use a different default output format via the 'PS_FORMAT' env variable. Thus unset this variable before calling 'ps'.
2018-10-29diy: new package (#9628)Dmitriy1-0/+21
2018-10-29Updated octave and gnuplot versions (#9660)Denis Davydov2-0/+4
* octave: add 4.2.2, 4.4.0 and 4.4.1 * gnuplot: add 5.2.5
2018-10-26config: `spack config blame` now colors filenames in config output (#9656)Todd Gamblin1-1/+11
- it was hard to distinguish all-gray filenames - added rotating colors to `spack config blame`
2018-10-26docker: allow docker build to fail until it's fixed (#9658)Todd Gamblin1-0/+1
2018-10-26pyfypp: add setuptools build dependency (#9650)Denis Davydov1-0/+2
2018-10-26damaris: add support for VisIt and Catalyst (#9651)dorier1-5/+17
2018-10-26new package: phyluce (starting at 1.6.7) (#9633)Justin Stanley1-0/+44
2018-10-26VisIt: build vtk without mpi support (#9649)dorier1-1/+1
VisIt cannot use VTK built with mpi support (which was enabled by default starting in #9494)
2018-10-26valgrind: add 3.14.0 (#9648)Denis Davydov1-0/+1
2018-10-26new package: msmc (starting at 1.1.0) (#9654)Justin Stanley1-0/+34