
Use full length commit sha instead of short prefixes, to improve reproducibility (future clashes) and guard against compromised repos and man in the middle attacks. Abbreviated commit shas are expanded to full length, to guard against future clashes on short hash. It also guards against compromised repos and man in the middle attacks, where attackers can easily fabricate a malicious commit with a shasum prefix collision. Versions with just tags now also get a commit sha, which can later be used to check for retagged commits.
23 lines
865 B
Python
23 lines
865 B
Python
# Copyright 2013-2023 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.package import *
|
|
|
|
|
|
class Saws(AutotoolsPackage):
|
|
"""The Scientific Application Web server (SAWs) turns any C or C++
|
|
scientific or engineering application code into a webserver,
|
|
allowing one to examine (and even modify) the state of the
|
|
simulation with any browser from anywhere."""
|
|
|
|
homepage = "https://bitbucket.org/saws/saws/wiki/Home"
|
|
git = "https://bitbucket.org/saws/saws.git"
|
|
|
|
version("develop", tag="master")
|
|
version("0.1.1", tag="v0.1.1", commit="c483e262b22bdf83ab026d20c35f0e09465d768d")
|
|
version("0.1.0", tag="v0.1.0", commit="312ccc1698cf6c489c0d1eff6db46f54bd9031b7")
|
|
|
|
depends_on("python", type="build")
|