diff options
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/perl-catalyst-plugin-cache/package.py | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/perl-catalyst-plugin-cache/package.py b/var/spack/repos/builtin/packages/perl-catalyst-plugin-cache/package.py new file mode 100644 index 0000000000..2786963aa1 --- /dev/null +++ b/var/spack/repos/builtin/packages/perl-catalyst-plugin-cache/package.py @@ -0,0 +1,34 @@ +# 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 PerlCatalystPluginCache(PerlPackage): + """Flexible caching support for Catalyst.""" + + homepage = "https://metacpan.org/pod/Catalyst::Plugin::Cache" + url = "https://cpan.metacpan.org/authors/id/B/BO/BOBTFISH/Catalyst-Plugin-Cache-0.12.tar.gz" + + maintainers("EbiArnie") + + license("Artistic-1.0-Perl OR GPL-1.0-or-later") + + version("0.12", sha256="295fed449c9324b06578fd468e3391e04fbf64ad24376a004408d1bc6f5443e0") + + depends_on("perl-catalyst-runtime", type=("build", "run", "test")) + depends_on("perl-mro-compat", type=("build", "run", "test")) + depends_on("perl-task-weaken", type=("build", "run", "test")) + depends_on("perl-test-deep", type=("build", "link")) + depends_on("perl-test-exception", type=("build", "link")) + depends_on("perl-class-accessor", type=("build", "test")) + + def test_use(self): + """Test 'use module'""" + options = ["-we", 'use strict; use Catalyst::Plugin::Cache; print("OK\n")'] + + perl = self.spec["perl"].command + out = perl(*options, output=str.split, error=str.split) + assert "OK" in out |