summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2019-12-02git: add .gitattributes file (#13947)Todd Gamblin1-0/+1
Add a line to .gitattributes so that `git grep -p` shows function names properly for `*.py` files. Without this, the class name is shown instead of the function for python files. This also causes diff output to use proper functions as hunk headers in `diff` output. Here's an example with `git grep -p`. Before: $ git grep -p spack_cc var/spack/repos/builtin/packages/athena var/spack/repos/builtin/packages/athena/package.py=class Athena(AutotoolsPackage): var/spack/repos/builtin/packages/athena/package.py: env.set('CC', spack_cc) var/spack/repos/builtin/packages/athena/package.py: env.set('LDR', spack_cc) After: $ git grep -p spack_cc var/spack/repos/builtin/packages/athena var/spack/repos/builtin/packages/athena/package.py= def setup_build_environment(self, env): var/spack/repos/builtin/packages/athena/package.py: env.set('CC', spack_cc) var/spack/repos/builtin/packages/athena/package.py: env.set('LDR', spack_cc) Here's an example with `diff`. Before: $ git show c5da94eb585d503248234ce18f24ffff4bd1f47c [...] @@ -28,6 +29,7 @@ print(u'\\xc3') # make it executable fs.set_executable(script_name) + filter_shebangs_in_directory('.', [script_name]) # read the unicode back in and see whether things work script = ex.Executable('./%s' % script_name) After: $ git show c5da94eb585d503248234ce18f24ffff4bd1f47c [...] @@ -28,6 +29,7 @@ def test_read_unicode(tmpdir): # make it executable fs.set_executable(script_name) + filter_shebangs_in_directory('.', [script_name]) # read the unicode back in and see whether things work script = ex.Executable('./%s' % script_name)
2019-12-01dealii: Added 'threads' variant that controls the TBB dependency (#13931)Alexander Knieps1-3/+10
* dealii: Added 'threads' variant that controls the DEAL_II_WITH_THREADS cmake option and the dependency on Intel TBB * Update var/spack/repos/builtin/packages/dealii/package.py Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com>
2019-12-01Package/sensei: PR request for SENSEI (in situ analysis tool) recipe (#12973)Sergei Shudler1-0/+134
* Created an initial recipe for Sensei * Cleanup syntax * Small fixes for the Sensei recipe * Cosmetic fixes to comply with PEP8 * More cosmetic fixes before PR * Added more documentation before PR * Fixed flake8 errors * Fixes following PR review * Fixes to pass Flake8 passes * Some changes following PR review and support for SENSEI 3 * Update var/spack/repos/builtin/packages/sensei/package.py Co-Authored-By: Axel Huebl <axel.huebl@plasma.ninja> * Fixed Flake8 errors
2019-11-30Add VTK version 8.2.0 (#13941)Benjamin Fovet1-0/+1
2019-11-30New python packages (#9974)jwallior5-0/+98
* New package: add py-jellyfish * New package: add py-us * New package: add py-xlwt * New package: add py-svgpathtools * New package: add py-svgwrite * Change checksums to sha256 * Fix Copyright year. * Add missing dependencies.
2019-11-30Add package opencascade (#13938)Benjamin Fovet1-0/+67
* Add new package : opencascade * Remove boilerplate comment * Fix flake8 errors * Explicitly disable 3rd parties
2019-11-30cbtf: add rpcsvc-proto and libtirpc dependency. (#13798)Toyohisa Kameyama1-0/+6
2019-11-30Mark py-argparse dependency everywhere with ^python@:2.6 (#13928)iarspider8-8/+8
* Mark py-argparse dependency everywhere with ^python@:2.6 * Update package.py * Update package.py
2019-11-30Armor test script against shebang character limit if appropriate. (#12447)Chris Green1-0/+2
2019-11-30add new package : lshw (#13933)darmac1-0/+28
* add new package : lshw * update lshw package * remove build methord
2019-11-29Update Geant4 version and recipe (#13840)iarspider1-1/+2
* Update Geant4 version and recipe According to the Geant4 developers, Geant4 supports Qt5 since at least 10.00. * Update to new API
2019-11-29Mass conversion of setup_(dependent_)?environment (#13924)Adam J. Stewart188-828/+816
* Mass conversion of setup_(dependent_)?environment * prefix -> self.prefix
2019-11-29intel-tbb: fix and update patches for latest versions (#13932)Mark W. Krentel4-48/+33
Commit 78724357 added versions 2019.5 to 2019.8 but failed to update the patches for these versions. 1. gcc_generic-pedantic patch -- include this up through 2019.5. This was fixed in the TBB source tree in 2019.6. 2. tbb_cmakeConfig patch -- this needs to be modified (different file) for 2019.5 and later. 3. tbb_gcc_rtm_key patch -- replace this with filter_file. This is simpler and eliminates the need to update the patch whenever the surrounding context changes.
2019-11-29add new package : pipework (#13934)darmac1-0/+21
2019-11-29add new package : qperf (#13935)darmac1-0/+28
2019-11-29Handle external perl (#13903)Peter Scheibel1-27/+8
* dont add perl bin directory to PATH when setting up env (this is already handled by spack core in a way that omits system dirs); also consolidate repeated logic between build/run env setup. * the bin/ dir of each dependency is already added to PATH in Spack core, so there is no need to do this in the Perl package
2019-11-28Loosen restriction on setuptools version of ↵iarspider1-1/+1
py-backports-shutil-get-terminal-size: the bug seems to be fixed at least in setuptools 41.0.0 (#13927)
2019-11-27BLD: enforce C++11 std for boost + xl_r (#13829)Tyler Reddy1-0/+6
* BLD: enforce C++11 std for boost + xl_r * the spack `cxxstd` variant is not sufficient to enforce `-std=c++11` usage in boost compile lines when `xl_r` compiler spec is in use; while it would be nice if this were fixed in a boost config file somewhere, for now this patch allows boost to build on POWER9 with an %xl_r compiler spec if the user specifies i.e.,: `spack install boost@1.70.0+mpi cxxstd=11 %xl_r@16.1.1.5` * Update var/spack/repos/builtin/packages/boost/package.py Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com>
2019-11-27Build R without recommended packages (#12015)Glenn Johnson1-0/+1
The documentation states that Spack builds R without the recommmened packages, with Spack handling the build of those packages to satisfy dependencies. From the docs: > Spack explicitly adds the --without-recommended-packages flag to > prevent the installation of these packages. Due to the way Spack > handles package activation (symlinking packages to the R installation > directory), pre-existing recommended packages will cause conflicts for > already-existing files. We could either not include these recommended > packages in Spack and require them to be installed through > --with-recommended-packages, or we could not install them with R and > let users choose the version of the package they want to install. We > chose the latter. However, this is not what Spack is actually doing. The `--without-recommended` configure option is not passed to R and therefore those packages are built. This prevents R extension activation from working as files in the recommended packages installed with R will block linking of file from the respective `r-` packages. This PR adds the `--without-recommended` flag to the configure options of the R package. This will then have the Spack R build match what is documented.
2019-11-27Replace git-based Bioconductor R packages (#12005)Justin S186-1326/+3320
* Replace git-based Bioconductor R packages The current collection of bioconductor packages tend to have scattered dependencies and missing versions. This commit replaces git-based packages with tool-generated Spack package recipes with correct dependencies and descriptions in place. * Fix some broken package names, add periods to title docstrings * r-clue: new package at 0.3-57 * r-genomeinfodbdata: add 1.2.1 * r-gofuncr: new package at 1.4.0 * r-pfam-db: add 3.8.2 * Add missed package r-genelendatabase * update r-goseq package * update r-glimma package * update r-rots package * r-org-hs-eg-db: add 3.8.2 * r-vgam: fix incorrect R version * r-rnaseqmap: new package at 2.42.0 * r-rhdf5lib: new package at 1.6.0 * r-scrime: new package at 1.3.5 * r-delayedmatrixstats: new package at 1.6.0 * r-hdf5array: new package at 1.12.1 * r-biocfilecache: new package at 1.8.0 * r-ctc: add new versions, dependencies * r-genemeta: new package at 1.56.0 * r-scrime: fix flake8 * r-ensembldb: add missing dependencies * Added missing dependencies to packages with certain DESCRIPTIONS * r-mapplots: new package at 1.5.1 * r-beachmat: new package at 2.0.0 * r-beeswarm: new package at 0.2.3 * r-biocneighbors: new package at 1.2.0 * r-biocsingular: new package at 1.0.0 * r-ecp: new package at 3.1.1 * r-enrichplot: new package at 1.4.0 * r-europepmc: new package at 0.3 * r-ggbeeswarm: new package at 0.6.0 * r-ggplotify: new package at 0.0.3 * r-ggraph: new package at 1.0.2 * r-gridgraphics: new package at 0.4-1 * r-rcppannoy: new package at 0.0.12 * r-rcpphnsw: new package at 0.1.0 * r-rsvd: new package at 1.0.1 * r-scater: new package at 1.12.2 * r-singlecellexperiment: new package at 1.6.0 * r-tximport: new package at 1.12.3 * r-upsetr: new package at 1.4.0 * r-vioplot: new package at 0.3.2 * r-readr: add 1.3.1 * r-matrixstats: add 0.54.0 * r-ecp: flake8 fix * r-biocmanager: new package at 1.30.4 * update bioconductor packages requiring BiocManager, new versions * r-lambda-r: add 1.2.3 * r-vegan: add 2.5-5 * r-cner, r-rcppannoy, r-reportingtools, r-rsvd: add missing newlines at EOF * r-chemometrics: flake8 fixes * r-vgam: flake8 fixes * CRAN packages: use cloud.r-project.org * Use DESCRIPTION for R version constraints over bioconductor releases * Update missed packages ABAData, acde, affydata * Update remaining missed packages * bio: Drop 'when' clause from first checksummed versions * bio: improve package description generation logic * r-genomeinfodbdata: use explicit sha256 sums * r-pfam-db: update dependencies, add 3.10.0 * update r-org-hs-eg-db * r-dirichletmultinomial: re-add gsl * r-polyclip: new package at 1.10-0 * r-farver: new package at 1.1.0 * r-tweenr: new package at 1.0.1 * r-ggforce: new package at 0.3.1 * r-ggforce: remove redundant dep * r-ggraph: add missing deps * r-rcpphnsw: remove redundant depends_on * r-reportingtools: re-add r-r-utils dep * r-rhdf5: add gmake dep * r-rhtslib: add system dependencies * r-rsamtools: add gmake dep * r-farver: remove redundant dep * r-tweenr: remove redundant dep * r-variantannotation: add gmake dep * r-rgraphviz: add graphviz dep * r-vsn: correct r-hexbin constraint * r-scater: fix obsolete deps * r-variantannotation: fix gmake dep type * r-scater: tighten R version constraints * r-rsamtools: fix gmake dep type * r-rhtslib: fix gmake dep type * r-rhtslib: use xz over lzma * r-rhdf5: fix gmake dep type * r-farver: replace with newer recipe for 2.0.1 * r-mzr: remove old dependency * r-reportingtools: remove builtin dependency * r-mzr: add gmake dep * r-rhtslib: make system libraries link deps * r-genomeinfodbdata: fix R version constraints * r-geoquery: remove old deps from new versions * r-genomicfeatures: tighten r-rmysql dep * r-ensembldb: tighten r-annotationhub dep * r-complexheatmap: fix r-dendextend dep * r-cner: fix utils dep name * r-clusterprofiler: fix r-gosemsim version req * r-biostrings: fix r-iranges version reqs * r-rhdf5lib: add gmake dep * r-oligoclasses: fix r-biocinstaller dep range * r-organismdbi: fix r-biocinstaller dep range * r-hdf5array: add gmake dep * r-gtrellis: tighten r-circlize version req * r-gostats: fix r-graph version req * r-glimma: fix old dependency ranges * r-biostrings: syntax fix * r-organismdbi: syntax fix * r-dose: fix r-igraph dep * r-dose: fix r-scales, r-rvcheck deps * r-affy: fix r-biocinstaller dep * r-ampliqueso: fix homepage * r-aneufinder: fix r-biocgenerics dep * r-beachmat: fix changed deps * r-biocneighbors: fix old R constraint * r-biocmanager: rewrite recipe for 1.30.10 * Update var/spack/repos/builtin/packages/r-biocinstaller/package.py Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com> * Update var/spack/repos/builtin/packages/r-oligoclasses/package.py Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com>
2019-11-27Add version 2.1.0 to 'aspect' package (#13830)Rene Gassmoeller1-3/+4
2019-11-27Update cartopy version and fix recipe (#13898)iarspider1-7/+19
* Update cartopy version and fix recipe Cartopy 0.17.0 works fine with proj 6 * Update cartopy version and fix recipe Cartopy 0.17.0 works fine with proj 6 * Set ACCEPT_USE_OF_DEPRECATED_PROJ_API_H flag when building extension * Add variants to py-cartopy recipe as suggested * Fix proj dependency * Split dependency * Fix PEP-8; remove extra dependency
2019-11-27QMCPACK Update Nov2019 (#13832)Nichols A. Romero1-31/+34
* Bump up QE version number to 6.4.1. * Fix QMCPACK conflicts. * HDF5 dependencies where over specified which could cause unnecessary installs of HDF5. * Update QMCPACK testing option. * Remove support for serial QE 6.4.1 converter. Add support for parallel QE 6.4.1. converter with serial HDF5. * Switch to setup_run_environment. * Fix setup_run_environment call arguements. * Fix typo. * switch run_env to env
2019-11-27mpich: Add ucx dependency (#13921)Ken Raffenetti1-2/+7
2019-11-27cuda: add polymorphic package versions (#13912)Federico Ficarelli1-24/+41
2019-11-27scm-git-archive python package (#13915)Marc Mengel1-0/+24
* scm-git-archive python package * flake8 * per comments
2019-11-27New package: py-cheroot (#13583)Marc Mengel1-0/+25
* package py-cheroot * package py-cheroot * autopep8, docutils cleanup * Update var/spack/repos/builtin/packages/py-cheroot/package.py Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com> * missing deps * flake8 * license bits * Update var/spack/repos/builtin/packages/py-cheroot/package.py Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com> * Update var/spack/repos/builtin/packages/py-cheroot/package.py Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com> * Update var/spack/repos/builtin/packages/py-cheroot/package.py Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com> * Update var/spack/repos/builtin/packages/py-cheroot/package.py Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com> * python dep * flake8
2019-11-27openmpi: add 3.1.5 and 3.0.5 (#13918)Howard Pritchard1-0/+2
Note to spack people: these are expected to be end of line releases for both the 3.1.5 an 3.0.5 releases Signed-off-by: Howard Pritchard <howardp@lanl.gov>
2019-11-27json-fortran: get unit tests working (#13919)Adam J. Stewart1-0/+8
2019-11-27Fix py-pyarrow recipe (#13914)iarspider1-1/+1
Fix name of one dependency
2019-11-27accfft: fix narrowing error. (#13909)t-karatsu2-0/+14
2019-11-27Bump intel compiler suite to 2019u5. (#13835)健美猞猁4-0/+7
* Bump intel compiler suite to 2019u5. * Remove a duplicate line.
2019-11-27Fix py-line-profiler incompatible decorators (#13911)Oliver Breitwieser1-1/+4
`@run_after` and `@when` are incompatible, issue #12736.
2019-11-27ACTS: added version v0.11.1 (#13910)Hadrien G1-0/+1
2019-11-26Add version check when building intel-tbb with clang (#13893)Tim Haines1-0/+10
* Add version check when building with clang * Update for flake8 formatting
2019-11-26votca: help concretizer (#13906)Christoph Junghans3-6/+5
* votca: help concretizer * flake8
2019-11-26add new package : sysstat (#13907)darmac1-0/+21
2019-11-26use semicolons instead of newlines in module/python command (#13904)Greg Becker1-1/+1
2019-11-26IntelPackage: setup_env -> setup_build_env (#13888)Adam J. Stewart3-49/+26
2019-11-26buildcache list: do not display duplicate specs (#13758)Massimiliano Culpo2-6/+25
fixes #13757
2019-11-26metabat: add versions 2.14 and 2.13 (#13369)Eric Martin1-2/+4
* metabat: add versions 2.14 and 2.13 * update build environment * Update var/spack/repos/builtin/packages/metabat/package.py Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com> * Update var/spack/repos/builtin/packages/metabat/package.py Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com>
2019-11-26MPark.Variant: Patch NVCC C++14 Build (#13901)Axel Huebl2-0/+30
Fix an issue with NVCC when building with C++14.
2019-11-26update py-nbconvert (#13422)Andreas Baumbach1-5/+20
* update py-nbconvert * add setuptools dependency, like all the other jupyter packages it seems to be using setuptools for some commands all the time but requires it for the newest version * added dependencies, not necessarily only needed for the latest one * depends on new packages (defusedxml, pandocfilters, testpath) * should also be moved to pypi sources? * '@5:@5:' is a valid spec -> intended? * make dependencies optional * Update dependencies and add description * relax py-mistune dependency restriction * Update var/spack/repos/builtin/packages/py-nbconvert/package.py Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com>
2019-11-26new package: py-arrow (#13575)Andreas Baumbach1-0/+28
* new package: py-arrow * actually use dependencies from 0.14.7 not from current HEAD * drop dependencies that dont appear in the source * readd sphinx as doc dependency * update dependencies * drop doc-only dependencies
2019-11-26Update Mathematica recipe (#13679)Roman Briskine1-1/+15
* Add licensing; replace url with url_for_version; create .spack dir during installation; symlink wolframscript; generate spec.yaml if missing * Reverted url change, .spack directory creation, and spec.yaml generation * Fix formatting issues
2019-11-26ocaml: fix url (#13749)noguchi-k1-1/+1
2019-11-26Days since OpenMPI+UCX trashed my cluster: 0 (#13818)sknigh2-0/+255
2019-11-26silence vtkm logging until it does not report false positives to std::cerr ↵Matt Larsen1-1/+1
(#13845)
2019-11-26add new package : busybox@1.31.1 (#13871)darmac1-0/+28
* add new package : busybox@1.31.1 * 1. add some other version for busybox 2. change Busybox class to MakefilePackage 3. move make('defconfig') and make() to build() function 4. change install_tree('', prefix) to install_tree('.', prefix)
2019-11-26add new package : blktrace (#13872)darmac1-0/+31
* add new package : blktrace * modify install_tree('', prefix) to install_tree('.', prefix)