pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/math/R-igraph
Module Name: pkgsrc
Committed By: mef
Date: Tue May 3 00:24:20 UTC 2022
Modified Files:
pkgsrc/math/R-igraph: distinfo
pkgsrc/math/R-igraph/patches: patch-src_vendor_plfit_hzeta.c
Removed Files:
pkgsrc/math/R-igraph/patches: patch-configure
Log Message:
(math/R-igraph) correct the macro define for expm1l, tks tnn@
Ref:
http://mail-index.netbsd.org/pkgsrc-users/2022/05/02/msg035568.html
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 pkgsrc/math/R-igraph/distinfo
cvs rdiff -u -r1.1 -r0 pkgsrc/math/R-igraph/patches/patch-configure
cvs rdiff -u -r1.1 -r1.2 \
pkgsrc/math/R-igraph/patches/patch-src_vendor_plfit_hzeta.c
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-igraph/distinfo
diff -u pkgsrc/math/R-igraph/distinfo:1.5 pkgsrc/math/R-igraph/distinfo:1.6
--- pkgsrc/math/R-igraph/distinfo:1.5 Thu Apr 28 15:44:47 2022
+++ pkgsrc/math/R-igraph/distinfo Tue May 3 00:24:20 2022
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.5 2022/04/28 15:44:47 mef Exp $
+$NetBSD: distinfo,v 1.6 2022/05/03 00:24:20 mef Exp $
BLAKE2s (R/igraph_1.3.1.tar.gz) = 86dabeb6a382153941acd99b45fc295cfc84dda328de6acc9cbb17f8b20cd412
SHA512 (R/igraph_1.3.1.tar.gz) = 3b725ca47a117501a9902e64cdb29ed5fe59bfba3b056b98a1fb4035fdd9a5f9ea274b87053ebab558e206a9def09af46e957cff0280fe6093dd9638dd3d5f71
Size (R/igraph_1.3.1.tar.gz) = 2489895 bytes
-SHA1 (patch-src_vendor_plfit_hzeta.c) = b175e674d0c19f45ee2827e573d9afe8b20aa997
+SHA1 (patch-configure) = f3f6fc7c3c877f02b9b29c9758f1ac9edb51341c
+SHA1 (patch-src_vendor_plfit_hzeta.c) = 06c895e951bc491bfb26376a4000e4204811748f
Index: pkgsrc/math/R-igraph/patches/patch-src_vendor_plfit_hzeta.c
diff -u pkgsrc/math/R-igraph/patches/patch-src_vendor_plfit_hzeta.c:1.1 pkgsrc/math/R-igraph/patches/patch-src_vendor_plfit_hzeta.c:1.2
--- pkgsrc/math/R-igraph/patches/patch-src_vendor_plfit_hzeta.c:1.1 Thu Apr 28 15:44:47 2022
+++ pkgsrc/math/R-igraph/patches/patch-src_vendor_plfit_hzeta.c Tue May 3 00:24:20 2022
@@ -1,6 +1,7 @@
-$NetBSD: patch-src_vendor_plfit_hzeta.c,v 1.1 2022/04/28 15:44:47 mef Exp $
+$NetBSD: patch-src_vendor_plfit_hzeta.c,v 1.2 2022/05/03 00:24:20 mef Exp $
/* tweak the macro, not found in NetBSD as of 9.99.96 */
+/* corrected by tnn. thanks */
--- src/vendor/plfit/hzeta.c.orig 2022-04-20 01:23:25.000000000 +0900
+++ src/vendor/plfit/hzeta.c 2022-04-29 00:33:15.125029161 +0900
@@ -11,7 +12,7 @@ $NetBSD: patch-src_vendor_plfit_hzeta.c,
+/* tweak the macro, not found in NetBSD as of 9.99.96 */
+#ifdef __NetBSD__
+#define log1pl(x) logl(1.0f+(x))
-+#define expm1l(x) expl(x) - 1
++#define expm1l(x) (expl(x) - 1.0f)
+#endif
+
/* imported from gsl_sf_result.h */
Home |
Main Index |
Thread Index |
Old Index