perl-convert-nls-date-format: New package (#41613)
This commit is contained in:
parent
170c05bebb
commit
a0a2cd6a1a
@ -0,0 +1,29 @@
|
||||
# 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 PerlConvertNlsDateFormat(PerlPackage):
|
||||
"""Convert Oracle NLS_DATE_FORMAT <-> strftime Format Strings"""
|
||||
|
||||
homepage = "https://metacpan.org/pod/Convert::NLS_DATE_FORMAT"
|
||||
url = "https://cpan.metacpan.org/authors/id/K/KO/KOLIBRIE/Convert-NLS_DATE_FORMAT-0.06.tar.gz"
|
||||
|
||||
maintainers("EbiArnie")
|
||||
|
||||
version("0.06", sha256="20ab8070c56377bd302c9ec5a16873714026d03e56a31cf70ab65632c1ed5bc7")
|
||||
|
||||
depends_on("perl@5.6.1:", type=("build", "link", "run", "test"))
|
||||
depends_on("perl-module-build-tiny@0.035:", type=("build"))
|
||||
|
||||
def test_use(self):
|
||||
"""Test 'use module'"""
|
||||
options = ["-we", 'use strict; use Convert::NLS_DATE_FORMAT; print("OK\n")']
|
||||
|
||||
perl = self.spec["perl"].command
|
||||
out = perl(*options, output=str.split, error=str.split)
|
||||
assert "OK" in out
|
Loading…
Reference in New Issue
Block a user