![](https://secure.gravatar.com/avatar/df8330968b6df8cd1c1942c5fb4b720c.jpg?s=120&d=mm&r=g)
commit 393ba72ba84a1d4db93765fd14a45a8446f4fcd6 Author: Tim Biermann <tbier@posteo.de> Date: Fri Mar 17 18:30:08 2023 +0100 r: 4.2.2 -> 4.2.3 diff --git a/r/.signature b/r/.signature index 7cd7b47b9..61ff0e523 100644 --- a/r/.signature +++ b/r/.signature @@ -1,13 +1,12 @@ untrusted comment: verify with /etc/ports/contrib.pub -RWSagIOpLGJF39+Bc1P7HQaUqYnyquWW9fyjZTXo7x1/a4IYKq/unLJaSbKnOXUoHaLDZMbcbNtoTeaZBC1hSNoNylQ2osVFkwA= -SHA256 (Pkgfile) = 6e7ca7dcaa9cdc9fe580a0ee7d2dd8e47505bd6220ae0a834ea94c14ec210181 +RWSagIOpLGJF33Qco6Q4AoukKHjRZyIAbx8th4DVrJkNSwGNnfinwZCUVzlDhFcKKsl4TqvgoI6/BQvn6umwmiw3u4DesQQikAw= +SHA256 (Pkgfile) = a3d16809f70229803df5000adafbad8f64d7cacbcafb0a4bd17a1f939f5d229a SHA256 (.footprint) = 665cccb2f203c0b448be4f31597184cdfa3a1062ce3ff85f2f1dbbf0f3a57ff4 -SHA256 (R-4.2.2.tar.gz) = 0ff62b42ec51afa5713caee7c4fde7a0c45940ba39bef8c5c9487fef0c953df5 +SHA256 (R-4.2.3.tar.gz) = 55e4a9a6d43be314e2c03d0266a6fa5444afdce50b303bfc3b82b3979516e074 SHA256 (r.desktop) = 25b01ea93fa704884b65ba002d44d4e99725bd826997e8c73b6467df9f23c798 SHA256 (r.png) = 1580d06a737951f4f3c903cbd514247d9071fc6868eb9c2de94bb999cc195cb1 SHA256 (R.conf) = 01057f4dd3d0eca3e31090b2793ab17ed6648501513f6cfea36a0c609a55ac5e SHA256 (R-4.2.2-browser-pdf-prefs.patch) = 98ba658e6be56bafc5f831627894c4706406e2e8feb39f6a18e8b54b0ec62f2c -SHA256 (R-4.2.2-isspace-without-readline.patch) = 9e2a9d728abfd0a4acc83ac8a287592435472336fd55bc5083fc0b1ac5f75448 SHA256 (R-4.2.2-parallel-rmath-h-install.patch) = f406c35ec38d37ccce109492afc18e02ed8f5adb781af68628801fa40c3f1121 SHA256 (R-3.4.1-parallel.patch) = 7d08b75592f9452b1f92bfe148f9d24fd19ba9163cd16ee2dac753f2c1a891be SHA256 (R-3.4.1-rmath-shared.patch) = 76a2d04b3a77884baa3cf84b25920f875e026b73c217c59b06aba2fae634f858 diff --git a/r/Pkgfile b/r/Pkgfile index 79272bd7c..c3e23b2a3 100644 --- a/r/Pkgfile +++ b/r/Pkgfile @@ -5,12 +5,12 @@ # Optional: lapack openjdk8 texlive tk name=r -version=4.2.2 -release=2 +version=4.2.3 +release=1 source=(https://cran.r-project.org/src/base/R-${version::1}/R-$version.tar.gz r.desktop r.png R.conf R-4.2.2-browser-pdf-prefs.patch - R-4.2.2-isspace-without-readline.patch R-4.2.2-parallel-rmath-h-install.patch + R-4.2.2-parallel-rmath-h-install.patch R-3.4.1-parallel.patch R-3.4.1-rmath-shared.patch R-3.6.2-no-LDFLAGS-in-libR-pkg-config.patch) @@ -22,7 +22,6 @@ build() { patch -Np1 -i $SRC/R-3.4.1-rmath-shared.patch patch -Np1 -i $SRC/R-3.6.2-no-LDFLAGS-in-libR-pkg-config.patch patch -Np1 -i $SRC/R-4.2.2-browser-pdf-prefs.patch - patch -Np1 -i $SRC/R-4.2.2-isspace-without-readline.patch patch -Np1 -i $SRC/R-4.2.2-parallel-rmath-h-install.patch # configuring R diff --git a/r/R-4.2.2-isspace-without-readline.patch b/r/R-4.2.2-isspace-without-readline.patch deleted file mode 100644 index 0b32bef13..000000000 --- a/r/R-4.2.2-isspace-without-readline.patch +++ /dev/null @@ -1,22 +0,0 @@ -From 6e36141598b78add7fb841480260b0a57ae79330 Mon Sep 17 00:00:00 2001 -From: smeyer <smeyer@00db46b3-68df-0310-9c12-caf00c1e9a41> -Date: Wed, 26 Oct 2022 08:22:41 +0000 -Subject: [PATCH] avoid implicit declaration of 'isspace' --without-readline - -git-svn-id: https://svn.r-project.org/R/trunk@83178 00db46b3-68df-0310-9c12-caf00c1e9a41 ---- - src/unix/sys-std.c | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/src/unix/sys-std.c b/src/unix/sys-std.c -index 7b93d63884a..f95ff0cf7b3 100644 ---- a/src/unix/sys-std.c -+++ b/src/unix/sys-std.c -@@ -1339,6 +1339,7 @@ Rstd_ShowFiles(int nfile, /* number of files */ - */ - - -+#include <ctype.h> /* for isspace */ - - int attribute_hidden Rstd_ChooseFile(int _new, char *buf, int len) - {