add version 0.9-7 to r-sf (#20851)

This commit is contained in:
Glenn Johnson
2021-01-16 08:13:54 -06:00
committed by GitHub
parent bf660bff04
commit 41cc3404a4

View File

@@ -7,26 +7,32 @@
class RSf(RPackage): class RSf(RPackage):
"""Support for simple features, a standardized way to encode spatial """Simple Features for R
vector data. Binds to GDAL for reading and writing data, to GEOS for
geometrical operations, and to Proj.4 for projection conversions and Support for simple features, a standardized way to encode spatial vector
datum transformations.""" data. Binds to 'GDAL' for reading and writing data, to 'GEOS' for
geometrical operations, and to 'PROJ' for projection conversions and datum
transformations. Optionally uses the 's2' package for spherical geometry
operations on geographic coordinates."""
homepage = "https://github.com/r-spatial/sf/" homepage = "https://github.com/r-spatial/sf/"
url = "https://cloud.r-project.org/src/contrib/sf_0.5-5.tar.gz" url = "https://cloud.r-project.org/src/contrib/sf_0.5-5.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/sf" list_url = "https://cloud.r-project.org/src/contrib/Archive/sf"
version('0.9-7', sha256='4acac2f78badf9d252da5bf377975f984927c14a56a72d9f83d285c0adadae9c')
version('0.7-7', sha256='d1780cb46a285b30c7cc41cae30af523fbc883733344e53f7291e2d045e150a4') version('0.7-7', sha256='d1780cb46a285b30c7cc41cae30af523fbc883733344e53f7291e2d045e150a4')
version('0.7-5', sha256='53ed0567f502216a116c4848f5a9262ca232810f82642df7b98e0541a2524868') version('0.7-5', sha256='53ed0567f502216a116c4848f5a9262ca232810f82642df7b98e0541a2524868')
version('0.5-5', sha256='82ad31f98243b6982302fe245ee6e0d8d0546e5ff213ccc00ec3025dfec62229') version('0.5-5', sha256='82ad31f98243b6982302fe245ee6e0d8d0546e5ff213ccc00ec3025dfec62229')
depends_on('r@3.3.0:', type=('build', 'run')) depends_on('r@3.3.0:', type=('build', 'run'))
depends_on('r-rcpp@0.12.18:', type=('build', 'run'))
depends_on('r-dbi@0.8:', type=('build', 'run'))
depends_on('r-units@0.6-0:', type=('build', 'run'))
depends_on('r-classint@0.2-1:', type=('build', 'run')) depends_on('r-classint@0.2-1:', type=('build', 'run'))
depends_on('r-classint@0.4-1:', when='@0.9-7:', type=('build', 'run'))
depends_on('r-dbi@0.8:', type=('build', 'run'))
depends_on('r-magrittr', type=('build', 'run')) depends_on('r-magrittr', type=('build', 'run'))
depends_on('r-units@0.6-0:', type=('build', 'run'))
depends_on('r-rcpp@0.12.18:', type=('build', 'run'))
depends_on('gdal@2.0.1:') depends_on('gdal@2.0.1:')
depends_on('geos@3.4.0:') depends_on('geos@3.4.0:')
depends_on('proj@4.8.0:5', when='@:0.7-3') depends_on('proj@4.8.0:5.999', when='@:0.7-3')
depends_on('proj@4.8.0:6.999', when='@0.7-4:') depends_on('proj@4.8.0:6.999', when='@0.7-4:')
depends_on('sqlite', when='@0.9-7')