Mon Sep 20 06:45:31 2021 UTC ()
(geography/R-sf) Updated 0.9.8 to 1.0.2

# version 1.0-2
* `st_read()` and `st_write()` using GDAL handle binary attributes
  (OFTBinary fields) ; #1721

* a `pivot_longer` method is added for `sf` objects (the `data.frame`
  method works, but raises a warning)

* `rbind.sf` preserves primary geometry column; #1717

* `configure` constrains using `--static` to `Darwin` platform; #1702,
  #1712, #1713

* old-style `crs` objects created with sf < 0.9-0 generate a message,
  and will cause a warning in the future.

* when `st_crs()` is called with a WKT2 as text input, its `input`
  field will be replaced with the CRS name (if it has one).

* GEOS (>= 3.9.0) operations use `GEOSGeom_setPrecision_r` to set
  precision of geometries; #1535

* `st_read()` with specified `query` ignores argument `layers`, and
  warns if it is given; #1444

# version 1.0-1
* fix regression in `st_intersection()`: when using s2 attributes were
  assigned wrongly; #1704

* `crs` (sf) to `CRS` (sp) conversion no longer needs validation by
  `rgdal`; https://github.com/edzer/sp/issues/107

* retrieve ESRI's WKT version of CRS by `st_crs(id)$WKT1_ESRI`; #1690

# version 1.0-0
* add `s2` to Imports:

* add Dewey Dunnington to contributors

* `sf_use_s2()` prints a message when using s2 has been switched to on or off.

* use `s2` spherical geometry as default when coordinates are ellipsoidal. This can
  be switched off (defaulting to planar geometry, using GEOS, as in sf < 1.0-0)
  by setting environment variable `_SF_USE_S2` to `false` before package `sf`
  is loaded, or by `sf_use_s2(FALSE)`; #1649

* `st_nearest_feature()` with missing `y` returns nearest features in
  the remaining set of `x`; https://github.com/r-spatial/s2/issues/111

* `st_write()` gains an argument `config_options` to set GDAL config
  options; #1618

* fix regression in `sf_project(..., keep = TRUE)`; #1635


(mef)
diff -r1.7 -r1.8 pkgsrc/geography/R-sf/Makefile
diff -r1.2 -r1.3 pkgsrc/geography/R-sf/distinfo

cvs diff -r1.7 -r1.8 pkgsrc/geography/R-sf/Makefile (expand / switch to unified diff)

--- pkgsrc/geography/R-sf/Makefile 2021/06/06 14:45:22 1.7
+++ pkgsrc/geography/R-sf/Makefile 2021/09/20 06:45:31 1.8
@@ -1,33 +1,40 @@ @@ -1,33 +1,40 @@
1# $NetBSD: Makefile,v 1.7 2021/06/06 14:45:22 mef Exp $ 1# $NetBSD: Makefile,v 1.8 2021/09/20 06:45:31 mef Exp $
2 2
3R_PKGNAME= sf 3R_PKGNAME= sf
4R_PKGVER= 0.9-8 4R_PKGVER= 1.0-2
5CATEGORIES= geography 5CATEGORIES= geography
6 6
7MAINTAINER= pkgsrc-users@NetBSD.org 7MAINTAINER= pkgsrc-users@NetBSD.org
8COMMENT= Simple Features for R 8COMMENT= Simple Features for R
9LICENSE= mit OR gnu-gpl-v2 9LICENSE= mit OR gnu-gpl-v2
10 10
11USE_LANGUAGES+= c c++11 11USE_LANGUAGES+= c c++11
12 12
13DEPENDS+= R-magrittr>=1.5:../../devel/R-magrittr 13DEPENDS+= R-magrittr>=1.5:../../devel/R-magrittr
14DEPENDS+= R-rgeos>=0.5.2:../../geography/R-rgeos 14DEPENDS+= R-rgeos>=0.5.2:../../geography/R-rgeos
15DEPENDS+= R-DBI>=0.8:../../math/R-DBI 15DEPENDS+= R-DBI>=0.8:../../math/R-DBI
16DEPENDS+= R-classInt>=0.4.1:../../math/R-classInt 16DEPENDS+= R-classInt>=0.4.1:../../math/R-classInt
17DEPENDS+= R-units>=0.6.0:../../math/R-units 17DEPENDS+= R-units>=0.6.0:../../math/R-units
 18DEPENDS+= R-s2-[0-9]*:../../geography/R-s2
18 19
19# Packages suggested but not available: 20# Packages suggested but not available:
20# 'lwgeom', 'mapview', 'odbc', 'pool', 'rgdal', 'RPostgres', 21# 'mapview', 'odbc', 'pool', 'RPostgres', 'RSQLite', 'spatstat.geom',
21# 'RPostgreSQL', 'RSQLite', 's2', 'spatstat', 'spatstat.geom', 22# 'spatstat.core', 'spatstat.linnet', 'terra', 'tmap'
22# 'spatstat.core', 'spatstat.linnet', 'spatstat.utils', 'stars', 
23# 'terra', 'tidyr', 'tmap' 
24 23
25TEST_DEPENDS+= R-ggplot2-[0-9]*:../../graphics/R-ggplot2 
26TEST_DEPENDS+= R-blob-[0-9]*:../../devel/R-blob 24TEST_DEPENDS+= R-blob-[0-9]*:../../devel/R-blob
27TEST_DEPENDS+= R-raster-[0-9]*:../../geography/R-raster 25TEST_DEPENDS+= R-covr-[0-9]*:../../devel/R-covr
 26TEST_DEPENDS+= R-knitr-[0-9]*:../../print/R-knitr
 27TEST_DEPENDS+= R-rmarkdown-[0-9]*:../../textproc/R-rmarkdown
 28TEST_DEPENDS+= R-ggplot2-[0-9]*:../../graphics/R-ggplot2
28TEST_DEPENDS+= R-microbenchmark-[0-9]*:../../benchmarks/R-microbenchmark 29TEST_DEPENDS+= R-microbenchmark-[0-9]*:../../benchmarks/R-microbenchmark
 30TEST_DEPENDS+= R-RPostgreSQL-[0-9]*:../../math/R-RPostgreSQL
 31TEST_DEPENDS+= R-raster-[0-9]*:../../geography/R-raster
 32TEST_DEPENDS+= R-rgdal-[0-9]*:../../geography/R-rgdal
 33TEST_DEPENDS+= R-stars-[0-9]*:../../geography/R-stars
 34TEST_DEPENDS+= R-spatstat-[0-9]*:../../geography/R-spatstat
 35TEST_DEPENDS+= R-tidyr-[0-9]*:../../math/R-tidyr
29 36
30.include "../../math/R/Makefile.extension" 37.include "../../math/R/Makefile.extension"
31.include "../../devel/R-Rcpp/buildlink3.mk" 38.include "../../devel/R-Rcpp/buildlink3.mk"
32.include "../../geography/gdal-lib/buildlink3.mk" 39.include "../../geography/gdal-lib/buildlink3.mk"
33.include "../../mk/bsd.pkg.mk" 40.include "../../mk/bsd.pkg.mk"

cvs diff -r1.2 -r1.3 pkgsrc/geography/R-sf/distinfo (expand / switch to unified diff)

--- pkgsrc/geography/R-sf/distinfo 2021/06/06 14:45:22 1.2
+++ pkgsrc/geography/R-sf/distinfo 2021/09/20 06:45:31 1.3
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.2 2021/06/06 14:45:22 mef Exp $ 1$NetBSD: distinfo,v 1.3 2021/09/20 06:45:31 mef Exp $
2 2
3SHA1 (R/sf_0.9-8.tar.gz) = f473644811645cd79d1a4d0155e446a9ca581e4c 3SHA1 (R/sf_1.0-2.tar.gz) = 9387ecc6773d26980025cb593d72f0b0fb04f3e1
4RMD160 (R/sf_0.9-8.tar.gz) = fc27a7e162db61558a50d09c60a8c344c5bca093 4RMD160 (R/sf_1.0-2.tar.gz) = 60be6c0e2495034a94a1678e086950c0ac58d356
5SHA512 (R/sf_0.9-8.tar.gz) = 97fc24ade2557096e2c5974015683cbcb76b07311ca55ee4aaed860e6962de6793550cc17c24498c4f52e548b4363784b18aeae88f8a7622232375a67bb0afae 5SHA512 (R/sf_1.0-2.tar.gz) = f032cf325b765b410fda461d7d639d462e74a039c365c226174a9d81025e82a3a1c2dcb2e842db649cca7581f49c70250ccf1ddb9e2c7e1492a0d4cecce55404
6Size (R/sf_0.9-8.tar.gz) = 4213253 bytes 6Size (R/sf_1.0-2.tar.gz) = 3645982 bytes