perl-proc-daemon: New package (#41666)

This commit is contained in:
Arne Becker 2023-12-14 20:51:43 +00:00 committed by GitHub
parent e2d5be83e7
commit ab84876e2c
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 PerlProcDaemon(PerlPackage):
"""Run Perl program(s) as a daemon process"""
homepage = "https://metacpan.org/pod/Proc::Daemon"
url = "https://cpan.metacpan.org/authors/id/A/AK/AKREAL/Proc-Daemon-0.23.tar.gz"
maintainers("EbiArnie")
version("0.23", sha256="34c0b85b7948b431cbabc97cee580835e515ccf43badbd8339eb109474089b69")
depends_on("perl-proc-processtable", type=("build", "link"))
def test_use(self):
"""Test 'use module'"""
options = ["-we", 'use strict; use Proc::Daemon; print("OK\n")']
perl = self.spec["perl"].command
out = perl(*options, output=str.split, error=str.split)
assert "OK" in out