add version 0.1.8 to r-modelr (#21105)

This commit is contained in:
Glenn Johnson
2021-01-17 11:12:57 -06:00
committed by GitHub
parent eefdadfe7e
commit ee0221d973

View File

@@ -7,13 +7,16 @@
class RModelr(RPackage): class RModelr(RPackage):
"""Functions for modelling that help you seamlessly integrate modelling """Modelling Functions that Work with the Pipe
into a pipeline of data manipulation and visualisation."""
Functions for modelling that help you seamlessly integrate modelling into a
pipeline of data manipulation and visualisation."""
homepage = "https://github.com/hadley/modelr" homepage = "https://github.com/hadley/modelr"
url = "https://cloud.r-project.org/src/contrib/modelr_0.1.1.tar.gz" url = "https://cloud.r-project.org/src/contrib/modelr_0.1.1.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/modelr" list_url = "https://cloud.r-project.org/src/contrib/Archive/modelr"
version('0.1.8', sha256='825ba77d95d60cfb94920bec910872ca2ffe7790a44148b2992be2759cb361c4')
version('0.1.5', sha256='45bbee387c6ba154f9f8642e9f03ea333cce0863c324ff15d23096f33f85ce5a') version('0.1.5', sha256='45bbee387c6ba154f9f8642e9f03ea333cce0863c324ff15d23096f33f85ce5a')
version('0.1.4', sha256='b4da77c1244bbda512ce323751c8338741eeaa195283f172a0feec2917bcfdd9') version('0.1.4', sha256='b4da77c1244bbda512ce323751c8338741eeaa195283f172a0feec2917bcfdd9')
version('0.1.3', sha256='e536b247c17d6cacf10565dd8a1b744efc90a8815c70edd54371e413e6d1b423') version('0.1.3', sha256='e536b247c17d6cacf10565dd8a1b744efc90a8815c70edd54371e413e6d1b423')
@@ -21,11 +24,13 @@ class RModelr(RPackage):
depends_on('r@3.1:', when='@:0.1.4', type=('build', 'run')) depends_on('r@3.1:', when='@:0.1.4', type=('build', 'run'))
depends_on('r@3.2:', when='@0.1.5:', type=('build', 'run')) depends_on('r@3.2:', when='@0.1.5:', type=('build', 'run'))
depends_on('r-broom', type=('build', 'run'))
depends_on('r-magrittr', type=('build', 'run')) depends_on('r-magrittr', type=('build', 'run'))
depends_on('r-purrr@0.2.2:', type=('build', 'run')) depends_on('r-purrr@0.2.2:', type=('build', 'run'))
depends_on('r-lazyeval@0.2.0:', when='@:0.1.1', type=('build', 'run'))
depends_on('r-tibble', type=('build', 'run'))
depends_on('r-broom', type=('build', 'run'))
depends_on('r-dplyr', type=('build', 'run'))
depends_on('r-tidyr@0.8.0:', type=('build', 'run'))
depends_on('r-rlang@0.2.0:', when='@0.1.3:', type=('build', 'run')) depends_on('r-rlang@0.2.0:', when='@0.1.3:', type=('build', 'run'))
depends_on('r-tibble', type=('build', 'run'))
depends_on('r-tidyr@0.8.0:', type=('build', 'run'))
depends_on('r-tidyselect', when='@0.1.8:', type=('build', 'run'))
depends_on('r-vctrs', when='@0.1.8:', type=('build', 'run'))
depends_on('r-lazyeval@0.2.0:', when='@:0.1.1', type=('build', 'run'))
depends_on('r-dplyr', when='@:0.1.5', type=('build', 'run'))