summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/perl-datetime-format-strptime/package.py
blob: 9cef02cae8f6fadc8dfaf449005a94d2d08a48b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Copyright 2013-2024 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 PerlDatetimeFormatStrptime(PerlPackage):
    """Parse and format strp and strf time patterns"""

    homepage = "https://metacpan.org/pod/DateTime::Format::Strptime"
    url = "https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/DateTime-Format-Strptime-1.79.tar.gz"

    maintainers("EbiArnie")

    license("Artistic-2.0")

    version("1.79", sha256="701e46802c86ed4d88695c1a6dacbbe90b3390beeb794f387e7c792300037579")

    depends_on("perl-datetime@1.00:", type=("build", "run", "test"))
    depends_on("perl-datetime-locale@1.30:", type=("build", "run", "test"))
    depends_on("perl-datetime-timezone@2.09:", type=("build", "run", "test"))
    depends_on("perl-params-validationcompiler", type=("build", "run", "test"))
    depends_on("perl-specio@0.33:", type=("build", "run", "test"))
    depends_on("perl-test-fatal", type=("build", "test"))
    depends_on("perl-test-warnings", type=("build", "test"))
    depends_on("perl-try-tiny", type=("build", "run", "test"))

    def test_use(self):
        """Test 'use module'"""
        options = ["-we", 'use strict; use DateTime::Format::Strptime; print("OK\n")']

        perl = self.spec["perl"].command
        out = perl(*options, output=str.split, error=str.split)
        assert "OK" in out