summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorAndrew W Elble <aweits@rit.edu>2021-04-06 02:11:48 -0400
committerGitHub <noreply@github.com>2021-04-06 08:11:48 +0200
commitb924440f799584a13b5e8c95a83c7d6f1049616c (patch)
treeb3a61ac3b30f09e58bc2da6bfcf679e6373ed31e /var
parent3336fff229866c4182c810a7ba0b7500217ad6dd (diff)
downloadspack-b924440f799584a13b5e8c95a83c7d6f1049616c.tar.gz
spack-b924440f799584a13b5e8c95a83c7d6f1049616c.tar.bz2
spack-b924440f799584a13b5e8c95a83c7d6f1049616c.tar.xz
spack-b924440f799584a13b5e8c95a83c7d6f1049616c.zip
exabayes: add v1.5.1 (#22789)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/exabayes/package.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/exabayes/package.py b/var/spack/repos/builtin/packages/exabayes/package.py
index 3c39766eef..8440b7c450 100644
--- a/var/spack/repos/builtin/packages/exabayes/package.py
+++ b/var/spack/repos/builtin/packages/exabayes/package.py
@@ -3,8 +3,6 @@
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
-from spack import *
-
class Exabayes(AutotoolsPackage):
"""ExaBayes is a software package for Bayesian tree inference. It is
@@ -13,6 +11,7 @@ class Exabayes(AutotoolsPackage):
homepage = "https://sco.h-its.org/exelixis/web/software/exabayes/"
url = "https://sco.h-its.org/exelixis/resource/download/software/exabayes-1.5.tar.gz"
+ version('1.5.1', sha256='f75ce8d5cee4d241cadacd0f5f5612d783b9e9babff2a99c7e0c3819a94bbca9')
version('1.5', sha256='e401f1b4645e67e8879d296807131d0ab79bba81a1cd5afea14d7c3838b095a2')
variant('mpi', default=True, description='Enable MPI parallel support')
@@ -22,7 +21,7 @@ class Exabayes(AutotoolsPackage):
# ExaBayes manual states the program succesfully compiles with GCC, version
# 4.6 or greater, and Clang, version 3.2 or greater. The build fails when
# GCC 7.1.0 is used.
- conflicts('%gcc@:4.5.4, 7.1.0:')
+ conflicts('%gcc@:4.5.4, 7.1.0:', when='@:1.5.0')
conflicts('%clang@:3.1')
conflicts('^intel-mpi', when='+mpi')
conflicts('^intel-parallel-studio+mpi', when='+mpi')