r-rmarkdown: Update version to 1.7 (#6506)

* r-rmarkdown: Update version to 1.7

* r-rmarkdown: add version constraints.
This commit is contained in:
lingnanyuan 2018-01-10 23:12:35 -06:00 committed by Adam J. Stewart
parent a4c4739626
commit 384b8f43a2

View File

@ -33,12 +33,16 @@ class RRmarkdown(RPackage):
url = "https://cran.r-project.org/src/contrib/rmarkdown_1.0.tar.gz" url = "https://cran.r-project.org/src/contrib/rmarkdown_1.0.tar.gz"
list_url = "https://cran.r-project.org/src/contrib/Archive/rmarkdown" list_url = "https://cran.r-project.org/src/contrib/Archive/rmarkdown"
version('1.7', '477c50840581ba7947b3d905c67a511b')
version('1.0', '264aa6a59e9680109e38df8270e14c58') version('1.0', '264aa6a59e9680109e38df8270e14c58')
depends_on('r-knitr', type=('build', 'run')) depends_on('r-knitr@1.14:', type=('build', 'run'))
depends_on('r-yaml', type=('build', 'run')) depends_on('r-yaml@2.1.5:', type=('build', 'run'))
depends_on('r-htmltools', type=('build', 'run')) depends_on('r-htmltools@0.3.5:', type=('build', 'run'))
depends_on('r-catools', type=('build', 'run')) depends_on('r-evaluate@0.8:', type=('build', 'run'))
depends_on('r-evaluate', type=('build', 'run'))
depends_on('r-base64enc', type=('build', 'run')) depends_on('r-base64enc', type=('build', 'run'))
depends_on('r-jsonlite', type=('build', 'run')) depends_on('r-jsonlite', type=('build', 'run'))
depends_on('r-rprojroot', type=('build', 'run'))
depends_on('r-mime', type=('build', 'run'))
depends_on('r-stringr@1.2.0:', type=('build', 'run'))
depends_on('r@3.0:')