Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package julia for openSUSE:Factory checked 
in at 2021-10-26 20:13:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/julia (Old)
 and      /work/SRC/openSUSE:Factory/.julia.new.1890 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "julia"

Tue Oct 26 20:13:41 2021 rev:48 rq:927334 version:1.6.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/julia/julia.changes      2021-06-13 
23:06:18.267686079 +0200
+++ /work/SRC/openSUSE:Factory/.julia.new.1890/julia.changes    2021-10-26 
20:14:18.646029362 +0200
@@ -1,0 +2,14 @@
+Sat Oct 23 13:50:11 UTC 2021 - Domenico Panella <[email protected]>
+
+- Version bump to 1.6.3.
+  * Bugfix release, see NEWS.md for details.
+- Add patch 'julia-fix-task-build-failure-gcc-11.patch' to fix 
+  task.c build failure using GCC 11.
+
+-------------------------------------------------------------------
+Wed Jul 28 15:11:29 UTC 2021 - kh Lai <[email protected]>
+
+- Version bump to 1.6.2.
+  * Bugfix release, see NEWS.md for details.
+
+-------------------------------------------------------------------

Old:
----
  julia-1.6.1-full.tar.gz

New:
----
  julia-1.6.3-full.tar.gz
  julia-fix-task-build-failure-gcc-11.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ julia.spec ++++++
--- /var/tmp/diff_new_pack.nXqwAe/_old  2021-10-26 20:14:20.666030429 +0200
+++ /var/tmp/diff_new_pack.nXqwAe/_new  2021-10-26 20:14:20.670030431 +0200
@@ -37,7 +37,7 @@
 %else
 %define compat_mode  0
 %endif
-Version:        1.6.1
+Version:        1.6.3
 Release:        0
 URL:            http://julialang.org/
 Source0:        
https://github.com/JuliaLang/julia/releases/download/v%{version}/julia-%{version}-full.tar.gz
@@ -49,6 +49,8 @@
 Patch1:         julia-fix_doc_build.patch
 # PATCH-FIX-UPSTREAM julia-fix-mbedtls-build-failure-gcc-11.patch 
[email protected] - Fix MBEDTLS building using GCC 11.
 Patch2:         julia-fix-mbedtls-build-failure-gcc-11.patch
+# PATCH-FIX-UPSTREAM julia-fix-task-build-failure-gcc-11.patch 
[email protected] - Fix task.c building using GCC 11.
+Patch3:         julia-fix-task-build-failure-gcc-11.patch
 BuildRequires:  arpack-ng-devel >= 3.3.0
 BuildRequires:  blas-devel
 BuildRequires:  cmake
@@ -182,6 +184,7 @@
 %patch0 -p1
 %patch1 -p1
 %patch2 -p1
+%patch3 -p1
 
 # remove .gitignore
 find . -name ".git*" -exec rm {} \;

++++++ julia-1.6.1-full.tar.gz -> julia-1.6.3-full.tar.gz ++++++
/work/SRC/openSUSE:Factory/julia/julia-1.6.1-full.tar.gz 
/work/SRC/openSUSE:Factory/.julia.new.1890/julia-1.6.3-full.tar.gz differ: char 
5, line 1

++++++ julia-fix-mbedtls-build-failure-gcc-11.patch ++++++
--- /var/tmp/diff_new_pack.nXqwAe/_old  2021-10-26 20:14:20.782030491 +0200
+++ /var/tmp/diff_new_pack.nXqwAe/_new  2021-10-26 20:14:20.782030491 +0200
@@ -1,7 +1,7 @@
-Index: julia-1.6.1/deps/mbedtls.mk
+Index: julia-1.6.2/deps/mbedtls.mk
 ===================================================================
---- julia-1.6.1.orig/deps/mbedtls.mk
-+++ julia-1.6.1/deps/mbedtls.mk
+--- julia-1.6.2.orig/deps/mbedtls.mk
++++ julia-1.6.2/deps/mbedtls.mk
 @@ -5,7 +5,9 @@ MBEDTLS_SRC = mbedtls-$(MBEDTLS_VER)
  MBEDTLS_URL = 
https://github.com/ARMmbed/mbedtls/archive/v$(MBEDTLS_VER).tar.gz
  
@@ -23,10 +23,10 @@
        echo 1 > $@
  
  $(BUILDDIR)/$(MBEDTLS_SRC)/build-configured: \
-Index: julia-1.6.1/deps/patches/mbedtls-fix-build-failure-on-gcc-11.patch
+Index: julia-1.6.2/deps/patches/mbedtls-fix-build-failure-on-gcc-11.patch
 ===================================================================
 --- /dev/null
-+++ julia-1.6.1/deps/patches/mbedtls-fix-build-failure-on-gcc-11.patch
++++ julia-1.6.2/deps/patches/mbedtls-fix-build-failure-on-gcc-11.patch
 @@ -0,0 +1,321 @@
 +From 2630f6720df59a2084220b1c06f4730a0a330ea0 Mon Sep 17 00:00:00 2001
 +From: Rodrigo Dias Correa <[email protected]>

++++++ julia-fix-task-build-failure-gcc-11.patch ++++++
--- julia-1.6.3/src/task.c      2021-09-23 19:34:58.000000000 +0200
+++ julia-1.6.3/src/task.c      2021-10-22 09:54:20.765870391 +0200
@@ -75,8 +75,8 @@
 
 // empirically, jl_finish_task needs about 64k stack space to infer/run
 // and additionally, gc-stack reserves 64k for the guard pages
-#if defined(MINSIGSTKSZ) && MINSIGSTKSZ > 131072
-#define MINSTKSZ MINSIGSTKSZ
+#if defined(MINSIGSTKSZ)
+#define MINSTKSZ (MINSIGSTKSZ > 131072 ? MINSIGSTKSZ : 131072)
 #else
 #define MINSTKSZ 131072
 #endif

Reply via email to