summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Kuhn <michael.kuhn@ovgu.de>2021-02-11 16:41:16 +0100
committerGitHub <noreply@github.com>2021-02-11 16:41:16 +0100
commit3268cf4b96c75fa6b60c7958045e4c761d3675cc (patch)
treebf817d045e6ffa754ce8a0a3b96408e2722873ac
parentef5b15be40c553e98dfcb1a5cc8ab4c717b6feab (diff)
downloadspack-3268cf4b96c75fa6b60c7958045e4c761d3675cc.tar.gz
spack-3268cf4b96c75fa6b60c7958045e4c761d3675cc.tar.bz2
spack-3268cf4b96c75fa6b60c7958045e4c761d3675cc.tar.xz
spack-3268cf4b96c75fa6b60c7958045e4c761d3675cc.zip
libfyaml: new package (#21604)
-rw-r--r--var/spack/repos/builtin/packages/libfyaml/package.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/libfyaml/package.py b/var/spack/repos/builtin/packages/libfyaml/package.py
new file mode 100644
index 0000000000..f2ddae06a7
--- /dev/null
+++ b/var/spack/repos/builtin/packages/libfyaml/package.py
@@ -0,0 +1,18 @@
+# Copyright 2013-2021 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 Libfyaml(AutotoolsPackage):
+ """Fully feature complete YAML parser and emitter, supporting the latest
+ YAML spec and passing the full YAML testsuite."""
+
+ homepage = "https://github.com/pantoniou/libfyaml"
+ url = "https://github.com/pantoniou/libfyaml/releases/download/v0.5.7/libfyaml-0.5.7.tar.gz"
+
+ version('0.5.7', sha256='3221f31bb3feba97e544a82d0d5e4711ff0e4101cca63923dc5a1a001c187590')
+
+ depends_on('m4', type='build')