spack/var/spack/repos/builtin/packages/r-filelock/package.py
Harmen Stoppels fce95e2efb
license year bump (#34921)
* license bump year
* fix black issues of modified files
* mypy
* fix 2021 -> 2023
2023-01-18 14:30:17 -08:00

22 lines
689 B
Python

# Copyright 2013-2023 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 RFilelock(RPackage):
"""Portable File Locking.
Place an exclusive or shared lock on a file. It uses 'LockFile' on Windows
and 'fcntl' locks on Unix-like systems."""
cran = "filelock"
version("1.0.2", sha256="ac2915950789b16c43a625a2b8dab6ba423588db4a7d0daa75b74518b82b1403")
depends_on("r-callr@2.0.0:", type=("build", "run"))
depends_on("r-covr", type=("build", "run"))
depends_on("r-testthat", type=("build", "run"))