
* Add new version of ccache; update URL * Update var/spack/repos/builtin/packages/ccache/package.py Co-Authored-By: Adam J. Stewart <ajstewart426@gmail.com> Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
28 lines
1.3 KiB
Python
28 lines
1.3 KiB
Python
# Copyright 2013-2020 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 Ccache(AutotoolsPackage):
|
|
"""ccache is a compiler cache. It speeds up recompilation by caching
|
|
previous compilations and detecting when the same compilation is being done
|
|
again."""
|
|
|
|
homepage = "https://ccache.samba.org/"
|
|
url = "https://github.com/ccache/ccache/releases/download/v3.7.1/ccache-3.7.1.tar.gz"
|
|
|
|
version('3.7.1', sha256='e562fcdbe766406b6fe4bf97ce5c001d2be8a17465f33bcddefc9499bbb057d8')
|
|
version('3.3.4', sha256='1348b54e7c35dd2f8d17923389e03c546e599cfbde6459d2f31cf6f1521ec538')
|
|
version('3.3.3', sha256='87a399a2267cfac3f36411fbc12ff8959f408cffd050ad15fe423df88e977e8f')
|
|
version('3.3.2', sha256='bf4a150dea611a206a933e122bd545dd6c5111d319505e0e30fef75f88651847')
|
|
version('3.3.1', sha256='4101f9937cd6e8f50d0a5882f7e9a7312ba42c01ff41e4f359c94ae2c9b87879')
|
|
version('3.3', sha256='b220fce435fe3d86b8b90097e986a17f6c1f971e0841283dd816adb238c5fd6a')
|
|
version('3.2.9', sha256='1e13961b83a3d215c4013469c149414a79312a22d3c7bf9f946abac9ee33e63f')
|
|
|
|
depends_on('gperf')
|
|
depends_on('libxslt')
|
|
depends_on('zlib')
|