1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
# Maintainer: peippo <christoph+aur@christophfink.com>
_cranname=sf
_cranver=1.0-19
pkgname=r-${_cranname,,}
pkgdesc="Simple Features for R"
url="https://cran.r-project.org/package=sf"
license=("GPL-2 | MIT")
pkgver=${_cranver//[:-]/.}
pkgrel=1
arch=("i686" "x86_64")
depends=(
"gdal>=2.0.1"
"geos>=3.4.0"
"proj>=4.8.0"
"r>=3.3.0"
"r-classint>=0.4.1"
"r-dbi>=0.8"
"r-magrittr"
"r-s2>=1.1.0"
"r-units>=0.7.0"
"sqlite"
)
optdepends=(
"r-blob"
"r-nanoarrow"
"r-covr"
"r-dplyr>=1.0.0"
"r-ggplot2"
"r-knitr"
"r-lwgeom>=0.2.14"
"r-maps"
#"r-mapview"
"r-matrix"
"r-microbenchmark"
"r-odbc"
"r-pbapply"
"r-pillar"
"r-raster"
"r-rlang"
"r-rmarkdown"
"r-rpostgres>=1.1.0"
"r-rpostgresql"
"r-rsqlite"
"r-sp>=1.2.4"
"r-spatstat>2.0.1"
"r-spatstat.geom"
"r-spatstat.linnet"
"r-spatstat.random"
"r-spatstat.utils"
"r-stars>=0.2.0"
"r-terra"
"r-tibble>=1.4.1"
"r-tidyr>=1.2.0"
"r-tidyselect>=1.0.0"
#"r-tmap"
"r-vctrs"
"r-wk>=0.9.0"
)
# The unittests for `r-sf` have multiple circular
# dependency chains.
# As such, the tests can not be run on first build.
# While R packages from CRAN, generally, are well-tested
# before they are released, in some situations, you want to
# have thorough testing on your own end.
# To run the tests, first build this package without `check()`
# (i.e., as-is) to bootstrap `r-sf`. Then, on subsequent builds,
# (assumining you have a local repository that is accessible from
# the build chroot), uncomment the lines defining `checkdepends`, below,
# as well as the `check()` function further down
# checkdepends=(
# "${optdepends[@]}"
# "r-testthat>=3.0.0"
#
# # optional dependencies of GDAL/OGR, so that expect_silent() tests pass
# "arrow"
# "cfitsio"
# "hdf5"
# "libheif"
# "libjxl"
# "libwebp"
# "mariadb-libs"
# "netcdf"
# "openexr"
# "openjpeg2"
# "podofo"
# "poppler"
# "postgresql-libs"
# )
source=("https://cran.r-project.org/src/contrib/${_cranname}_${_cranver}.tar.gz")
b2sums=("a7156e13da74c2a452c8057615cc718ef74dfe27fd12b14f5beb71a53668e2a9ddd92bed829d4e9915ca69a01d4cdd39b4d5e8bdc256aed3bda116be502a6923")
build() {
mkdir -p "${srcdir}/build/"
R CMD INSTALL ${_cranname}_${_cranver}.tar.gz -l "${srcdir}/build/"
}
# check() {
# export R_LIBS="build/"
# export _R_CHECK_FORCE_SUGGESTS_=0
# R CMD check --no-manual "${_cranname}"
# }
package() {
install -dm0755 "${pkgdir}/usr/lib/R/library"
cp -a --no-preserve=ownership "${srcdir}/build/${_cranname}" "${pkgdir}/usr/lib/R/library"
if [[ -f "${_cranname}/LICENSE" ]]; then
install -Dm0644 "${_cranname}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
fi
}
|