Hello community, here is the log from the commit of package jasper for openSUSE:Factory checked in at 2020-09-23 18:45:15 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/jasper (Old) and /work/SRC/openSUSE:Factory/.jasper.new.4249 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "jasper" Wed Sep 23 18:45:15 2020 rev:2 rq:836230 version:2.0.21 Changes: -------- --- /work/SRC/openSUSE:Factory/jasper/jasper.changes 2020-07-28 17:28:07.070093946 +0200 +++ /work/SRC/openSUSE:Factory/.jasper.new.4249/jasper.changes 2020-09-23 18:46:46.913673559 +0200 @@ -1,0 +2,30 @@ +Wed Sep 23 07:40:22 UTC 2020 - Michael Vetter <mvet...@suse.com> + +- Add jasper-2.0.21-glut.patch: Fix glut.h detection + See https://github.com/jasper-software/jasper/issues/247 + +------------------------------------------------------------------- +Tue Sep 22 12:10:54 UTC 2020 - Michael Vetter <mvet...@suse.com> + +- Update to 2.0.21: + * Fix ZDI-15-529 + https://github.com/jasper-software/jasper/pull/245 + * Fix CVE-2018-19541 in decoder + https://github.com/jasper-software/jasper/pull/244 + +------------------------------------------------------------------- +Mon Sep 7 08:15:35 UTC 2020 - Michael Vetter <mvet...@suse.com> + +- Update to 2.0.20: + * Fixed several ISO/IEC 15444-4 conformance bugs + * Fixed new variant of CVE-2016-9398 + * Disabled the MIF codec by default for security reasons (but it is still + included in the library); + in a future release, the MIF codec may also be excluded from the + library by default + * Added documentation for the I/O streams library API + * Improved adherance to specification +- Move to GitHub repo https://github.com/jasper-software/jasper +- Update URL to https://jasper-software.github.io/jasper + +------------------------------------------------------------------- Old: ---- version-2.0.19.tar.gz New: ---- jasper-2.0.21-glut.patch version-2.0.21.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ jasper.spec ++++++ --- /var/tmp/diff_new_pack.8WRHTQ/_old 2020-09-23 18:46:59.017684695 +0200 +++ /var/tmp/diff_new_pack.8WRHTQ/_new 2020-09-23 18:46:59.017684695 +0200 @@ -1,7 +1,7 @@ # # spec file for package jasper # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,14 +17,16 @@ Name: jasper -Version: 2.0.19 +Version: 2.0.21 Release: 0 Summary: An Implementation of the JPEG-2000 Standard, Part 1 License: SUSE-Public-Domain Group: Productivity/Graphics/Convertors -URL: http://www.ece.uvic.ca/~mdadams/jasper/ -Source: https://github.com/mdadams/jasper/archive/version-%{version}.tar.gz +URL: https://jasper-software.github.io/jasper +Source: https://github.com/jasper-software/jasper/archive/version-%{version}.tar.gz Source2: baselibs.conf +# https://github.com/jasper-software/jasper/issues/247 +Patch0: jasper-2.0.21-glut.patch BuildRequires: Mesa-libGL-devel BuildRequires: cmake BuildRequires: doxygen @@ -76,6 +78,7 @@ %prep %setup -q -n %{name}-version-%{version} +%patch0 -p1 %build export CFLAGS="%{optflags} -Wall -std=c99 -D_BSD_SOURCE" ++++++ jasper-2.0.21-glut.patch ++++++ >From 059bcac469a06767179771aebbbe65dacd676111 Mon Sep 17 00:00:00 2001 From: Michael Adams <mdad...@ece.uvic.ca> Date: Tue, 22 Sep 2020 07:46:26 -0700 Subject: [PATCH] Moved the point at which the JasPer OpenGL cmake module is included in the top-level CMakeLists.txt file so that the main JasPer config header is generated correctly and all of the initialization required for this module is performed prior to its inclusion. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 20dbd8a..adf45ca 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -79,8 +79,6 @@ include(CheckCSourceCompiles) include(CTest) include(Sanitizers) -include(JasOpenGL) - cmake_policy(SET CMP0012 NEW) ################################################################################ @@ -205,6 +203,8 @@ endif() # Perform plaform checks. ################################################################################ +include(JasOpenGL) + find_program(BASH_PROGRAM bash) check_include_files(fcntl.h JAS_HAVE_FCNTL_H) ++++++ version-2.0.19.tar.gz -> version-2.0.21.tar.gz ++++++ ++++ 15151 lines of diff (skipped)