infernal: add version 1.1.5 (#47028)

This commit is contained in:
Luke Diorio-Toth 2024-10-21 18:32:44 -05:00 committed by GitHub
parent d9e8c5f13e
commit 037196c2bd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -15,6 +15,7 @@ class Infernal(AutotoolsPackage):
homepage = "http://eddylab.org/infernal/"
url = "http://eddylab.org/infernal/infernal-1.1.2.tar.gz"
version("1.1.5", sha256="ad4ddae02f924ca7c85bc8c4a79c9f875af8df96aeb726702fa985cbe752497f")
version("1.1.4", sha256="f9493c7dee9fbf25f6405706818883d24b9f5e455121a0662c96c8f0307f95fc")
version("1.1.3", sha256="3b98a6a3a0e7b01aa077a0caf1e958223c4d8f80a69a4eb602ca59a3475da85e")
version("1.1.2", sha256="ac8c24f484205cfb7124c38d6dc638a28f2b9035b9433efec5dc753c7e84226b")
@ -25,8 +26,13 @@ class Infernal(AutotoolsPackage):
depends_on("mpi", when="+mpi")
# v1.1.4 and below do not build on aarch64
# https://github.com/EddyRivasLab/infernal/issues/30
conflicts("target=aarch64:", msg="infernal is only available for x86_64 and PowerPC")
conflicts(
"target=aarch64:",
when="@:1.1.4",
msg="infernal v1.1.4 and below are only available for x86_64 and PowerPC",
)
def configure_args(self):
args = []