
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
17 lines
573 B
Python
17 lines
573 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 Freexl(AutotoolsPackage):
|
|
"""FreeXL is an open source library to extract valid data from within
|
|
an Excel (.xls) spreadsheet."""
|
|
|
|
homepage = "http://www.gaia-gis.it"
|
|
url = "http://www.gaia-gis.it/gaia-sins/freexl-1.0.5.tar.gz"
|
|
|
|
version('1.0.5', sha256='3dc9b150d218b0e280a3d6a41d93c1e45f4d7155829d75f1e5bf3e0b0de6750d')
|