
We'd like to use a consistent checksum scheme everywhere so that we can: a) incorporate archive checksums into our specs and have a consistent hashing algorithm across all specs. b) index mirrors with a consistent type of checksum, and not one that is dependent on how spack packages are written. - [x] convert existing md5, sha224, sha512, sha1 checksums to sha256
23 lines
947 B
Python
23 lines
947 B
Python
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack import *
|
|
|
|
|
|
class Jellyfish(AutotoolsPackage):
|
|
"""JELLYFISH is a tool for fast, memory-efficient counting of k-mers in
|
|
DNA."""
|
|
|
|
homepage = "http://www.cbcb.umd.edu/software/jellyfish/"
|
|
url = "https://github.com/gmarcais/Jellyfish/releases/download/v2.2.7/jellyfish-2.2.7.tar.gz"
|
|
list_url = "http://www.cbcb.umd.edu/software/jellyfish/"
|
|
|
|
version('2.2.7', sha256='d80420b4924aa0119353a5b704f923863abc802e94efeb531593147c13e631a8')
|
|
version('1.1.11', sha256='496645d96b08ba35db1f856d857a159798c73cbc1eccb852ef1b253d1678c8e2',
|
|
url='http://www.cbcb.umd.edu/software/jellyfish/jellyfish-1.1.11.tar.gz')
|
|
|
|
depends_on('perl', type=('build', 'run'))
|
|
depends_on('python', type=('build', 'run'))
|