commit python3-blosc for openSUSE:Factory

2017-02-03 Thread root
Hello community,

here is the log from the commit of package python3-blosc for openSUSE:Factory 
checked in at 2017-01-31 12:46:04

Comparing /work/SRC/openSUSE:Factory/python3-blosc (Old)
 and  /work/SRC/openSUSE:Factory/.python3-blosc.new (New)


Package is "python3-blosc"

Changes:

--- /work/SRC/openSUSE:Factory/python3-blosc/python3-blosc.changes  
2016-09-12 13:27:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-blosc.new/python3-blosc.changes 
2017-02-03 18:58:51.561219948 +0100
@@ -1,0 +2,6 @@
+Fri Jan  6 08:33:52 UTC 2017 - norm...@linux.vnet.ibm.com
+
+- new blosc-setup.py-gracefuly-handle-cpuinfo-failure.patch
+  to ignore cpuinfo failure (at least required for PowerPC)
+
+---

New:

  blosc-setup.py-gracefuly-handle-cpuinfo-failure.patch



Other differences:
--
++ python3-blosc.spec ++
--- /var/tmp/diff_new_pack.Nx5wXi/_old  2017-02-03 18:58:51.929168270 +0100
+++ /var/tmp/diff_new_pack.Nx5wXi/_new  2017-02-03 18:58:51.933167708 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python3-blosc
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -32,6 +32,7 @@
 Requires:   blosc-devel
 Requires:   python3-numpy
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Patch1: blosc-setup.py-gracefuly-handle-cpuinfo-failure.patch
 
 %description
 Blosc is a high performance compressor optimized for binary data in
@@ -39,6 +40,7 @@
 
 %prep
 %setup -q -n blosc-%{version}
+%patch1 -p1
 
 %build
 CFLAGS="%{optflags}" python3 setup.py build_ext --inplace --blosc=%{_prefix}

++ blosc-setup.py-gracefuly-handle-cpuinfo-failure.patch ++
From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= 
Date: Fri, 23 Sep 2016 21:25:19 -0400
Subject: [PATCH] setup.py: gracefuly handle cpuinfo failure

When comping on aarch64, setup.py fails with:
Exception: py-cpuinfo currently only works on X86 and some ARM CPUs.
Assume that the CPU does not support SSE2 or AVX in importing cpuinfo fails
and continue.
---
 setup.py |   13 +
 1 file changed, 9 insertions(+), 4 deletions(-)

Index: python-blosc-1.4.1/setup.py
===
--- python-blosc-1.4.1.orig/setup.py
+++ python-blosc-1.4.1/setup.py
@@ -19,7 +19,13 @@ import sys
 from setuptools import Extension
 from setuptools import setup
 from glob import glob
-import cpuinfo
+try:
+import cpuinfo
+cpu_info = cpuinfo.get_cpu_info()
+cpu_flags = cpu_info['flags']
+except Exception as e:
+print('cpuinfo failed, assuming no CPU features:', e)
+cpu_flags = []
 
 ### Check versions ##
 
@@ -94,9 +100,8 @@ else:
 def_macros += [('HAVE_LZ4', 1), ('HAVE_SNAPPY', 1), ('HAVE_ZLIB', 1), 
('HAVE_ZSTD', 1)]
 
 # Guess SSE2 or AVX2 capabilities
-cpu_info = cpuinfo.get_cpu_info()
 # SSE2
-if 'sse2' in cpu_info['flags']:
+if 'sse2' in cpu_flags:
 print('SSE2 detected')
 CFLAGS.append('-DSHUFFLE_SSE2_ENABLED')
 sources += [f for f in glob('c-blosc/blosc/*.c') if 'sse2' in f]
@@ -105,7 +110,7 @@ else:
 elif os.name == 'nt':
 def_macros += [('__SSE2__', 1)]
 # AVX2
-if 'avx2' in cpu_info['flags']:
+if 'avx2' in cpu_flags:
 print('AVX2 detected')
 CFLAGS.append('-DSHUFFLE_AVX2_ENABLED')
 sources += [f for f in glob('c-blosc/blosc/*.c') if 'avx2' in f]



commit python3-blosc for openSUSE:Factory

2016-09-12 Thread h_root
Hello community,

here is the log from the commit of package python3-blosc for openSUSE:Factory 
checked in at 2016-09-12 13:27:18

Comparing /work/SRC/openSUSE:Factory/python3-blosc (Old)
 and  /work/SRC/openSUSE:Factory/.python3-blosc.new (New)


Package is "python3-blosc"

Changes:

--- /work/SRC/openSUSE:Factory/python3-blosc/python3-blosc.changes  
2016-07-28 23:46:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-blosc.new/python3-blosc.changes 
2016-09-12 13:27:24.0 +0200
@@ -1,0 +2,18 @@
+Sat Sep 10 14:00:02 UTC 2016 - a...@gmx.de
+
+- update to version 1.4.4:
+  * Updated to C-Blosc 1.11.1. Fixes #115.
+
+- changes from version 1.4.3:
+  * Internal C-Blosc sources updated to 1.11.0. Among other things,
+this updates the internal Zstd codec to version 1.0.0 (i.e. it is
+officially apt for production usage!).
+
+- skipped version 1.4.2?
+
+- changes from version 1.4.1:
+  * Internal C-Blosc sources updated to 1.10.1. This fixes an
+outstanding issue with the clang compiler. For details, see:
+https://github.com/Blosc/bloscpack/issues/50.
+
+---

Old:

  blosc-1.4.0.tar.gz

New:

  blosc-1.4.4.tar.gz



Other differences:
--
++ python3-blosc.spec ++
--- /var/tmp/diff_new_pack.X7mMkW/_old  2016-09-12 13:27:25.0 +0200
+++ /var/tmp/diff_new_pack.X7mMkW/_new  2016-09-12 13:27:25.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-blosc
-Version:1.4.0
+Version:1.4.4
 Release:0
 Summary:Blosc data compressor for Python
 License:MIT

++ blosc-1.4.0.tar.gz -> blosc-1.4.4.tar.gz ++
 83989 lines of diff (skipped)




commit python3-blosc for openSUSE:Factory

2016-07-28 Thread h_root
Hello community,

here is the log from the commit of package python3-blosc for openSUSE:Factory 
checked in at 2016-07-28 23:46:14

Comparing /work/SRC/openSUSE:Factory/python3-blosc (Old)
 and  /work/SRC/openSUSE:Factory/.python3-blosc.new (New)


Package is "python3-blosc"

Changes:

--- /work/SRC/openSUSE:Factory/python3-blosc/python3-blosc.changes  
2016-07-18 21:24:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-blosc.new/python3-blosc.changes 
2016-07-28 23:46:16.0 +0200
@@ -1,0 +2,8 @@
+Fri Jul 22 15:42:49 UTC 2016 - a...@gmx.de
+
+- update to version 1.4.0:
+  * Internal C-Blosc sources updated to 1.10.0.
+  * Benchmarks updated for a Skylake processor (Xeon E3-1245 v5 @
+3.50GHz).
+
+---

Old:

  blosc-1.3.3.tar.gz

New:

  blosc-1.4.0.tar.gz



Other differences:
--
++ python3-blosc.spec ++
--- /var/tmp/diff_new_pack.O3UjoD/_old  2016-07-28 23:46:17.0 +0200
+++ /var/tmp/diff_new_pack.O3UjoD/_new  2016-07-28 23:46:17.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-blosc
-Version:1.3.3
+Version:1.4.0
 Release:0
 Summary:Blosc data compressor for Python
 License:MIT

++ blosc-1.3.3.tar.gz -> blosc-1.4.0.tar.gz ++
 40448 lines of diff (skipped)




commit python3-blosc for openSUSE:Factory

2016-07-18 Thread h_root
Hello community,

here is the log from the commit of package python3-blosc for openSUSE:Factory 
checked in at 2016-07-18 21:23:51

Comparing /work/SRC/openSUSE:Factory/python3-blosc (Old)
 and  /work/SRC/openSUSE:Factory/.python3-blosc.new (New)


Package is "python3-blosc"

Changes:

--- /work/SRC/openSUSE:Factory/python3-blosc/python3-blosc.changes  
2016-05-25 21:23:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-blosc.new/python3-blosc.changes 
2016-07-18 21:24:41.0 +0200
@@ -1,0 +2,11 @@
+Wed Jul 13 15:30:09 UTC 2016 - a...@gmx.de
+
+- update to version 1.3.3:
+  * Internal C-Blosc sources updated to 1.9.3.
+  * C-Blosc do not segfaults anymore, so -O1 flag on Linux is not the
+default anymore.
+  * SSE2 and AVX2 are now auto-discovered so the internal C-Blosc will
+be compiled with maximum optimization on processors supporting
+them.
+
+---
@@ -7 +17,0 @@
-

Old:

  blosc-1.3.2.tar.gz

New:

  blosc-1.3.3.tar.gz



Other differences:
--
++ python3-blosc.spec ++
--- /var/tmp/diff_new_pack.3Giwy1/_old  2016-07-18 21:24:42.0 +0200
+++ /var/tmp/diff_new_pack.3Giwy1/_new  2016-07-18 21:24:42.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-blosc
-Version:1.3.2
+Version:1.3.3
 Release:0
 Summary:Blosc data compressor for Python
 License:MIT

++ blosc-1.3.2.tar.gz -> blosc-1.3.3.tar.gz ++
 3306 lines of diff (skipped)




commit python3-blosc for openSUSE:Factory

2016-05-25 Thread h_root
Hello community,

here is the log from the commit of package python3-blosc for openSUSE:Factory 
checked in at 2016-05-25 21:23:27

Comparing /work/SRC/openSUSE:Factory/python3-blosc (Old)
 and  /work/SRC/openSUSE:Factory/.python3-blosc.new (New)


Package is "python3-blosc"

Changes:

--- /work/SRC/openSUSE:Factory/python3-blosc/python3-blosc.changes  
2016-04-11 10:26:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-blosc.new/python3-blosc.changes 
2016-05-25 21:23:43.0 +0200
@@ -1,0 +2,8 @@
+Sun May  8 06:58:47 UTC 2016 - a...@gmx.de
+
+- specfile:
+  * changed to https for source url
+  * updated source url to files.pythonhosted.org
+
+
+---



Other differences:
--
++ python3-blosc.spec ++
--- /var/tmp/diff_new_pack.jMUI74/_old  2016-05-25 21:23:45.0 +0200
+++ /var/tmp/diff_new_pack.jMUI74/_new  2016-05-25 21:23:45.0 +0200
@@ -23,7 +23,7 @@
 License:MIT
 Group:  Development/Languages/Python
 Url:http://www.blosc.org/
-Source: 
http://pypi.python.org/packages/source/b/blosc/blosc-%{version}.tar.gz
+Source: 
https://files.pythonhosted.org/packages/source/b/blosc/blosc-%{version}.tar.gz
 BuildRequires:  blosc-devel
 BuildRequires:  gcc-c++
 BuildRequires:  python3-devel




commit python3-blosc for openSUSE:Factory

2016-04-11 Thread h_root
Hello community,

here is the log from the commit of package python3-blosc for openSUSE:Factory 
checked in at 2016-04-11 09:14:39

Comparing /work/SRC/openSUSE:Factory/python3-blosc (Old)
 and  /work/SRC/openSUSE:Factory/.python3-blosc.new (New)


Package is "python3-blosc"

Changes:

--- /work/SRC/openSUSE:Factory/python3-blosc/python3-blosc.changes  
2016-04-03 23:07:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-blosc.new/python3-blosc.changes 
2016-04-11 10:26:55.0 +0200
@@ -1,0 +2,22 @@
+Sat Apr  9 16:17:37 UTC 2016 - a...@gmx.de
+
+- update to version 1.3.2:
+  * Fixed the version of the include C-Blosc library (should be 1.8.1
+not 1.8.2.dev).
+
+- changes from version 1.3.1:
+  * Use the -O1 flag for compiling the included C-Blosc sources on
+Linux. This represents slower performance, but fixes the nasty
+issue #110. Also, it prints a warning for using an external
+C-Blosc library.
+  * Internal C-Blosc version bumped to 1.8.1 for better compatibility
+with gcc 5.3.1 in forthcoming Ubuntu Xenial.
+  * Added a protection to avoid using BITSHUFLE with C-Blosc < 1.8.0.
+  * Restored old symbols for backward compatibility with pre 1.3.0:
++ BLOSC_VERSION_STRING BLOSC_VERSION_DATE BLOSC_MAX_BUFFERSIZE
+  BLOSC_MAX_THREADS BLOSC_MAX_TYPESIZE
+However, these are considered deprecated and should be replaced by
+libraries using python-blosc by the ones without the BLOSC_
+prefix.
+
+---

Old:

  blosc-1.3.0.tar.gz

New:

  blosc-1.3.2.tar.gz



Other differences:
--
++ python3-blosc.spec ++
--- /var/tmp/diff_new_pack.HTWdH9/_old  2016-04-11 10:26:55.0 +0200
+++ /var/tmp/diff_new_pack.HTWdH9/_new  2016-04-11 10:26:55.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-blosc
-Version:1.3.0
+Version:1.3.2
 Release:0
 Summary:Blosc data compressor for Python
 License:MIT

++ blosc-1.3.0.tar.gz -> blosc-1.3.2.tar.gz ++
 2396 lines of diff (skipped)




commit python3-blosc for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package python3-blosc for openSUSE:Factory 
checked in at 2016-04-03 23:07:13

Comparing /work/SRC/openSUSE:Factory/python3-blosc (Old)
 and  /work/SRC/openSUSE:Factory/.python3-blosc.new (New)


Package is "python3-blosc"

Changes:

--- /work/SRC/openSUSE:Factory/python3-blosc/python3-blosc.changes  
2015-11-10 10:01:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-blosc.new/python3-blosc.changes 
2016-04-03 23:07:31.0 +0200
@@ -1,0 +2,29 @@
+Sat Apr  2 03:34:46 UTC 2016 - a...@gmx.de
+
+- specfile:
+  * update copyright year
+
+- update to version 1.3.0:
+  * Internal C-Blosc version bumped to 1.8.0. As consequence, support
+for BITSHUFFLE is here. For activating it, just pass
+blosc.BITSHUFFLE to the shuffle parameter of compression
+functions.
+  * Added a new as_bytearray=False parameter to the decompress()
+function so that a mutable bytearray will be returned instead of a
+bytes one (inmutable). PR #107. Thanks to Joe Jevnik.
+  * The '__all__' variable has been removed from the module. I
+consider this good practice to avoid things like "from blosc
+import *".
+  * For consistency, the next symbols have been renamed:
++ BLOSC_VERSION_STRING -> VERSION_STRING, BLOSC_VERSION_DATE ->
+  VERSION_DATE, BLOSC_MAX_BUFFERSIZE -> MAX_BUFFERSIZE,
+  BLOSC_MAX_THREADS -> MAX_THREADS, BLOSC_MAX_TYPESIZE ->
+  MAX_TYPESIZE,
+  * The typesize parameter is set by default to 8 in compression
+functions. This usually behaves well for 4-bytes typesizes
+too. Nevertheless, it is advised to use the actual typesize.
+  * The maximum number of threads to use by default is set to 4 (less
+if less cores are detected). Feel free to use more or less threads
+depending on the resources you want to use for compression.
+
+---

Old:

  blosc-1.2.8.tar.gz

New:

  blosc-1.3.0.tar.gz



Other differences:
--
++ python3-blosc.spec ++
--- /var/tmp/diff_new_pack.kHt8FW/_old  2016-04-03 23:07:32.0 +0200
+++ /var/tmp/diff_new_pack.kHt8FW/_new  2016-04-03 23:07:32.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python3-blosc
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   python3-blosc
-Version:1.2.8
+Version:1.3.0
 Release:0
 Summary:Blosc data compressor for Python
 License:MIT
@@ -27,8 +27,8 @@
 BuildRequires:  blosc-devel
 BuildRequires:  gcc-c++
 BuildRequires:  python3-devel
-BuildRequires:  python3-setuptools
 BuildRequires:  python3-numpy-devel
+BuildRequires:  python3-setuptools
 Requires:   blosc-devel
 Requires:   python3-numpy
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ blosc-1.2.8.tar.gz -> blosc-1.3.0.tar.gz ++
 9366 lines of diff (skipped)




commit python3-blosc for openSUSE:Factory

2015-11-10 Thread h_root
Hello community,

here is the log from the commit of package python3-blosc for openSUSE:Factory 
checked in at 2015-11-10 10:01:54

Comparing /work/SRC/openSUSE:Factory/python3-blosc (Old)
 and  /work/SRC/openSUSE:Factory/.python3-blosc.new (New)


Package is "python3-blosc"

Changes:

--- /work/SRC/openSUSE:Factory/python3-blosc/python3-blosc.changes  
2015-05-19 23:50:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-blosc.new/python3-blosc.changes 
2015-11-10 10:01:56.0 +0100
@@ -1,0 +2,14 @@
+Wed Oct 21 13:10:50 UTC 2015 - toddrme2...@gmail.com
+
+- Update to version 1.2.8
+  * Updated to c-blosc v1.7.0. However, the new bitshuffle filter
+has not been made public because recent reports indicate that
+it seems too green for production.
+  * Support bytes-like objects that support the buffer interface 
+as input to compress and decompress. On Python 2.x this
+includes unicode, on Python 3.x it doesn't. (#80 #94 @esc)
+  * Fix a memory leak in decompress. Added tests to catch memory
+leaks. (#102 #103 #104 @sdvillal)
+  * Various miscellaneous fixes and improvements.
+
+---

Old:

  blosc-1.2.7.tar.gz

New:

  blosc-1.2.8.tar.gz



Other differences:
--
++ python3-blosc.spec ++
--- /var/tmp/diff_new_pack.ORNT3u/_old  2015-11-10 10:01:57.0 +0100
+++ /var/tmp/diff_new_pack.ORNT3u/_new  2015-11-10 10:01:57.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python3-blosc
-Version:1.2.7
+Version:1.2.8
 Release:0
 Summary:Blosc data compressor for Python
 License:MIT
@@ -27,8 +27,10 @@
 BuildRequires:  blosc-devel
 BuildRequires:  gcc-c++
 BuildRequires:  python3-devel
-BuildRequires:  python3-numpy
+BuildRequires:  python3-setuptools
+BuildRequires:  python3-numpy-devel
 Requires:   blosc-devel
+Requires:   python3-numpy
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description

++ blosc-1.2.7.tar.gz -> blosc-1.2.8.tar.gz ++
 11726 lines of diff (skipped)




commit python3-blosc for openSUSE:Factory

2015-05-19 Thread h_root
Hello community,

here is the log from the commit of package python3-blosc for openSUSE:Factory 
checked in at 2015-05-19 23:50:16

Comparing /work/SRC/openSUSE:Factory/python3-blosc (Old)
 and  /work/SRC/openSUSE:Factory/.python3-blosc.new (New)


Package is "python3-blosc"

Changes:

--- /work/SRC/openSUSE:Factory/python3-blosc/python3-blosc.changes  
2015-04-27 22:09:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-blosc.new/python3-blosc.changes 
2015-05-19 23:50:17.0 +0200
@@ -1,0 +2,6 @@
+Tue May 19 12:13:34 UTC 2015 - toddrme2...@gmail.com
+
+- Update to version 1.2.7
+  * Updated to c-blosc v1.6.1.
+
+---

Old:

  blosc-1.2.5.tar.gz

New:

  blosc-1.2.7.tar.gz



Other differences:
--
++ python3-blosc.spec ++
--- /var/tmp/diff_new_pack.4vJprB/_old  2015-05-19 23:50:18.0 +0200
+++ /var/tmp/diff_new_pack.4vJprB/_new  2015-05-19 23:50:18.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-blosc
-Version:1.2.5
+Version:1.2.7
 Release:0
 Summary:Blosc data compressor for Python
 License:MIT
@@ -41,12 +41,12 @@
 %build
 CFLAGS="%{optflags}" python3 setup.py build_ext --inplace --blosc=%{_prefix}
 
+%install
+python3 setup.py install --blosc=%{_prefix} --prefix=%{_prefix} 
--root=%{buildroot}
+
 %check
 PYTHONPATH="." python3 blosc/test.py
 
-%install
-python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
-
 %files
 %defattr(-,root,root,-)
 %doc ANNOUNCE.rst README.rst LICENSES/*.txt RELEASE_NOTES.rst

++ blosc-1.2.5.tar.gz -> blosc-1.2.7.tar.gz ++
 3014 lines of diff (skipped)




commit python3-blosc for openSUSE:Factory

2015-04-27 Thread h_root
Hello community,

here is the log from the commit of package python3-blosc for openSUSE:Factory 
checked in at 2015-04-27 22:08:44

Comparing /work/SRC/openSUSE:Factory/python3-blosc (Old)
 and  /work/SRC/openSUSE:Factory/.python3-blosc.new (New)


Package is "python3-blosc"

Changes:

--- /work/SRC/openSUSE:Factory/python3-blosc/python3-blosc.changes  
2015-04-25 11:25:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-blosc.new/python3-blosc.changes 
2015-04-27 22:09:10.0 +0200
@@ -1,0 +2,6 @@
+Sun Apr 26 22:03:50 UTC 2015 - a...@gmx.de
+
+- specfile:
+  * added tests
+
+---



Other differences:
--
++ python3-blosc.spec ++
--- /var/tmp/diff_new_pack.moFlEv/_old  2015-04-27 22:09:10.0 +0200
+++ /var/tmp/diff_new_pack.moFlEv/_new  2015-04-27 22:09:10.0 +0200
@@ -27,6 +27,7 @@
 BuildRequires:  blosc-devel
 BuildRequires:  gcc-c++
 BuildRequires:  python3-devel
+BuildRequires:  python3-numpy
 Requires:   blosc-devel
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -40,6 +41,9 @@
 %build
 CFLAGS="%{optflags}" python3 setup.py build_ext --inplace --blosc=%{_prefix}
 
+%check
+PYTHONPATH="." python3 blosc/test.py
+
 %install
 python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
 




commit python3-blosc for openSUSE:Factory

2015-04-25 Thread h_root
Hello community,

here is the log from the commit of package python3-blosc for openSUSE:Factory 
checked in at 2015-04-25 09:53:23

Comparing /work/SRC/openSUSE:Factory/python3-blosc (Old)
 and  /work/SRC/openSUSE:Factory/.python3-blosc.new (New)


Package is "python3-blosc"

Changes:

--- /work/SRC/openSUSE:Factory/python3-blosc/python3-blosc.changes  
2014-07-27 08:26:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-blosc.new/python3-blosc.changes 
2015-04-25 11:25:57.0 +0200
@@ -1,0 +2,14 @@
+Thu Apr 23 15:33:17 UTC 2015 - a...@gmx.de
+
+- specfile:
+  * update copyright year
+
+- update to version 1.2.5:
+  * Updated to c-blosc v1.5.4.
+  * Added wrapper for the expert function set_blocksize. (#72 @esc)
+  * Fix setup.py to allow compilation on posix architectures without
+SSE2. (#70 @andreas-schwab)
+  * Don't release the GIL on compression/decompression (#77 @esc)
+  * Various miscellaneous fixes
+
+---

Old:

  blosc-1.2.4.tar.gz

New:

  blosc-1.2.5.tar.gz



Other differences:
--
++ python3-blosc.spec ++
--- /var/tmp/diff_new_pack.IkVnHG/_old  2015-04-25 11:25:58.0 +0200
+++ /var/tmp/diff_new_pack.IkVnHG/_new  2015-04-25 11:25:58.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python3-blosc
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -13,18 +13,20 @@
 # published by the Open Source Initiative.
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
+#
+
 
 Name:   python3-blosc
-Version:1.2.4
+Version:1.2.5
 Release:0
-License:MIT
 Summary:Blosc data compressor for Python
-Url:http://www.blosc.org/
+License:MIT
 Group:  Development/Languages/Python
+Url:http://www.blosc.org/
 Source: 
http://pypi.python.org/packages/source/b/blosc/blosc-%{version}.tar.gz
-BuildRequires:  python3-devel
-BuildRequires:  gcc-c++
 BuildRequires:  blosc-devel
+BuildRequires:  gcc-c++
+BuildRequires:  python3-devel
 Requires:   blosc-devel
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -47,5 +49,4 @@
 %{python3_sitearch}/blosc-%{version}-py*.egg-info
 %{python3_sitearch}/blosc/
 
-
 %changelog

++ blosc-1.2.4.tar.gz -> blosc-1.2.5.tar.gz ++
 8953 lines of diff (skipped)