Compare commits

...

2 Commits

Author SHA256 Message Date
5db6acee37 Accepting request 1251454 from devel:languages:R:released
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/1251454
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/R-base?expand=0&rev=95
2025-03-10 17:04:04 +00:00
Detlef Steuer
05c1e0ef4f - CHANGES IN R 4.4.3:
INSTALLATION:
    * R can be installed using C23 (for example with -std=gnu23 or
      -std=gnu2x) with recent compilers including gcc 12-14, Apple
      clang 15-16, LLVM clang 17-20 and Intel icx 2024.2.
      It can be installed with the upcoming (at the time of writing)
      gcc 15, which defaults to C23.
  C-LEVEL FACILITIES:
    * The functions R_strtod and R_atof now allow hexadecimal constants
      without an exponent, for compatibility with their C99 versions
      (PR#18805).
  UTILITIES:
    * R CMD build and R CMD check now allow reference output for demo
      scripts (demo/<demo>.Rout.save files) to be shipped with the
      package, as proposed by Torsten Hothorn in PR#18816.
  BUG FIXES:
    * kappa(A, exact=TRUE) for singular A returns Inf more generally,
      fixing PR#18817 reported by Mikael Jagan.
    * Fixed URLs of the sun spots (sunspot.month etc) data sets and
      mention future changes due to recalibration.
    * The parser now accepts hexadecimal constants with a decimal point
      without an exponent (taken as p0) as documented in
      ?NumericConstants (PR#18819).
    * rbind() now works correctly when inputs include a raw vector and
      a logical, integer or double vector - previously the inclusion of
      the latter was garbled.
    * smooth.spline() checks validity of its arguments df.offset and
      penalty: it could segfault if they were NULL.
    * isGeneric(<primitive>, fdef=*, getName=TRUE) now also returns the
      name instead of just TRUE, fixing PR#18829 reported by Mikael

OBS-URL: https://build.opensuse.org/package/show/devel:languages:R:released/R-base?expand=0&rev=146
2025-03-01 21:18:33 +00:00
4 changed files with 100 additions and 16 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1115ef040746d3c89d14ef53bafd66b55824f29e54fb834cd492f9b3d6dc7f5e
size 27785644

3
R-4.4.3.tar.xz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9f8a96d3f932f929780bea6461c65b2e5425ab0dea417d5beffc715c90da8d6c
size 30431784

View File

@@ -1,3 +1,87 @@
-------------------------------------------------------------------
Sat Mar 1 21:17:00 UTC 2025 - Detlef Steuer <detlef.steuer@gmx.de>
- CHANGES IN R 4.4.3:
INSTALLATION:
* R can be installed using C23 (for example with -std=gnu23 or
-std=gnu2x) with recent compilers including gcc 12-14, Apple
clang 15-16, LLVM clang 17-20 and Intel icx 2024.2.
It can be installed with the upcoming (at the time of writing)
gcc 15, which defaults to C23.
C-LEVEL FACILITIES:
* The functions R_strtod and R_atof now allow hexadecimal constants
without an exponent, for compatibility with their C99 versions
(PR#18805).
UTILITIES:
* R CMD build and R CMD check now allow reference output for demo
scripts (demo/<demo>.Rout.save files) to be shipped with the
package, as proposed by Torsten Hothorn in PR#18816.
BUG FIXES:
* kappa(A, exact=TRUE) for singular A returns Inf more generally,
fixing PR#18817 reported by Mikael Jagan.
* Fixed URLs of the sun spots (sunspot.month etc) data sets and
mention future changes due to recalibration.
* The parser now accepts hexadecimal constants with a decimal point
without an exponent (taken as p0) as documented in
?NumericConstants (PR#18819).
* rbind() now works correctly when inputs include a raw vector and
a logical, integer or double vector - previously the inclusion of
the latter was garbled.
* smooth.spline() checks validity of its arguments df.offset and
penalty: it could segfault if they were NULL.
* isGeneric(<primitive>, fdef=*, getName=TRUE) now also returns the
name instead of just TRUE, fixing PR#18829 reported by Mikael
Jagan.
* isGeneric(fdef = print) now works, fixing PR#18369 thanks to
Mikael Jagan.
* sort(x, method = "qsort") made illegal accesses when x has length
0.
* dir.create() is protected against being passed an empty string as
its path argument.
* Silent integer overflow could occur in the 'exact' computations
for fisher.test() for unrealistic inputs: this is now an error.
* Some invalid C-level memory accesses are avoided for loglin(,
margin = NULL).
loglin(, param = TRUE) no longer gives an error in corner cases
such as a one-dimensional input.
* dev.capabilities() $ events now reports "Idle" if the device
provides it, fixing PR#18836, thanks to Trevor Davis.
* arima(.., seasonal = <wrong-vector>) correctly errors now, ditto
for arima0(), thanks to Norbert Kuder's report on the R-devel
list.
* binomial(<link>)$linkinv(eta) and .. $mu.eta(eta) now also work
for "logit" link when is.integer(eta).
* as.roman(x) now should work platform independently, also for,
e.g., x = "IIIII" (= V) and x = "IIIIII" (= VI).
* R CMD Rd2pdf works again on an installed package directory
containing LaTeX help (from option --latex), thanks to a report
by Peter Ruckdeschel.
-------------------------------------------------------------------
Thu Oct 31 11:09:11 UTC 2024 - Detlef Steuer <detlef.steuer@gmx.de>

View File

@@ -1,7 +1,7 @@
#
# spec file for package R-base
#
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2025 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -23,7 +23,7 @@
%define release 1
Name: R-base
Version: 4.4.2
Version: 4.4.3
Release: %release
%define Rversion %{version}
Source0: R-%{version}.tar.xz
@@ -1338,7 +1338,7 @@ This packages provides R-boot, one of the recommended packages.
%package -n R-class
Summary: Package provides recommended R-class
Version: 7.3.22
Version: 7.3.23
Release: %release
Requires: R-base
@@ -1370,7 +1370,7 @@ This packages provides R-class, one of the recommended packages.
%package -n R-cluster
Summary: Package provides recommended R-cluster
Version: 2.1.6
Version: 2.1.8
Release: %release
Requires: R-base
@@ -1425,7 +1425,7 @@ This packages provides R-codetools, one of the recommended packages.
%package -n R-foreign
Summary: Package provides recommended R-foreign
Version: 0.8.87
Version: 0.8.88
Release: %release
Requires: R-base
@@ -1455,7 +1455,7 @@ This packages provides R-foreign, one of the recommended packages.
%package -n R-KernSmooth
Summary: Package provides recommended R-KernSmooth
Version: 2.23.24
Version: 2.23.26
Release: %release
Requires: R-base
@@ -1518,7 +1518,7 @@ This packages provides R-lattice, one of the recommended packages.
%package -n R-MASS
Summary: Package provides recommended R-MASS
Version: 7.3.61
Version: 7.3.64
Release: %release
Requires: R-base
@@ -1551,7 +1551,7 @@ This packages provides R-MASS, one of the recommended packages.
%package -n R-Matrix
Summary: Package provides recommended R-Matrix
Version: 1.7.1
Version: 1.7.2
Release: %release
Requires: R-base
Obsoletes: R-Matrix-devel <= 1.3.2
@@ -1643,7 +1643,7 @@ This packages provides R-mgcv, one of the recommended packages.
%package -n R-nlme
Summary: Package provides recommended R-nlme
Version: 3.1.166
Version: 3.1.167
Release: %release
Requires: R-base
@@ -1675,7 +1675,7 @@ This packages provides R-nlme, one of the recommended packages.
%package -n R-nnet
Summary: Package provides recommended R-nnet
Version: 7.3.19
Version: 7.3.20
Release: %release
Requires: R-base
@@ -1706,7 +1706,7 @@ This packages provides R-nnet, one of the recommended packages.
%package -n R-rpart
Summary: Package provides recommended R-rpart
Version: 4.1.23
Version: 4.1.24
Release: %release
Requires: R-base
@@ -1738,7 +1738,7 @@ This packages provides R-rpart, one of the recommended packages.
%package -n R-spatial
Summary: Package provides recommended R-spatial
Version: 7.3.17
Version: 7.3.18
Release: %release
Requires: R-base
@@ -1771,7 +1771,7 @@ This packages provides R-spatial, one of the recommended packages.
%package -n R-survival
Summary: Package provides recommended R-survival
Version: 3.7.0
Version: 3.8.3
Release: %release
Requires: R-base