diff options
author | Christopher Christofi <77968333+ChristopherChristofi@users.noreply.github.com> | 2024-03-11 23:04:35 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-11 17:04:35 -0600 |
commit | f5e89df6f20fea0c29c1a98e986054c5af4f6d73 (patch) | |
tree | a2d62b7c9ff963d57e507f02151b86360fc664b5 | |
parent | ce75adada6cd3564d42d37bef19eb35dbf368e2a (diff) | |
download | spack-f5e89df6f20fea0c29c1a98e986054c5af4f6d73.tar.gz spack-f5e89df6f20fea0c29c1a98e986054c5af4f6d73.tar.bz2 spack-f5e89df6f20fea0c29c1a98e986054c5af4f6d73.tar.xz spack-f5e89df6f20fea0c29c1a98e986054c5af4f6d73.zip |
perl-parsetemplate: add new package (#41845)
* perl-parsetemplate: add new package
* perl-parsetemplate: update to latest copyright date and add license
-rw-r--r-- | var/spack/repos/builtin/packages/perl-parsetemplate/package.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/perl-parsetemplate/package.py b/var/spack/repos/builtin/packages/perl-parsetemplate/package.py new file mode 100644 index 0000000000..9084638ec0 --- /dev/null +++ b/var/spack/repos/builtin/packages/perl-parsetemplate/package.py @@ -0,0 +1,17 @@ +# Copyright 2013-2024 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.package import * + + +class PerlParsetemplate(PerlPackage): + """Parse::Template - Processor for templates containing Perl expressions.""" + + homepage = "https://metacpan.org/pod/Parse::Template" + url = "https://cpan.metacpan.org/authors/id/P/PS/PSCUST/ParseTemplate-3.08.tar.gz" + + license("Artistic-1.0-Perl OR GPL-1.0-or-later") + + version("3.08", sha256="3c7734f53999de8351a77cb09631d7a4a0482b6f54bca63d69d5a4eec8686d51") |