diff options
author | Arne Becker <101113822+EbiArnie@users.noreply.github.com> | 2023-12-14 20:19:06 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-14 12:19:06 -0800 |
commit | 1e5325eea07a4ff9d4084aa2ee1a79380db2cc57 (patch) | |
tree | ec7c13aa7ce15c53955c965799fb5d7a29da0c4c /var | |
parent | 0995a29c5c40c35a3b851bf81a7d85e5ddceeee2 (diff) | |
download | spack-1e5325eea07a4ff9d4084aa2ee1a79380db2cc57.tar.gz spack-1e5325eea07a4ff9d4084aa2ee1a79380db2cc57.tar.bz2 spack-1e5325eea07a4ff9d4084aa2ee1a79380db2cc57.tar.xz spack-1e5325eea07a4ff9d4084aa2ee1a79380db2cc57.zip |
perl-time-clock: New package (#41678)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/perl-time-clock/package.py | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/perl-time-clock/package.py b/var/spack/repos/builtin/packages/perl-time-clock/package.py new file mode 100644 index 0000000000..b19f0011b0 --- /dev/null +++ b/var/spack/repos/builtin/packages/perl-time-clock/package.py @@ -0,0 +1,28 @@ +# 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 PerlTimeClock(PerlPackage): + """Twenty-four hour clock object with nanosecond precision.""" + + homepage = "https://metacpan.org/pod/Time::Clock" + url = "https://cpan.metacpan.org/authors/id/J/JS/JSIRACUSA/Time-Clock-1.03.tar.gz" + + maintainers("EbiArnie") + + version("1.03", sha256="35e8a8bbfcdb35d86dd4852a9cd32cfb455a9b42e22669186e920c8aca017aef") + + depends_on("perl@5.6.0:", type=("build", "link", "run", "test")) + + def test_use(self): + """Test 'use module'""" + options = ["-we", 'use strict; use Time::Clock; print("OK\n")'] + + perl = self.spec["perl"].command + out = perl(*options, output=str.split, error=str.split) + assert "OK" in out |