Hello community, here is the log from the commit of package zimg for openSUSE:Leap:15.2 checked in at 2020-03-09 18:11:49 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Leap:15.2/zimg (Old) and /work/SRC/openSUSE:Leap:15.2/.zimg.new.26092 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "zimg" Mon Mar 9 18:11:49 2020 rev:38 rq:774877 version:2.9.2 Changes: -------- --- /work/SRC/openSUSE:Leap:15.2/zimg/zimg.changes 2020-01-15 16:32:48.864893125 +0100 +++ /work/SRC/openSUSE:Leap:15.2/.zimg.new.26092/zimg.changes 2020-03-09 18:11:50.473237456 +0100 @@ -1,0 +2,63 @@ +Thu Dec 5 08:54:26 UTC 2019 - Martin Liška <[email protected]> + +- Add update-matrix3.cpp.patch in order + to fix boo#1158372. + +------------------------------------------------------------------- +Fri Aug 2 02:43:17 UTC 2019 - Martin Herkt <[email protected]> + +- Switch to git checkout (GitHub tarbals lack required submodules) +- Build unit tests separately as they impact the build result and + produce a broken install rule +- Update to version 2.9.2: + * colorspace: fix crash on invalid conversion from unspec to + real primaries + * x86: additional optimizations for AMD Piledriver + * x86: optimizations for AMD Zen2 processors + +------------------------------------------------------------------- +Thu Jun 13 21:40:11 UTC 2019 - Martin Herkt <[email protected]> + +- Update to version 2.9.1: + * resize: fix incorrect spline36 coefficients (introduced in 2.9) + +------------------------------------------------------------------- +Fri Jun 7 12:40:52 UTC 2019 - Martin Herkt <[email protected]> + +- Update to version 2.9: + * colorspace: improve accuracy of SSE2 LUT-based transfer + functions + * depth: AVX2 and AVX-512 code paths for limited range upsampling + * graph: optimize tile width calculation + * graph: reduce execution overhead + * graph: skip processing pixels outside of active window + * resize: change default bicubic from Mitchell-Netravali to + Catmull-Rom + * resize: make output bit-exact regardless of active window + dimensions + * x86: optimizations for AMD Piledriver and Zen1 processors + +------------------------------------------------------------------- +Mon Oct 22 20:26:25 UTC 2018 - Martin Herkt <[email protected]> + +- Update to version 2.8: + * api: rename colorspace enum values + * colorspace: AVX-512 code paths for commonly used transfer + functions + * colorspace: optimize SSE2 LUT-based transfer functions + * common: reduce execution overhead + * depth: increase ordered dither pattern from 8x8 to 16x16 + * depth: use blue noise instead of white for random dither + * depth: use different dither pattern on each color component + * resize: optimize x86 SIMD horizontal downsampling with >8 taps + * x86: cache detection on AMD processors + * x86: optimizations for AMD Excavator processors + +------------------------------------------------------------------- +Fri Jul 13 20:36:32 UTC 2018 - [email protected] + +- Update to 2.7.5: + * depth: fix SSE2 byte->float when width+4 is mod16 + * resize: allow downsampling to very low resolutions + +------------------------------------------------------------------- Old: ---- release-2.7.4.tar.gz New: ---- _service update-matrix3.cpp.patch zimg-2.9.2.obscpio zimg.obsinfo ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ zimg.spec ++++++ --- /var/tmp/diff_new_pack.NdceNy/_old 2020-03-09 18:11:50.805237932 +0100 +++ /var/tmp/diff_new_pack.NdceNy/_new 2020-03-09 18:11:50.809237937 +0100 @@ -1,7 +1,7 @@ # # spec file for package zimg # -# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 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 @@ -12,20 +12,21 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # %define sover 2 Name: zimg -Version: 2.7.4 +Version: 2.9.2 Release: 0 Summary: Scaling, colorspace conversion, and dithering library License: WTFPL Group: Development/Libraries/C and C++ URL: https://github.com/sekrit-twc/zimg -Source0: https://github.com/sekrit-twc/zimg/archive/release-%{version}.tar.gz -source99: baselibs.conf +Source0: zimg-%{version}.tar.xz +Source99: baselibs.conf +Patch0: update-matrix3.cpp.patch BuildRequires: autoconf BuildRequires: automake BuildRequires: gcc-c++ @@ -54,10 +55,13 @@ developing applications that use libzimg%{sover}. %prep -%setup -q -n zimg-release-%{version} +%setup -q +%patch0 -p1 %build autoreconf -fiv +# do not enable tests here — they make zimg slower and the install +# rule is broken %configure \ %ifarch x86_64 %{ix86} --enable-x86simd \ @@ -70,6 +74,21 @@ rm -rf %{buildroot}%{_datadir}/doc/zimg find %{buildroot} -type f -name "*.la" -delete -print +# test suite is broken on other platforms, upstream informed +%ifarch x86_64 +%check +make clean +%configure \ + %ifarch x86_64 %{ix86} + --enable-x86simd \ + %endif + --disable-static \ + --enable-unit-test +make %{?_smp_mflags} V=1 +make %{?_smp_mflags} V=1 test/unit_test +test/unit_test +%endif + %post -n libzimg%{sover} -p /sbin/ldconfig %postun -n libzimg%{sover} -p /sbin/ldconfig ++++++ _service ++++++ <services> <service name="obs_scm" mode="disabled"> <param name="url">https://github.com/sekrit-twc/zimg.git</param> <param name="scm">git</param> <param name="versionformat">@PARENT_TAG@</param> <param name="versionrewrite-pattern">release([0-9\.]*)</param> <param name="revision">release-2.9.2</param> </service> <service name="tar" mode="buildtime" /> <service name="recompress" mode="buildtime"> <param name="file">*.tar</param> <param name="compression">xz</param> </service> <service name="set_version" mode="disabled"/> </services> ++++++ update-matrix3.cpp.patch ++++++ >From 9ae36d7d5f7420eaacd9644451933512fa13d716 Mon Sep 17 00:00:00 2001 From: sekrit-twc <[email protected]> Date: Wed, 4 Dec 2019 12:01:26 -0800 Subject: [PATCH] Update matrix3.cpp --- src/zimg/colorspace/matrix3.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/zimg/colorspace/matrix3.cpp b/src/zimg/colorspace/matrix3.cpp index 06e0e2f..b4aeea7 100644 --- a/src/zimg/colorspace/matrix3.cpp +++ b/src/zimg/colorspace/matrix3.cpp @@ -1,3 +1,4 @@ +#include <cstddef> #include "matrix3.h" namespace zimg { -- 2.24.0 ++++++ zimg.obsinfo ++++++ name: zimg version: 2.9.2 mtime: 1564070386 commit: 1ea31d1588d7ac919a51ed7c98cd96b3898665ff
