blob: faf2efb17622bb00259e67dee7cc7b90a6c0fcbd (
plain)
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
|
# Maintainer: Pekka Ristola <pekkarr [at] protonmail [dot] com>
# Contributor: Guoyi Zhang <guoyizhang at malacology dot net>
# Contributor: Viktor Drobot (aka dviktor) linux776 [at] gmail [dot] com
# Contributor: frichtlm <frichtlm@gmail.com>
# Contributor: wagnerflo <florian@wagner-flo.net>
# Contributor: Tobias Neumann <mail at tobias dash neumann dot eu>
# Contributor: Nick B <Shirakawasuna at gmail _dot_com>
_pkgname=ggplot2
_pkgver=4.0.2
pkgname=r-${_pkgname,,}
pkgver=${_pkgver//-/.}
pkgrel=1
pkgdesc="Create Elegant Data Visualisations Using the Grammar of Graphics"
arch=(any)
url="https://cran.r-project.org/package=$_pkgname"
license=('MIT')
depends=(
r-cli
r-gtable
r-isoband
r-lifecycle
r-rlang
r-s7
r-scales
r-vctrs
r-withr
)
checkdepends=(
r-hexbin
r-mapproj
r-quantreg
r-sf
r-sp
r-svglite
r-testthat
r-xml2
ttf-font
)
optdepends=(
r-broom
r-covr
r-dplyr
r-ggplot2movies
r-hexbin
r-hmisc
r-hms
r-knitr
r-mapproj
r-maps
r-multcomp
r-munsell
r-profvis
r-quantreg
r-quarto
r-ragg
r-rcolorbrewer
r-roxygen2
r-sf
r-svglite
r-testthat
r-tibble
r-vdiffr
r-xml2
)
source=("https://cran.r-project.org/src/contrib/${_pkgname}_${_pkgver}.tar.gz"
"$_pkgname-fix-snapshots.patch::https://github.com/tidyverse/ggplot2/pull/5917/commits/7908e224e03fce65ce910cd85f3de3b2846970d6.patch")
md5sums=('019f409ffe30dfb43d556bf78e13fd45'
'c1beb06c438ec674a22babfb6ca987a8')
b2sums=('7c2ab6b1da0641af8fcbde54bc8c50c238b2ef6ce4d292ae3ff477eebcd2156334631953e5621461779429cc60a1d353fe06b397e2f8efbcbdcf820334005eca'
'b01d6fd2c0d251fa64792fa22ccd7627f44d2cd9e1d11b3b4c085244fa14fcc074a07e9106d301e25cd51532f23e65536045e173a1c061d1d51732d0ee80a670')
#prepare() {
# update test snapshots
# patch -Np1 -d "$_pkgname" < "$_pkgname-fix-snapshots.patch"
#}
build() {
mkdir build
R CMD INSTALL -l build "$_pkgname"
}
#check() {
# cd "$_pkgname/tests"
# R_LIBS="$srcdir/build" NOT_CRAN=true Rscript --vanilla testthat.R
#}
package() {
install -d "$pkgdir/usr/lib/R/library"
cp -a --no-preserve=ownership "build/$_pkgname" "$pkgdir/usr/lib/R/library"
install -d "$pkgdir/usr/share/licenses/$pkgname"
ln -s "/usr/lib/R/library/$_pkgname/LICENSE" "$pkgdir/usr/share/licenses/$pkgname"
}
|