add version 1.0.5 to r-getoptlong (#20988)
This commit is contained in:
parent
fa33c534f7
commit
ba024fdb7d
1 changed files with 8 additions and 4 deletions
|
@ -7,21 +7,25 @@
|
||||||
|
|
||||||
|
|
||||||
class RGetoptlong(RPackage):
|
class RGetoptlong(RPackage):
|
||||||
"""This is yet another command-line argument parser which wraps the
|
"""Parsing Command-Line Arguments and Simple Variable Interpolation
|
||||||
powerful Perl module Getopt::Long and with some adaptation for easier
|
|
||||||
use in R. It also provides a simple way for variable interpolation in
|
This is yet another command-line argument parser which wraps the powerful
|
||||||
R."""
|
Perl module Getopt::Long and with some adaptation for easier use in R. It
|
||||||
|
also provides a simple way for variable interpolation in R."""
|
||||||
|
|
||||||
homepage = "https://cloud.r-project.org/package=GetoptLong"
|
homepage = "https://cloud.r-project.org/package=GetoptLong"
|
||||||
url = "https://cloud.r-project.org/src/contrib/GetoptLong_0.1.6.tar.gz"
|
url = "https://cloud.r-project.org/src/contrib/GetoptLong_0.1.6.tar.gz"
|
||||||
list_url = "https://cloud.r-project.org/src/contrib/Archive/GetoptLong"
|
list_url = "https://cloud.r-project.org/src/contrib/Archive/GetoptLong"
|
||||||
|
|
||||||
|
version('1.0.5', sha256='8c237986ed3dfb72d956ad865ef7768644eebf144675ad66140acfd1aca9d701')
|
||||||
version('0.1.7', sha256='b9a98881db407eae9b711c4fa9170168fd5f3be1f8485cd8f28d0a60ace083ba')
|
version('0.1.7', sha256='b9a98881db407eae9b711c4fa9170168fd5f3be1f8485cd8f28d0a60ace083ba')
|
||||||
version('0.1.6', sha256='f526f006e3ed8507f1f236430ac9e97341c1ee9c207fbb68f936dd4d377b28b5')
|
version('0.1.6', sha256='f526f006e3ed8507f1f236430ac9e97341c1ee9c207fbb68f936dd4d377b28b5')
|
||||||
|
|
||||||
depends_on('r@3.0.0:', type=('build', 'run'))
|
depends_on('r@3.0.0:', type=('build', 'run'))
|
||||||
|
depends_on('r@3.3.0:', when='@1.0.5:', type=('build', 'run'))
|
||||||
depends_on('r-rjson', type=('build', 'run'))
|
depends_on('r-rjson', type=('build', 'run'))
|
||||||
depends_on('r-globaloptions@0.1.0:', type=('build', 'run'))
|
depends_on('r-globaloptions@0.1.0:', type=('build', 'run'))
|
||||||
|
depends_on('r-crayon', when='@1.0.5:', type=('build', 'run'))
|
||||||
|
|
||||||
# The CRAN site lists SystemRequirments as: Perl, Getopt::Long. The
|
# The CRAN site lists SystemRequirments as: Perl, Getopt::Long. The
|
||||||
# Getop::Long package will be installed with Perl so just depend on perl.
|
# Getop::Long package will be installed with Perl so just depend on perl.
|
||||||
|
|
Loading…
Reference in a new issue