summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Johnson <glenn-johnson@uiowa.edu>2021-01-17 13:52:31 -0600
committerGitHub <noreply@github.com>2021-01-17 13:52:31 -0600
commit0efce74027a08646c5a6c5a747ada7d3821b789b (patch)
treeaffb10682d22c46cb6af5ac163d53d039bf9808a
parent54bab50b4716e41f7dc9e1efaeb78d6ea95f7a2f (diff)
downloadspack-0efce74027a08646c5a6c5a747ada7d3821b789b.tar.gz
spack-0efce74027a08646c5a6c5a747ada7d3821b789b.tar.bz2
spack-0efce74027a08646c5a6c5a747ada7d3821b789b.tar.xz
spack-0efce74027a08646c5a6c5a747ada7d3821b789b.zip
add version 7.1.1 to r-roxygen2 (#21020)
-rw-r--r--var/spack/repos/builtin/packages/r-roxygen2/package.py15
1 files changed, 10 insertions, 5 deletions
diff --git a/var/spack/repos/builtin/packages/r-roxygen2/package.py b/var/spack/repos/builtin/packages/r-roxygen2/package.py
index 8ec51a28f3..d9161431ed 100644
--- a/var/spack/repos/builtin/packages/r-roxygen2/package.py
+++ b/var/spack/repos/builtin/packages/r-roxygen2/package.py
@@ -7,25 +7,30 @@ from spack import *
class RRoxygen2(RPackage):
- """A 'Doxygen'-like in-source documentation system for Rd, collation, and
- 'NAMESPACE' files."""
+ """In-Line Documentation for R
+
+ Generate your Rd documentation, 'NAMESPACE' file, and collation field using
+ specially formatted comments. Writing documentation in-line with code makes
+ it easier to keep your documentation up-to-date as your requirements
+ change. 'Roxygen2' is inspired by the 'Doxygen' system for C++."""
homepage = "https://github.com/klutometis/roxygen"
url = "https://cloud.r-project.org/src/contrib/roxygen2_5.0.1.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/roxygen2"
+ version('7.1.1', sha256='bdc55ded037d4366f4d25a0d69e880dacc0fa22bee20f595d45855eef8548861')
version('7.1.0', sha256='7e9b36f6e7c01a5c8c4747340b3d0c064ce2e48c93fcfbfe45139854fae74103')
version('6.1.1', sha256='ed46b7e062e0dfd8de671c7a5f6d120fb2b720982e918dbeb01e6985694c0273')
version('5.0.1', sha256='9f755ddd08358be436f08b02df398e50e7508b856131aeeed235099bb3a7eba5')
- depends_on('r@3.0.2:', when='@:6.0.1', type=('build', 'run'))
- depends_on('r@3.2:', when='@7.1.0:', type=('build', 'run'))
+ depends_on('r@3.0.2:', type=('build', 'run'))
depends_on('r@3.1:', when='@6.1.0:', type=('build', 'run'))
+ depends_on('r@3.2:', when='@7.1.0:', type=('build', 'run'))
depends_on('r-brew', type=('build', 'run'))
depends_on('r-commonmark', type=('build', 'run'))
depends_on('r-desc@1.2.0:', type=('build', 'run'))
- depends_on('r-knitr', when='@7.1.0:', type=('build', 'run'))
depends_on('r-digest', type=('build', 'run'))
+ depends_on('r-knitr', when='@7.1.0:', type=('build', 'run'))
depends_on('r-pkgload@1.0.2:', type=('build', 'run'))
depends_on('r-purrr', type=('build', 'run'))
depends_on('r-purrr@0.3.3:', when='@7.1.0:', type=('build', 'run'))