perl-string-numeric: new package (#43024)

Adds String::Numeric
This commit is contained in:
Arne Becker 2024-03-05 19:34:03 +00:00 committed by GitHub
parent cc460894fd
commit f061dcda74
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,30 @@
# 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 PerlStringNumeric(PerlPackage):
"""Determine whether a string represents a numeric value"""
homepage = "https://metacpan.org/pod/String::Numeric"
url = "https://cpan.metacpan.org/authors/id/C/CH/CHANSEN/String-Numeric-0.9.tar.gz"
maintainers("EbiArnie")
license("Artistic-1.0-Perl OR GPL-1.0-or-later")
version("0.9", sha256="b992b6611a070e8cd887bc1c7409f22443c115e44245a5c67fb43535b5e0cfdb")
depends_on("perl@5.6.0:", type=("build", "link", "run", "test"))
depends_on("perl-test-exception", type=("build", "link"))
def test_use(self):
"""Test 'use module'"""
options = ["-we", 'use strict; use String::Numeric; print("OK\n")']
perl = self.spec["perl"].command
out = perl(*options, output=str.split, error=str.split)
assert "OK" in out