diff options
author | Glenn Johnson <glenn-johnson@uiowa.edu> | 2021-01-15 03:42:06 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-15 10:42:06 +0100 |
commit | 84f5f8437f2e8acc408e55805b758a886648c969 (patch) | |
tree | 4e33d4b4b3f54e42a6f8d9ca3d5d6efcd825e9bc | |
parent | 0d27aa685d6af1992de1352bc5a43151acbc1d7a (diff) | |
download | spack-84f5f8437f2e8acc408e55805b758a886648c969.tar.gz spack-84f5f8437f2e8acc408e55805b758a886648c969.tar.bz2 spack-84f5f8437f2e8acc408e55805b758a886648c969.tar.xz spack-84f5f8437f2e8acc408e55805b758a886648c969.zip |
r-lifecycle: new package at v0.2.0 (#20845)
-rw-r--r-- | var/spack/repos/builtin/packages/r-lifecycle/package.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/r-lifecycle/package.py b/var/spack/repos/builtin/packages/r-lifecycle/package.py new file mode 100644 index 0000000000..a02fe99197 --- /dev/null +++ b/var/spack/repos/builtin/packages/r-lifecycle/package.py @@ -0,0 +1,29 @@ +# Copyright 2013-2021 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 import * + + +class RLifecycle(RPackage): + """Manage the Life Cycle of your Package Functions + + Manage the life cycle of your exported functions with shared conventions, + documentation badges, and non-invasive deprecation warnings. The + 'lifecycle' package defines four development stages (experimental, + maturing, stable, and questioning) and three deprecation stages + (soft-deprecated, deprecated, and defunct). It makes it easy to insert + badges corresponding to these stages in your documentation. Usage of + deprecated functions are signalled with increasing levels of non-invasive + verbosity.""" + + homepage = "https://lifecycle.r-lib.org/" + url = "https://cloud.r-project.org/src/contrib/lifecycle_0.2.0.tar.gz" + list_url = "https://cran.r-project.org/src/contrib/Archive/lifecycle" + + version('0.2.0', sha256='29746e8dee05d4e36f9c612e8c7a903a4f648a36b3b94c9776e518c38a412224') + + depends_on('r@3.2:', type=('build', 'run')) + depends_on('r-glue', type=('build', 'run')) + depends_on('r-rlang@0.4.0:', type=('build', 'run')) |