perl-catalyst-plugin-cache: new package (#42964)

Adds Catalyst::Plugin::Cache
This commit is contained in:
Arne Becker 2024-03-03 06:34:26 +00:00 committed by GitHub
parent fcb2f7d3aa
commit 3bd911377e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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