15
0
forked from pool/python-annoy

Accepting request 622023 from devel:languages:python

OBS-URL: https://build.opensuse.org/request/show/622023
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-annoy?expand=0&rev=2
This commit is contained in:
2018-07-13 08:20:39 +00:00
committed by Git OBS Bridge
3 changed files with 34 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Jul 10 05:06:28 UTC 2018 - bwiedemann@suse.com
- Add reproducible.patch to not depend on build system CPU (boo#1100677)
-------------------------------------------------------------------
Wed May 9 18:42:30 UTC 2018 - toddrme2178@gmail.com

View File

@@ -25,6 +25,8 @@ Summary: Approximate Nearest Neighbors
Url: https://github.com/spotify/annoy
Group: Development/Languages/Python
Source: https://files.pythonhosted.org/packages/source/a/annoy/annoy-%{version}.tar.gz
# PATCH-FIX-OPENSUSE boo#1100677
Patch0: reproducible.patch
BuildRequires: %{python_module devel}
BuildRequires: %{python_module nose >= 1.0}
BuildRequires: %{python_module setuptools}
@@ -43,6 +45,7 @@ share the same data.
%prep
%setup -q -n annoy-%{version}
%patch0 -p1
%build
export CFLAGS="%{optflags}"

26
reproducible.patch Normal file
View File

@@ -0,0 +1,26 @@
Author: Bernhard M. Wiedemann <bwiedemann suse de>
Date: 2018-07-10
https://bugzilla.opensuse.org/show_bug.cgi?id=1100677
Index: annoy-1.12.0/setup.py
===================================================================
--- annoy-1.12.0.orig/setup.py
+++ annoy-1.12.0/setup.py
@@ -42,15 +42,12 @@ else:
# Not all CPUs have march as a tuning parameter
import platform
-cputune = ['-march=native',]
-if platform.machine() == "ppc64le":
- cputune = ['-mcpu=native',]
if os.name != 'nt':
compile_args = ['-O3', '-ffast-math', '-fno-associative-math']
else:
compile_args = []
- cputune = []
+cputune = []
setup(name='annoy',
version='1.12.0',