summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Kniep <ChristianKniep@users.noreply.github.com>2022-11-16 20:42:25 -0600
committerGitHub <noreply@github.com>2022-11-17 03:42:25 +0100
commit7637efb363f6efb30221056a7d9a80af3ed30ff5 (patch)
treecbf9965c219f105c73c2c458793da22b366463e6
parentb31f1b03536a9299ac70a56f91c3f8183d0afcb6 (diff)
downloadspack-7637efb363f6efb30221056a7d9a80af3ed30ff5.tar.gz
spack-7637efb363f6efb30221056a7d9a80af3ed30ff5.tar.bz2
spack-7637efb363f6efb30221056a7d9a80af3ed30ff5.tar.xz
spack-7637efb363f6efb30221056a7d9a80af3ed30ff5.zip
blast-plus: update to 2.13.0 and add cpio as build dependency (#33187)
-rw-r--r--var/spack/repos/builtin/packages/blast-plus/package.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/blast-plus/package.py b/var/spack/repos/builtin/packages/blast-plus/package.py
index 9faef127ed..4a78e8109d 100644
--- a/var/spack/repos/builtin/packages/blast-plus/package.py
+++ b/var/spack/repos/builtin/packages/blast-plus/package.py
@@ -10,10 +10,11 @@ class BlastPlus(AutotoolsPackage):
"""Basic Local Alignment Search Tool."""
homepage = "https://blast.ncbi.nlm.nih.gov/"
- url = "https://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/2.12.0/ncbi-blast-2.12.0+-src.tar.gz"
+ url = "https://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/2.13.0/ncbi-blast-2.13.0+-src.tar.gz"
maintainers = ["weijianwen"]
+ version("2.13.0", sha256="89553714d133daf28c477f83d333794b3c62e4148408c072a1b4620e5ec4feb2")
version("2.12.0", sha256="fda3c9c9d488cad6c1880a98a236d842bcf3610e3e702af61f7a48cf0a714b88")
version("2.11.0", sha256="d88e1858ae7ce553545a795a2120e657a799a6d334f2a07ef0330cc3e74e1954")
version("2.9.0", sha256="a390cc2d7a09422759fc178db84de9def822cbe485916bbb2ec0d215dacdc257")
@@ -45,6 +46,8 @@ class BlastPlus(AutotoolsPackage):
# No...
# depends_on :mysql => :optional
+ depends_on("cpio", type="build")
+
variant("static", default=False, description="Build with static linkage")
variant("jpeg", default=True, description="Build with jpeg support")
variant("png", default=True, description="Build with png support")