
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
24 lines
917 B
Python
24 lines
917 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 Spot(AutotoolsPackage):
|
|
"""Spot is a C++11 library for omega-automata manipulation and model
|
|
checking."""
|
|
homepage = "https://spot.lrde.epita.fr/"
|
|
url = "http://www.lrde.epita.fr/dload/spot/spot-1.99.3.tar.gz"
|
|
|
|
version('1.99.3', sha256='86964af559994af4451a8dca663a9e1db6e869ed60e747ab60ce72dddc31b61b')
|
|
version('1.2.6', sha256='360678c75f6741f697e8e56cdbc9937f104eb723a839c3629f0dc5dc6de11bfc')
|
|
|
|
variant('python', default=True, description='Enable python API')
|
|
|
|
depends_on("python@3.3:", when='@1.99.5: +python')
|
|
depends_on("python@3.2:", when='@1.99: +python')
|
|
depends_on("python@2:", when='+python')
|
|
depends_on('boost', when='@:1.2.6')
|