perl-proc-daemon: New package (#41666)
This commit is contained in:
parent
e2d5be83e7
commit
ab84876e2c
1 changed files with 28 additions and 0 deletions
28
var/spack/repos/builtin/packages/perl-proc-daemon/package.py
Normal file
28
var/spack/repos/builtin/packages/perl-proc-daemon/package.py
Normal 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
|
Loading…
Reference in a new issue