
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
40 lines
1.4 KiB
Python
40 lines
1.4 KiB
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 TclTclxml(AutotoolsPackage):
|
|
"""TclXML is an API for parsing XML documents using the Tcl scripting
|
|
language. It is also a package including a DOM implementation (TclDOM) and
|
|
XSL Transformations (TclXSLT). These allow Tcl scripts to read, manipulate
|
|
and write XML documents."""
|
|
|
|
homepage = "http://tclxml.sourceforge.net/tclxml.html"
|
|
url = "https://sourceforge.net/projects/tclxml/files/TclXML/3.2/tclxml-3.2.tar.gz"
|
|
list_url = "https://sourceforge.net/projects/tclxml/files/TclXML/"
|
|
list_depth = 1
|
|
|
|
version('3.2', sha256='f4116b6680b249ce74b856a121762361ca09e6256f0c8ad578d1c661b822cb39')
|
|
version('3.1', sha256='9b017f29c7a06fa1a57d1658bd1d3867297c26013604bdcc4d7b0ca2333552c9')
|
|
|
|
extends('tcl')
|
|
|
|
depends_on('tcl-tcllib')
|
|
depends_on('libxml2')
|
|
depends_on('libxslt')
|
|
|
|
def configure_args(self):
|
|
return [
|
|
'--exec-prefix={0}'.format(
|
|
self.prefix),
|
|
'--with-tcl={0}/lib'.format(
|
|
self.spec['tcl'].prefix),
|
|
'--with-xml2-config={0}/bin/xml2-config'.format(
|
|
self.spec['libxml2'].prefix),
|
|
'--with-xslt-config={0}/bin/xslt-config'.format(
|
|
self.spec['libxslt'].prefix),
|
|
]
|