pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/geography/R-sf (geography/R-sf) Updated 0.9.8 to 1.0.2



details:   https://anonhg.NetBSD.org/pkgsrc/rev/d484aa5212bb
branches:  trunk
changeset: 458811:d484aa5212bb
user:      mef <mef%pkgsrc.org@localhost>
date:      Mon Sep 20 06:45:31 2021 +0000

description:
(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

diffstat:

 geography/R-sf/Makefile |  23 +++++++++++++++--------
 geography/R-sf/distinfo |  10 +++++-----
 2 files changed, 20 insertions(+), 13 deletions(-)

diffs (59 lines):

diff -r 111e6d1b3344 -r d484aa5212bb geography/R-sf/Makefile
--- a/geography/R-sf/Makefile   Mon Sep 20 06:09:40 2021 +0000
+++ b/geography/R-sf/Makefile   Mon Sep 20 06:45:31 2021 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.7 2021/06/06 14:45:22 mef Exp $
+# $NetBSD: Makefile,v 1.8 2021/09/20 06:45:31 mef Exp $
 
 R_PKGNAME=     sf
-R_PKGVER=      0.9-8
+R_PKGVER=      1.0-2
 CATEGORIES=    geography
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
@@ -15,17 +15,24 @@
 DEPENDS+=      R-DBI>=0.8:../../math/R-DBI
 DEPENDS+=      R-classInt>=0.4.1:../../math/R-classInt
 DEPENDS+=      R-units>=0.6.0:../../math/R-units
+DEPENDS+=      R-s2-[0-9]*:../../geography/R-s2
 
 # Packages suggested but not available:
-#   'lwgeom', 'mapview', 'odbc', 'pool', 'rgdal', 'RPostgres',
-#   'RPostgreSQL', 'RSQLite', 's2', 'spatstat', 'spatstat.geom',
-#   'spatstat.core', 'spatstat.linnet', 'spatstat.utils', 'stars',
-#   'terra', 'tidyr', 'tmap'
+#   'mapview', 'odbc', 'pool', 'RPostgres', 'RSQLite', 'spatstat.geom',
+#   'spatstat.core', 'spatstat.linnet', 'terra', 'tmap'
 
+TEST_DEPENDS+= R-blob-[0-9]*:../../devel/R-blob
+TEST_DEPENDS+= R-covr-[0-9]*:../../devel/R-covr
+TEST_DEPENDS+= R-knitr-[0-9]*:../../print/R-knitr
+TEST_DEPENDS+= R-rmarkdown-[0-9]*:../../textproc/R-rmarkdown
 TEST_DEPENDS+= R-ggplot2-[0-9]*:../../graphics/R-ggplot2
-TEST_DEPENDS+= R-blob-[0-9]*:../../devel/R-blob
+TEST_DEPENDS+= R-microbenchmark-[0-9]*:../../benchmarks/R-microbenchmark
+TEST_DEPENDS+= R-RPostgreSQL-[0-9]*:../../math/R-RPostgreSQL
 TEST_DEPENDS+= R-raster-[0-9]*:../../geography/R-raster
-TEST_DEPENDS+= R-microbenchmark-[0-9]*:../../benchmarks/R-microbenchmark
+TEST_DEPENDS+= R-rgdal-[0-9]*:../../geography/R-rgdal
+TEST_DEPENDS+= R-stars-[0-9]*:../../geography/R-stars
+TEST_DEPENDS+= R-spatstat-[0-9]*:../../geography/R-spatstat
+TEST_DEPENDS+= R-tidyr-[0-9]*:../../math/R-tidyr
 
 .include "../../math/R/Makefile.extension"
 .include "../../devel/R-Rcpp/buildlink3.mk"
diff -r 111e6d1b3344 -r d484aa5212bb geography/R-sf/distinfo
--- a/geography/R-sf/distinfo   Mon Sep 20 06:09:40 2021 +0000
+++ b/geography/R-sf/distinfo   Mon Sep 20 06:45:31 2021 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.2 2021/06/06 14:45:22 mef Exp $
+$NetBSD: distinfo,v 1.3 2021/09/20 06:45:31 mef Exp $
 
-SHA1 (R/sf_0.9-8.tar.gz) = f473644811645cd79d1a4d0155e446a9ca581e4c
-RMD160 (R/sf_0.9-8.tar.gz) = fc27a7e162db61558a50d09c60a8c344c5bca093
-SHA512 (R/sf_0.9-8.tar.gz) = 97fc24ade2557096e2c5974015683cbcb76b07311ca55ee4aaed860e6962de6793550cc17c24498c4f52e548b4363784b18aeae88f8a7622232375a67bb0afae
-Size (R/sf_0.9-8.tar.gz) = 4213253 bytes
+SHA1 (R/sf_1.0-2.tar.gz) = 9387ecc6773d26980025cb593d72f0b0fb04f3e1
+RMD160 (R/sf_1.0-2.tar.gz) = 60be6c0e2495034a94a1678e086950c0ac58d356
+SHA512 (R/sf_1.0-2.tar.gz) = f032cf325b765b410fda461d7d639d462e74a039c365c226174a9d81025e82a3a1c2dcb2e842db649cca7581f49c70250ccf1ddb9e2c7e1492a0d4cecce55404
+Size (R/sf_1.0-2.tar.gz) = 3645982 bytes



Home | Main Index | Thread Index | Old Index