Hello community,

here is the log from the commit of package python-scikit-build for 
openSUSE:Factory checked in at 2020-04-08 19:55:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-scikit-build (Old)
 and      /work/SRC/openSUSE:Factory/.python-scikit-build.new.3248 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-scikit-build"

Wed Apr  8 19:55:40 2020 rev:3 rq:791978 version:0.10.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-scikit-build/python-scikit-build.changes  
2020-03-10 12:34:08.476853078 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-scikit-build.new.3248/python-scikit-build.changes
        2020-04-08 19:55:40.941079505 +0200
@@ -1,0 +2,6 @@
+Tue Apr  7 12:04:36 UTC 2020 - Benjamin Greiner <[email protected]>
+
+- Add scikit-build-pr450-findf2py.patch to find the flavor specific
+  f2py
+
+-------------------------------------------------------------------

New:
----
  scikit-build-pr450-findf2py.patch

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

Other differences:
------------------
++++++ python-scikit-build.spec ++++++
--- /var/tmp/diff_new_pack.Tnaecq/_old  2020-04-08 19:55:41.597079984 +0200
+++ /var/tmp/diff_new_pack.Tnaecq/_new  2020-04-08 19:55:41.597079984 +0200
@@ -25,6 +25,7 @@
 URL:            https://github.com/scikit-build/scikit-build
 Source:         
https://files.pythonhosted.org/packages/source/s/scikit-build/scikit-build-%{version}.tar.gz
 Patch0:         python38.patch
+Patch1:         scikit-build-pr450-findf2py.patch
 BuildRequires:  %{python_module devel}
 BuildRequires:  %{python_module setuptools >= 28.0.0}
 BuildRequires:  fdupes
@@ -64,6 +65,7 @@
 %prep
 %setup -q -n scikit-build-%{version}
 %patch0 -p1
+%patch1 -p1
 
 %build
 %python_build

++++++ scikit-build-pr450-findf2py.patch ++++++
>From 3ab8fb174a13df1f7fe4c341518a51e7ed09b46a Mon Sep 17 00:00:00 2001
From: Jean-Christophe Fillion-Robin <[email protected]>
Date: Tue, 24 Sep 2019 14:54:40 -0400
Subject: [PATCH] FindF2PY: Ensure python version specific of f2py executable
 is looked up first

See #449

Co-authored-by: Ben <[email protected]>
---
 (CHANGES.rst                            | 6 +++++-) removed from package
 skbuild/resources/cmake/FindF2PY.cmake | 2 +-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/skbuild/resources/cmake/FindF2PY.cmake 
b/skbuild/resources/cmake/FindF2PY.cmake
index 0ab0fdbe..22d669c2 100644
--- a/skbuild/resources/cmake/FindF2PY.cmake
+++ b/skbuild/resources/cmake/FindF2PY.cmake
@@ -66,7 +66,7 @@
 #   case, CMake is not used to find the compiler and configure the associated 
build system.
 #
 
-find_program(F2PY_EXECUTABLE NAMES f2py f2py${PYTHON_VERSION_MAJOR})
+find_program(F2PY_EXECUTABLE NAMES f2py${PYTHON_VERSION_MAJOR} f2py)
 
 if(F2PY_EXECUTABLE)
   # extract the version string

Reply via email to