summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2020-03-29spack-python should exec `spack python` (#15738)Todd Gamblin1-1/+1
The current implementation of `spack-python` will leave an extra shell around while it runs. That shell should really replace itself with spack. - [x] add exec to spack-python script
2020-03-29py-mayavi: add new package (#15751)Adam J. Stewart1-0/+23
2020-03-29py-envisage: add new package (#15748)Adam J. Stewart1-0/+25
2020-03-29py-apptools: add new package (#15747)Adam J. Stewart1-0/+20
2020-03-29new package: intel-mpi-benchmarks (#15745)Carson Woods1-0/+81
* Add initial attempt at intel-mpi-benchmarks package * Add more checksummed versions * Changes to how makefile is handled * First working install version. Needs tuning to support building specific benchmarks * Add variant for building specific benchmarks rather than all of them * Minor syntax change
2020-03-29py-traitsui: add new package (#15744)Adam J. Stewart1-0/+36
2020-03-29CitcomS: add maintainer, master version, python dep (#15742)Adam J. Stewart1-0/+9
2020-03-29py-pyface: add new package (#15743)Adam J. Stewart1-0/+33
2020-03-29py-traits: add new package (#15741)Adam J. Stewart1-0/+16
2020-03-29deal.II: Update dependencies and fix target for vectorisation (#15731)Jean-Paul Pelteret3-2/+12
* Update ADOL-C homepage url * Update SymEngine to v0.6 * deal.II: Add code to add target vectorisation flags
2020-03-29motif: add pkgconfig dependency (#15736)Adam J. Stewart1-0/+1
2020-03-28Buildcache keys command speed up (#15727)Patrick Gartung1-1/+1
* Limit the spidering to depth=0 for keys * depth=0 is default argument
2020-03-28New package: gdrcopy (#15732)Andrew W Elble1-0/+27
* New package: gdrcopy provides the userspace libraries for gdrcopy. * Update var/spack/repos/builtin/packages/gdrcopy/package.py Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com> Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
2020-03-28XIOS: add new versions (#15728)Daniele Cesarini2-29/+5
* XIOS: add new versions Patch has been removed because it was not applied to any previously existing versions and it actually breaks the new versions added by this PR. * Sort versions from newest to oldest
2020-03-28llvm: libomptarget support (#14060)Tom Scogland2-182/+299
This allows the llvm build to support: * clang cuda * libomptarget for: * current host * cuda * bitcode compilation of libomptarget device runtime for inlining by bootstrapping libomptarget * split dwarf information support as an option for debug builds, if you need a debug build, for the love of all that's good in the universe use this flag * adds necessary dependencies for shared library builds and libomp and libomp target to build correctly * new version of z3 to make it sufficient to build recent llvm The actual change is much smaller than the diff, this is because it's been formatted with black. I realize this kinda sucks right now, but I'm hoping it will make future updates here less painful.
2020-03-28fix gcc@8.4.0 build (#15729)Kai Germaschewski1-2/+2
the gcc package.py includes patches for a sanitizer related bug that look like they've been fixed in gcc 8.4.0, which caused `spack install` to fail. This PR excludes patching gcc >= 8.4.0 and < 9.0.0.
2020-03-28Add package swiftclient (#15700)Amjad Kotobi1-0/+29
* Add package swiftclient * Fix on url * Package name changed to py-python-swiftclient and changes on dependencies
2020-03-28py-statsmodels: update to 0.102 and fix dependencies (#15708)iarspider1-12/+13
* py-statsmodels: update to 0.102 and fix dependencies * Update var/spack/repos/builtin/packages/py-statsmodels/package.py Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com> Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
2020-03-28new package ddd (#15717)Daryl W. Grunau1-0/+75
* new package ddd * mitigate build/installs on case-insensitive filesystems * add missing variants * flake8 fixes * flake8: E124 closing bracket does not match visual indentation Co-authored-by: Daryl W. Grunau <dwg@lanl.gov>
2020-03-28Update URL for new py2neo versions (#15324)iarspider3-6/+54
* Update URL for new py2neo versions * Use pypi for py-py2neo * Add version 4.3.0 * Update py2neo dependencies * Apply suggestions from code review Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com> Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
2020-03-28xsbench: fix build of v19 (#15715)Christoph Junghans1-2/+8
* xsbench: fix build of v19 * Flake8
2020-03-28Hack to select iconv implementation - libiconv vs. libc iconv (#15437)iarspider30-41/+70
(re-do of #15213 due to changes in gnupg recipe)
2020-03-28mesa: re-introduce the libs property (#15716)Veselin Dobrev1-0/+8
They were originally added in #8904 and later removed (why?) in #10482.
2020-03-28py-petastorm: add new package (#15722)Adam J. Stewart1-0/+30
2020-03-27py-diskcache: add new package (#15721)Adam J. Stewart1-0/+16
2020-03-27netcdf-c: remove maxdims and maxvars variant (#15524)Greg Sjaardema1-40/+0
* NETCDF: Remove maxdims maxvars variant I'm not sure of the correct protocol to do this, so decided to make a stab and hopefully it works or I'm told the correct way... The `maxdims` and `maxvars` variants for the NetCDF package were, to the best of my knowledge, only ever used for the Exodus library in the SEACAS package. In versions of NetCDF prior to 4.4.0, Exodus required that the `NC_MAX_DIMS` and `NC_MAX_VARS` be increased over the default values. This requirement was removed in 4.4.0 and later. I do not know of any way to make a variant depend on the version and since the `maxdims` and `maxvars` variants are integer values and not boolean, then every build of NetCDF will have these variants. Typically `maxdims=1024 maxvars=8192` and the build will patch the `netcdf.h` include file for every build even though it is (almost) never needed. The SEACAS package has a NetCDF version requirement of >4.6.2, so it no longer specifies the `maxdims` or `maxvars` variant and I could find no other package in spack that uses this variant either, so removal should not break anything *in* spack. However, there is no guarantee that some other external package doesn't use the variant, so I'm not sure of the correct way to remove the variant. For this PR, I simply removed the variants. If there is a way to specify use of the variant tied to a specific version, I couldn't find it anywhere... * Address review comment Removed `is_integral` and `import numbers` since `is_integral` was only place it was used. * Add blank line for flake8
2020-03-27Package/qgis add versions 3.10.4 3.12.1 (#15720)Sinan1-17/+19
* add latest versions * order dependencies alphabetically * flake8 Co-authored-by: Sinan81 <Sinan81@github>
2020-03-27TensorFlow: let install take care of the headers (#15718)Andrew W Elble1-9/+0
* TensorFlow: let install take care of the headers we don't need to manually install them. * no longer need to import glob
2020-03-27magma now extends CudaPackage class, taking care of the gcc conflicts (#14471)Sinan1-10/+15
* magma now extends CudaPackage class, taking care of the gcc conflicts * enforce +cuda; thus cuda is dependency via CudaPackage class * add conflict * use cuda_arch to set GPU_TARGET build option * get rid of unnecessary constraint * flake8 * impose cuda version dependency found empirically * add variant description * add conflict Co-authored-by: Sinan81 <Sinan81@github> Co-authored-by: Sinan81 <sbulut@3vgeomatics.com>
2020-03-27Add new package CMinpack (#15606)Benjamin Fovet2-0/+306
* Add new package CMinpack * Add link to CMinpack PR#21
2020-03-27Adding mesa-glu 9.0.1 (2019) (#15705)JeromeDuboisPro1-0/+1
Adding mesa-glu 9.0.1 (2019)
2020-03-27py-multiprocess: add new version (0.70.9) and dependencies (#15710)iarspider2-1/+5
* py-multiprocess: add new version (0.70.9) and dependencies * Add new version of py-dill * Update package.py * Update package.py
2020-03-27New package lesstif (#15703)Daryl W. Grunau1-0/+51
* new package lesstif * incorporate more of the Homebrew build recipe Co-authored-by: Daryl W. Grunau <dwg@lanl.gov>
2020-03-27py-grpcio: add new version (#15713)Adam J. Stewart1-1/+2
2020-03-27Package/qscintilla: python bindings via extend path (#15599)Sinan4-126/+89
* build python bindings within qscintilla package via extend_path trick * add todo * reflect new setup also in py-pyqt4 package * get rid of qscintilla dependency * also tweak qgis for the new setup * generalize the building of python bindings * generalize building of pythong bindings to all qt versions * add qsci_api variant * add qsci_variant for pyqt4 package as well; add comment * pyqt dependency should build with +qsci_api variant enabled * fix bugs * improve style * reflect recent changes * flake8 * improve style * more flake8 * more flake8 Co-authored-by: Sinan81 <sbulut@3vgeomatics.com>
2020-03-27QMCPACK Update March 2020 - Part 2 (#15616)Nichols A. Romero2-53/+44
* Add some comments explaining the choice of flag_handler. * Fix QMCPACK install method. * Add support for ppconvert. This requires a custom build method. * Fix QMCPACK setup_run_environment. Nexus should be properly supported now. * Cleaner way to check for intel-mkl in spec. * Remove build method and use build_targets property instead. * Additional fixed for install method. Effectively restoring the original install method. * Add the missing backslash to fix directory names. * Update var/spack/repos/builtin/packages/qmcpack/package.py Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com> * Update var/spack/repos/builtin/packages/qmcpack/package.py Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com> * Update var/spack/repos/builtin/packages/qmcpack/package.py Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com> * Omit these conflicts on mkl variants for now, will hopefully be supportted with new concretizer in a couple of months. Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
2020-03-27util-linux: add libmount variant (#15631)darmac1-0/+7
2020-03-27Add new package: zfs (#15632)darmac1-0/+28
2020-03-27add source-highlight variant to gdb (#15634)Hector1-0/+2
2020-03-27denovogear: fixed comparison error (#15638)noguchi-k2-0/+13
2020-03-27Bison: add version 3.3.2 (#15707)iarspider1-0/+1
2020-03-27py-attrs: add version 19.3.0 (#15709)iarspider1-0/+2
2020-03-27intel-tbb: new download url, fix sha256 (#15675)Dr. Christian Tacke1-35/+37
intel moved the repository around. github changes the prefix inside the tar according to the repository name. So all sha256 have changed! I verified that the tar contents for 2019.4 did not change except for the prefix.
2020-03-27New package Anaconda2 (#15676)Amjad Kotobi1-0/+47
2020-03-27TensorFlow: Make horovod compilation work (#15692)Andrew W Elble2-20/+100
* TensorFlow: Clean up/simplify the installation, make sure the headers are installed so that horovod can find them successfully. Fix the 2.0.* builds. * Backport of 837c8b6b upstream "Remove contrib cloud bigtable and storage ops/kernels." Allows 2.0.* releases to build with '--config=nogcp' * comment regarding tensorflow issue #31187 Co-authored-by: Andrew W Elble <aweits@skl-a-00.rc.rit.edu>
2020-03-27ppOpen-AT: New package (#15649)Toyohisa Kameyama1-0/+28
* ppOpen-AT: New package * use install instead of install-after. * use install_tree. * forget remove mkdir.
2020-03-27MpiP: adding variant to build shared libraries (#10410)Brian Homerding1-0/+10
2020-03-27dpdk: added new package at v20.02 (#15635)darmac1-0/+29
2020-03-27sshpass: added new package (#15704)darmac1-0/+29
2020-03-27cppgsl: added v2.1.0 (#15696)iarspider1-1/+2
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>