Hello community,

here is the log from the commit of package openblas for openSUSE:Factory 
checked in at 2019-12-18 14:43:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/openblas (Old)
 and      /work/SRC/openSUSE:Factory/.openblas.new.4691 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "openblas"

Wed Dec 18 14:43:30 2019 rev:29 rq:756109 version:0.3.7

Changes:
--------
--- /work/SRC/openSUSE:Factory/openblas/openblas.changes        2019-09-30 
16:01:46.648836829 +0200
+++ /work/SRC/openSUSE:Factory/.openblas.new.4691/openblas.changes      
2019-12-18 14:46:36.169891536 +0100
@@ -1,0 +2,6 @@
+Sun Dec  8 09:03:24 UTC 2019 - Martin Liška <mli...@suse.cz>
+
+- Add gcc10-Support-two-digit-version-numbers-in-gcc-version-che.patch
+  in order to fix boo#1158727.
+
+-------------------------------------------------------------------

New:
----
  gcc10-Support-two-digit-version-numbers-in-gcc-version-che.patch

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

Other differences:
------------------
++++++ openblas.spec ++++++
--- /var/tmp/diff_new_pack.cec5tn/_old  2019-12-18 14:46:37.413892104 +0100
+++ /var/tmp/diff_new_pack.cec5tn/_new  2019-12-18 14:46:37.425892109 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package openblas
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -121,7 +121,7 @@
 Summary:        An optimized BLAS library based on GotoBLAS2
 License:        BSD-3-Clause
 Group:          Productivity/Scientific/Math
-Url:            http://www.openblas.net
+URL:            http://www.openblas.net
 Source0:        
https://github.com/xianyi/OpenBLAS/archive/v%{version}.tar.gz#/OpenBLAS-%{version}.tar.gz
 Source1:        README.SUSE
 Source2:        README.HPC.SUSE
@@ -129,6 +129,7 @@
 Patch1:         openblas-noexecstack.patch
 # PATCH port
 Patch3:         openblas-s390.patch
+Patch4:         
gcc10-Support-two-digit-version-numbers-in-gcc-version-che.patch
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
@@ -234,6 +235,7 @@
 %setup -q -n OpenBLAS-%{version}
 %patch1 -p1
 %patch3 -p1
+%patch4 -p1
 %ifarch s390
 sed -i -e "s@m32@m31@" Makefile.system
 %endif

++++++ gcc10-Support-two-digit-version-numbers-in-gcc-version-che.patch ++++++
>From b28db31429d9b3b6a57a182d79e63aafdd2843f1 Mon Sep 17 00:00:00 2001
From: Martin Kroeker <mar...@ruby.chemie.uni-freiburg.de>
Date: Fri, 6 Dec 2019 21:23:56 +0100
Subject: [PATCH] Support two-digit version numbers in gcc version check

fixes #2336 (non-recognition of gcc 10) with patch provided by JeffreyALaw.
---
 f_check | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/f_check b/f_check
index 993ad9a3..79b24e2d 100644
--- a/f_check
+++ b/f_check
@@ -71,7 +71,7 @@ if ($compiler eq "") {
 
        if ($data =~ /GNU/) {
 
-           $data =~ /(\d)\.(\d).(\d)/;
+           $data =~ /(\d+)\.(\d+).(\d+)/;
            $major = $1;
            $minor = $2;
 
-- 
2.24.0


Reply via email to