diff options
author | Levi Baber <baberlevi@gmail.com> | 2019-02-06 08:47:54 -0600 |
---|---|---|
committer | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2019-02-06 15:47:54 +0100 |
commit | 881ce3a5c2fd518a4294b1f643cfc4cbf0495ea2 (patch) | |
tree | 6a5edda14ebf801dd2a6e788f8e6465639e07dad /var | |
parent | 1be258a587d0bed32de3df4312f6d8d0a9848f06 (diff) | |
download | spack-881ce3a5c2fd518a4294b1f643cfc4cbf0495ea2.tar.gz spack-881ce3a5c2fd518a4294b1f643cfc4cbf0495ea2.tar.bz2 spack-881ce3a5c2fd518a4294b1f643cfc4cbf0495ea2.tar.xz spack-881ce3a5c2fd518a4294b1f643cfc4cbf0495ea2.zip |
perl-yaml: new package (#10514)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/perl-yaml/package.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/perl-yaml/package.py b/var/spack/repos/builtin/packages/perl-yaml/package.py new file mode 100644 index 0000000000..fdf1a2d05e --- /dev/null +++ b/var/spack/repos/builtin/packages/perl-yaml/package.py @@ -0,0 +1,17 @@ +# 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 PerlYaml(PerlPackage): + """This module has been released to CPAN as YAML::Old, and soon YAML.pm + will be changed to just be a frontend interface module for all the + various Perl YAML implementation modules, including YAML::Old""" + + homepage = "https://metacpan.org/pod/YAML" + url = "https://cpan.metacpan.org/authors/id/T/TI/TINITA/YAML-1.27.tar.gz" + + version('1.27', sha256='c992a1e820de0721b62b22521de92cdbf49edc306ab804c485b4b1ec25f682f9') |