summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/perl-test-nowarnings/package.py
blob: 2d23f499fd3610941a3229c72a439531bf478869 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
# Copyright 2023 EMBL-European Bioinformatics Institute
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack.package import *


class PerlTestNowarnings(PerlPackage):
    """Make sure you didn't emit any warnings while testing"""

    homepage = "https://metacpan.org/pod/Test::NoWarnings"
    url = "https://cpan.metacpan.org/authors/id/H/HA/HAARG/Test-NoWarnings-1.06.tar.gz"

    maintainers("EbiArnie")

    license("LGPL-2.1-only")

    version("1.06", sha256="c2dc51143b7eb63231210e27df20d2c8393772e0a333547ec8b7a205ed62f737")

    depends_on("perl@5.6.0:", type=("build", "link", "run", "test"))