From 297c49df4b727f89404c317301bde74b7313c3a223511dec0317d38ccff71847 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= Date: Tue, 14 May 2019 17:57:07 +0000 Subject: [PATCH] Accepting request 702922 from home:SVasudevan:branches:devel:languages:python - 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 OBS-URL: https://build.opensuse.org/request/show/702922 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-annoy?expand=0&rev=9 --- annoy-1.15.1.tar.gz | 3 --- annoy-1.15.2.tar.gz | 3 +++ python-annoy.changes | 10 ++++++++++ python-annoy.spec | 6 +++--- reproducible.patch | 8 ++++---- 5 files changed, 20 insertions(+), 10 deletions(-) delete mode 100644 annoy-1.15.1.tar.gz create mode 100644 annoy-1.15.2.tar.gz diff --git a/annoy-1.15.1.tar.gz b/annoy-1.15.1.tar.gz deleted file mode 100644 index a52799e..0000000 --- a/annoy-1.15.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:37ff7cbe21f76fd48479a866e94cff3d288520940d16f20ec8626460ad36b6e7 -size 643171 diff --git a/annoy-1.15.2.tar.gz b/annoy-1.15.2.tar.gz new file mode 100644 index 0000000..1aad2bb --- /dev/null +++ b/annoy-1.15.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75647dca4b56a48fc5de23c8f271d2087b94458ecc720757f637345e919babc4 +size 636101 diff --git a/python-annoy.changes b/python-annoy.changes index 56b24f6..022b53a 100644 --- a/python-annoy.changes +++ b/python-annoy.changes @@ -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 diff --git a/python-annoy.spec b/python-annoy.spec index 6382fce..49de4ac 100644 --- a/python-annoy.spec +++ b/python-annoy.spec @@ -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 diff --git a/reproducible.patch b/reproducible.patch index a042e4f..6ef3542 100644 --- a/reproducible.patch +++ b/reproducible.patch @@ -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.',