pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/math/gnumeric112 gnumeric112: add two patches to fix c...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/928eac305fdd
branches:  trunk
changeset: 328014:928eac305fdd
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Tue Jan 15 12:05:56 2019 +0000

description:
gnumeric112: add two patches to fix clang build

diffstat:

 math/gnumeric112/distinfo                                            |   4 +-
 math/gnumeric112/patches/patch-plugins_python-loader_python-loader.c |  18 ++++++++++
 math/gnumeric112/patches/patch-src_mathfunc.c                        |  16 ++++++++
 3 files changed, 37 insertions(+), 1 deletions(-)

diffs (57 lines):

diff -r 16e6280b39f1 -r 928eac305fdd math/gnumeric112/distinfo
--- a/math/gnumeric112/distinfo Tue Jan 15 12:05:47 2019 +0000
+++ b/math/gnumeric112/distinfo Tue Jan 15 12:05:56 2019 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.24 2019/01/09 13:41:44 wiz Exp $
+$NetBSD: distinfo,v 1.25 2019/01/15 12:05:56 wiz Exp $
 
 SHA1 (gnumeric-1.12.44.tar.xz) = d6c632ace32d748bbb1f8e90a38a936d792d4bf9
 RMD160 (gnumeric-1.12.44.tar.xz) = f007ae63227026434ddd8db564606b9df3a80ce7
@@ -6,3 +6,5 @@
 Size (gnumeric-1.12.44.tar.xz) = 18010384 bytes
 SHA1 (patch-aa) = 87781e2955442d8edc803cd732b949017b0f4f27
 SHA1 (patch-ab) = f6fe7aed7ab857f1d8292fd99950bda7a9fb96fa
+SHA1 (patch-plugins_python-loader_python-loader.c) = 00417e5e46e3c5ccbae62ff4c2e8121d0d4f7b9f
+SHA1 (patch-src_mathfunc.c) = 76a1f67fa96f449400258ab679d1a05bcf771b3d
diff -r 16e6280b39f1 -r 928eac305fdd math/gnumeric112/patches/patch-plugins_python-loader_python-loader.c
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/math/gnumeric112/patches/patch-plugins_python-loader_python-loader.c      Tue Jan 15 12:05:56 2019 +0000
@@ -0,0 +1,18 @@
+$NetBSD: patch-plugins_python-loader_python-loader.c,v 1.1 2019/01/15 12:05:56 wiz Exp $
+
+python-loader.c:227:3: error: non-void function 'gplp_func_file_probe' should return a value [-Wreturn-type]
+https://gitlab.gnome.org/GNOME/gnumeric/issues/379
+
+--- plugins/python-loader/python-loader.c.orig 2018-11-24 17:05:48.000000000 +0000
++++ plugins/python-loader/python-loader.c
+@@ -224,7 +224,9 @@ gplp_func_file_probe (G_GNUC_UNUSED GOFi
+       g_return_val_if_fail (input != NULL, FALSE);
+       if (_PyGObject_API == NULL) {
+               pygobject_init (3, 0, 0);
+-              g_return_if_fail (_PyGObject_API != NULL);
++              if (_PyGObject_API == NULL) {
++                      return FALSE;
++              }
+       }
+ 
+       loader_data = g_object_get_data (G_OBJECT (service), "loader_data");
diff -r 16e6280b39f1 -r 928eac305fdd math/gnumeric112/patches/patch-src_mathfunc.c
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/math/gnumeric112/patches/patch-src_mathfunc.c     Tue Jan 15 12:05:56 2019 +0000
@@ -0,0 +1,16 @@
+$NetBSD: patch-src_mathfunc.c,v 1.1 2019/01/15 12:05:56 wiz Exp $
+
+mathfunc.c:5036:43: error: initializer element is not a compile-time constant
+https://gitlab.gnome.org/GNOME/gnumeric/issues/378
+
+--- src/mathfunc.c.orig        2018-11-19 01:34:12.000000000 +0000
++++ src/mathfunc.c
+@@ -5033,7 +5033,7 @@ gnm_lambert_w (gnm_float x, int k)
+ {
+       gnm_float w;
+       static const gnm_float one_over_e = 1 / M_Egnum;
+-      static const gnm_float sqrt_one_over_e = gnm_sqrt (1 / M_Egnum);
++      const gnm_float sqrt_one_over_e = gnm_sqrt (1 / M_Egnum);
+       static const gboolean debug = FALSE;
+       gnm_float wmin, wmax;
+       int i, imax = 20;



Home | Main Index | Thread Index | Old Index