summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorbecker33 <becker33@llnl.gov>2016-08-04 09:00:36 -0700
committerGitHub <noreply@github.com>2016-08-04 09:00:36 -0700
commit1ac1cc3d2c140fc59cac818d24dbc384eebea9c4 (patch)
tree433897a1c4df31bee40f1b7f14e3ce74b5d8e765 /var
parent3c6f6fc8110c30e9d81da1a828df029ad665357f (diff)
parente69423a154b54c5e2605442d97ab9454028e60d2 (diff)
downloadspack-1ac1cc3d2c140fc59cac818d24dbc384eebea9c4.tar.gz
spack-1ac1cc3d2c140fc59cac818d24dbc384eebea9c4.tar.bz2
spack-1ac1cc3d2c140fc59cac818d24dbc384eebea9c4.tar.xz
spack-1ac1cc3d2c140fc59cac818d24dbc384eebea9c4.zip
Merge pull request #1437 from jgalarowicz/update-xercesc
Update the version of xerces-c, where the developers remove the old v…
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/xerces-c/package.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/xerces-c/package.py b/var/spack/repos/builtin/packages/xerces-c/package.py
index 2efccc3c08..d0c2d3d497 100644
--- a/var/spack/repos/builtin/packages/xerces-c/package.py
+++ b/var/spack/repos/builtin/packages/xerces-c/package.py
@@ -24,16 +24,18 @@
##############################################################################
from spack import *
+
class XercesC(Package):
""" Xerces-C++ is a validating XML parser written in a portable subset of C++.
Xerces-C++ makes it easy to give your application the ability to read and
write XML data. A shared library is provided for parsing, generating,
- manipulating, and validating XML documents using the DOM, SAX, and SAX2 APIs.
+ manipulating, and validating XML documents using the DOM, SAX, and SAX2
+ APIs.
"""
homepage = "https://xerces.apache.org/xerces-c"
- url = "https://www.apache.org/dist/xerces/c/3/sources/xerces-c-3.1.3.tar.bz2"
- version('3.1.3', '5e333b55cb43e6b025ddf0e5d0f0fb0d')
+ url = "https://www.apache.org/dist/xerces/c/3/sources/xerces-c-3.1.4.tar.bz2"
+ version('3.1.4', 'd04ae9d8b2dee2157c6db95fa908abfd')
def install(self, spec, prefix):
configure("--prefix=%s" % prefix,
@@ -41,4 +43,3 @@ class XercesC(Package):
make("clean")
make()
make("install")
-