perl-sql-reservedwords: New package (#41685)

This commit is contained in:
Arne Becker 2023-12-14 20:07:12 +00:00 committed by GitHub
parent 133d6e2656
commit 0995a29c5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 PerlSqlReservedwords(PerlPackage):
"""Reserved SQL words by ANSI/ISO"""
homepage = "https://metacpan.org/pod/SQL::ReservedWords"
url = "https://cpan.metacpan.org/authors/id/C/CH/CHANSEN/SQL-ReservedWords-0.8.tar.gz"
maintainers("EbiArnie")
version("0.8", sha256="09f4aecf1bd8efdd3f9b39f16a240c4e9ceb61eb295b88145c96eb9d58504a2a")
depends_on("perl-sub-exporter", type=("build", "run", "test"))
def test_use(self):
"""Test 'use module'"""
options = ["-we", 'use strict; use SQL::ReservedWords; print("OK\n")']
perl = self.spec["perl"].command
out = perl(*options, output=str.split, error=str.split)
assert "OK" in out