15
0
forked from pool/python-annoy

Accepting request 702925 from devel:languages:python

OBS-URL: https://build.opensuse.org/request/show/702925
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-annoy?expand=0&rev=5
This commit is contained in:
2019-05-15 10:34:21 +00:00
committed by Git OBS Bridge
5 changed files with 20 additions and 10 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:37ff7cbe21f76fd48479a866e94cff3d288520940d16f20ec8626460ad36b6e7
size 643171

3
annoy-1.15.2.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:75647dca4b56a48fc5de23c8f271d2087b94458ecc720757f637345e919babc4
size 636101

View File

@@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue May 14 17:27:38 UTC 2019 - svasudevan@suse.com
- Update to 1.15.2
* Fix #379 error handling in save()
* Fix compile issue in linux
* Fix popcount #366
* rebased reproduceable.patch
* Some more misc
-------------------------------------------------------------------
Sat Mar 16 17:00:08 UTC 2019 - Jan Engelhardt <jengelh@inai.de>

View File

@@ -12,18 +12,18 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-annoy
Version: 1.15.1
Version: 1.15.2
Release: 0
Summary: Approximation of Nearest Neighbors
License: Apache-2.0
Group: Development/Languages/Python
URL: https://github.com/spotify/annoy
Url: https://github.com/spotify/annoy
Source: https://files.pythonhosted.org/packages/source/a/annoy/annoy-%{version}.tar.gz
# PATCH-FIX-OPENSUSE boo#1100677
Patch0: reproducible.patch

View File

@@ -3,10 +3,10 @@ Date: 2018-07-10
https://bugzilla.opensuse.org/show_bug.cgi?id=1100677
Index: annoy-1.15.1/setup.py
Index: annoy-1.15.2/setup.py
===================================================================
--- annoy-1.15.1.orig/setup.py
+++ annoy-1.15.1/setup.py
--- annoy-1.15.2.orig/setup.py
+++ annoy-1.15.2/setup.py
@@ -36,26 +36,10 @@ with codecs.open('README.rst', encoding=
long_description = readme_note + fobj.read()
@@ -33,5 +33,5 @@ Index: annoy-1.15.1/setup.py
- extra_link_args += ['-stdlib=libc++', '-mmacosx-version-min=10.9']
-
setup(name='annoy',
version='1.15.1',
version='1.15.2',
description='Approximate Nearest Neighbors in C++/Python optimized for memory usage and loading/saving to disk.',