pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/math/R-forecast
Module Name: pkgsrc
Committed By: mef
Date: Mon Jun 15 14:43:47 UTC 2026
Modified Files:
pkgsrc/math/R-forecast: Makefile distinfo
Added Files:
pkgsrc/math/R-forecast/patches: patch-src_Makevars
Log Message:
(math/R-forecast) Updated 8.23.0 to 9.0.2, Fix build against R 4.6.0
# forecast 9.0.2
* `checkresiduals()` correctly handles the `test` argument again (#1100)
* `mstl()` now correctly accesses the `lambda` attribute on mstl matrix objects (#1097)
# forecast 9.0.1
* Performance improvements for ARFIMA model search
* `forecast.mlm()` now finds `newdata` when passed as an argument from another function (#880)
* `residuals.tslm()` now allows `type = "working"` as per CRAN request
* Code modernization and performance improvements
# forecast 9.0.0
* `ets()` now allows missing values in the time series (#952)
* Added `mean_model()` and `forecast.mean_model()`
* Added `rw_model()` and `forecast.rw_model()` (m-muecke, #969)
* Added `spline_model()` and `forecast.spline_model()` (#1013)
* Added `theta_model()` and `forecast.theta_model()` (#1014)
* Added `croston_model()` and `forecast.croston_model()` (#1015)
* Added simulated and bootstrapped prediction intervals to more models (#1040)
* Added parallelization for `nnetar()` (m-muecke, #346)
* More consistent handling of biasadj across models
* `accuracy()` rewritten to use S3 methods for models and remove `accuracy.default()` (#912)
* Bug fixes and performance improvements
* Documentation improvements
# forecast 8.24.0
* Documentation improvements
* Bug fixes
To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 pkgsrc/math/R-forecast/Makefile \
pkgsrc/math/R-forecast/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/math/R-forecast/patches/patch-src_Makevars
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/math/R-forecast/Makefile
diff -u pkgsrc/math/R-forecast/Makefile:1.8 pkgsrc/math/R-forecast/Makefile:1.9
--- pkgsrc/math/R-forecast/Makefile:1.8 Sat Nov 2 22:00:23 2024
+++ pkgsrc/math/R-forecast/Makefile Mon Jun 15 14:43:47 2026
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.8 2024/11/02 22:00:23 mef Exp $
+# $NetBSD: Makefile,v 1.9 2026/06/15 14:43:47 mef Exp $
R_PKGNAME= forecast
-R_PKGVER= 8.23.0
+R_PKGVER= 9.0.2
MAINTAINER= minskim%NetBSD.org@localhost
COMMENT= Forecasting functions for time series and linear models
@@ -25,6 +25,19 @@ TEST_DEPENDS+= R-rmarkdown-[0-9]*:../../
TEST_DEPENDS+= R-testthat-[0-9]*:../../devel/R-testthat
USE_LANGUAGES= c c++ fortran
+GCC_REQD+= 8
+
+.include "../../mk/bsd.prefs.mk"
+
+SUBST_CLASSES+= pkglibs
+SUBST_STAGE.pkglibs= pre-configure
+SUBST_FILES.pkglibs= src/Makevars
+SUBST_MESSAGE.pkglibs= Add -lexecinfo for *BSD
+.if ${OPSYS} != SunOS && ${OPSYS} != Linux
+SUBST_SED.pkglibs= -e s,@@PKG_LIBS@@,PKG_LIBS+=-lexecinfo,
+.else
+SUBST_SED.pkglibs= -e s,@@PKG_LIBS@@,,
+.endif
.include "../../math/R/Makefile.extension"
.include "../../devel/R-Rcpp/buildlink3.mk"
Index: pkgsrc/math/R-forecast/distinfo
diff -u pkgsrc/math/R-forecast/distinfo:1.8 pkgsrc/math/R-forecast/distinfo:1.9
--- pkgsrc/math/R-forecast/distinfo:1.8 Sat Nov 2 22:00:23 2024
+++ pkgsrc/math/R-forecast/distinfo Mon Jun 15 14:43:47 2026
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.8 2024/11/02 22:00:23 mef Exp $
+$NetBSD: distinfo,v 1.9 2026/06/15 14:43:47 mef Exp $
-BLAKE2s (R/forecast_8.23.0.tar.gz) = 9a89aa2a51b61576edf601e9f84b872b1c7882536caa50fcc7dc9018112d5e57
-SHA512 (R/forecast_8.23.0.tar.gz) = 0e1057d46436c8f377b2c865b7d41e0baece353968b495436163245a4e22348dcf8c6b611fb3baf677d5098de1db036247d2cfb8f4629f499cbf4fd037dc30e6
-Size (R/forecast_8.23.0.tar.gz) = 590865 bytes
+BLAKE2s (R/forecast_9.0.2.tar.gz) = 527bc06a6cb67531e27630aedf7ac4801f8a30f6e4f6d37e3915d73e577c5487
+SHA512 (R/forecast_9.0.2.tar.gz) = d0b93fa3c7a35e482a2545dfda0fcb1316997f78e06f8fa7c62e840fc7bec59f1351cccb00f274553a5e92bf8b5efd4db1791b134b94c31bf7e19ad0efcc9493
+Size (R/forecast_9.0.2.tar.gz) = 590857 bytes
+SHA1 (patch-src_Makevars) = dc7b21cf1f605050c2f7ee1ca87e6bc0d2ed1114
Added files:
Index: pkgsrc/math/R-forecast/patches/patch-src_Makevars
diff -u /dev/null pkgsrc/math/R-forecast/patches/patch-src_Makevars:1.1
--- /dev/null Mon Jun 15 14:43:47 2026
+++ pkgsrc/math/R-forecast/patches/patch-src_Makevars Mon Jun 15 14:43:47 2026
@@ -0,0 +1,10 @@
+$NetBSD: patch-src_Makevars,v 1.1 2026/06/15 14:43:47 mef Exp $
+
+Add -lexecinfo for *BSD, see SUBST lines at Makefile
+
+--- src/Makevars.orig 2026-01-21 17:46:26.000000000 +0900
++++ src/Makevars 2026-06-15 23:33:03.934350855 +0900
+@@ -1,2 +1,3 @@
+ PKG_CXXFLAGS = $(SHLIB_OPENMP_CXXFLAGS) -DR_NO_REMAP
+ PKG_LIBS = $(SHLIB_OPENMP_CXXFLAGS) $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS)
++@@PKG_LIBS@@
Home |
Main Index |
Thread Index |
Old Index