perl-datetime-format-oracle: New package (#42003)

Adds DateTime::Format::Oracle
This commit is contained in:
Arne Becker 2024-01-09 20:40:36 +00:00 committed by GitHub
parent 74de7c84b6
commit 9ffbf5d056
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,31 @@
# 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 PerlDatetimeFormatOracle(PerlPackage):
"""Parse and format Oracle dates and timestamps"""
homepage = "https://metacpan.org/pod/DateTime::Format::Oracle"
url = "https://cpan.metacpan.org/authors/id/K/KO/KOLIBRIE/DateTime-Format-Oracle-0.06.tar.gz"
maintainers("EbiArnie")
license("Artistic-1.0-Perl OR GPL-1.0-or-later")
version("0.06", sha256="9f18d1eb3dff38e046ba063d6b54cc7d68464640ce69d7d1578a2ccd285ca8d4")
depends_on("perl-convert-nls-date-format@0.03:", type=("build", "run", "test"))
depends_on("perl-datetime", type=("build", "run", "test"))
depends_on("perl-datetime-format-builder", type=("build", "run", "test"))
def test_use(self):
"""Test 'use module'"""
options = ["-we", 'use strict; use DateTime::Format::Oracle; print("OK\n")']
perl = self.spec["perl"].command
out = perl(*options, output=str.split, error=str.split)
assert "OK" in out