pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/geography/R-rnaturalearthdata
Module Name: pkgsrc
Committed By: mef
Date: Thu Nov 28 14:09:12 UTC 2024
Modified Files:
pkgsrc/geography/R-rnaturalearthdata: Makefile distinfo
Log Message:
(geography/R-rnaturalearthdata) Updated 0.1.0 to 1.0.0
# rnaturalearthdata 1.0.0
## Breaking changes
This release introduces breaking changes by discontinuing support for
the `sp` object in favor of `sf`. Although the `sp` object is still
available on CRAN, it is no longer being actively developed
(https://geocompx.org/post/2023/rgdal-retirement/). This is the main
reason that prompted the decision to transition to `sf`.
Here is the list of affected objects that are now returned as Spatial Feature (`sf`):
| coastline110 | world coastlines from Natural Earth |
| ----------------- | ------------------------------------------------- |
| coastline50 | world coastlines from Natural Earth |
| countries110 | world country polygons from Natural Earth |
| countries50 | world country polygons from Natural Earth |
| map_units110 | world map_unit polygons from Natural Earth |
| map_units50 | world map_unit polygons from Natural Earth |
| sovereignty110 | world sovereignty polygons from Natural Earth |
| sovereignty50 | world sovereignty polygons from Natural Earth |
| states50 | state (admin level 1) polygons from Natural Earth |
| tiny_countries110 | tiny countries points from Natural Earth |
| tiny_countries50 | tiny countries points from Natural Earth |
If changing the return type to `sf` causes too many issues with your
existing code, you can still convert it back to `sp`.
```
# option 1
sf::as_Spatial(x)
# option 2
as(x, "Spatial")
```
More information about the retirement of `rgdal`, `rgeos` and
`maptools`: https://r-spatial.org/r/2022/04/12/evolution.html
# rnaturalearthdata 0.2.1 2023-03-06
- update data to [Natural Earth
v5.1.2](https://github.com/nvkelso/natural-earth-vector/blob/master/CHANGELOG).
- add github action to automate data updates
# rnaturalearthdata 0.2.0
- update data to new version [Natural Earth
v4.1](https://www.naturalearthdata.com/blog/miscellaneous/natural-earth-v4-1-0-release-notes/)
released May 2018.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/geography/R-rnaturalearthdata/Makefile
cvs rdiff -u -r1.3 -r1.4 pkgsrc/geography/R-rnaturalearthdata/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/geography/R-rnaturalearthdata/Makefile
diff -u pkgsrc/geography/R-rnaturalearthdata/Makefile:1.1 pkgsrc/geography/R-rnaturalearthdata/Makefile:1.2
--- pkgsrc/geography/R-rnaturalearthdata/Makefile:1.1 Sun Aug 9 15:28:57 2020
+++ pkgsrc/geography/R-rnaturalearthdata/Makefile Thu Nov 28 14:09:12 2024
@@ -1,13 +1,22 @@
-# $NetBSD: Makefile,v 1.1 2020/08/09 15:28:57 brook Exp $
+# $NetBSD: Makefile,v 1.2 2024/11/28 14:09:12 mef Exp $
R_PKGNAME= rnaturalearthdata
-R_PKGVER= 0.1.0
+R_PKGVER= 1.0.0
CATEGORIES= geography
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
COMMENT= World Vector Map Data from Natural Earth Used in 'rnaturalearth'
LICENSE= cc0-1.0-universal
+TEST_DEPENDS+= R-knitr-[0-9]*:../../print/R-knitr
+TEST_DEPENDS+= R-testthat-[0-9]*:../../devel/R-testthat
+
+TEST_DEPENDS+= tex-ec-[0-9]*:../../fonts/tex-ec
+TEST_DEPENDS+= tex-inconsolata-[0-9]*:../../fonts/tex-inconsolata
+TEST_DEPENDS+= tex-latex-bin-[0-9]*:../../print/tex-latex-bin
+TEST_DEPENDS+= tex-url-[0-9]*:../../print/tex-url
+TEST_DEPENDS+= tex-xkeyval-[0-9]*:../../print/tex-xkeyval
+
USE_LANGUAGES= # none
.include "../../math/R/Makefile.extension"
Index: pkgsrc/geography/R-rnaturalearthdata/distinfo
diff -u pkgsrc/geography/R-rnaturalearthdata/distinfo:1.3 pkgsrc/geography/R-rnaturalearthdata/distinfo:1.4
--- pkgsrc/geography/R-rnaturalearthdata/distinfo:1.3 Tue Oct 26 10:45:06 2021
+++ pkgsrc/geography/R-rnaturalearthdata/distinfo Thu Nov 28 14:09:12 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.3 2021/10/26 10:45:06 nia Exp $
+$NetBSD: distinfo,v 1.4 2024/11/28 14:09:12 mef Exp $
-BLAKE2s (R/rnaturalearthdata_0.1.0.tar.gz) = 6560cd7955c69562e61f7e2f647e277dc52572348d4481db8a682ea369f09fcf
-SHA512 (R/rnaturalearthdata_0.1.0.tar.gz) = 13aa33c22d293c1ebbe41d7fdf3c30efc1dd34e5e734d3636d8c424fa105bb38e3ebd1cf8f6ddc451f6b8228be2aeb8f471a60d6071d8a4f8ccd51ecb6af6062
-Size (R/rnaturalearthdata_0.1.0.tar.gz) = 3219989 bytes
+BLAKE2s (R/rnaturalearthdata_1.0.0.tar.gz) = 56c3c122c7c97ce3274e8ee964ecd2b43bc9548f751ddc7314223a68c37c817e
+SHA512 (R/rnaturalearthdata_1.0.0.tar.gz) = 5afa4f432823886b332b1551c7702f1edbea873c445127bea191a947e9c0855411d02a767747e2ad5d077b97e80d37953c5dbe7d953a86aab546991b8c8a34ea
+Size (R/rnaturalearthdata_1.0.0.tar.gz) = 3313555 bytes
Home |
Main Index |
Thread Index |
Old Index