Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package jasper for openSUSE:Factory checked in at 2022-03-16 20:21:46 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/jasper (Old) and /work/SRC/openSUSE:Factory/.jasper.new.25692 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "jasper" Wed Mar 16 20:21:46 2022 rev:17 rq:962246 version:3.0.3 Changes: -------- --- /work/SRC/openSUSE:Factory/jasper/jasper.changes 2022-02-15 23:57:52.908312174 +0100 +++ /work/SRC/openSUSE:Factory/.jasper.new.25692/jasper.changes 2022-03-16 20:22:04.441039646 +0100 @@ -1,0 +2,6 @@ +Wed Mar 16 16:59:29 UTC 2022 - Michael Vetter <mvet...@suse.com> + +- Update to 3.0.3: + * Fix some portability issues in a few scripts. + +------------------------------------------------------------------- Old: ---- version-3.0.2.tar.gz New: ---- version-3.0.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ jasper.spec ++++++ --- /var/tmp/diff_new_pack.vQzK2O/_old 2022-03-16 20:22:05.033040072 +0100 +++ /var/tmp/diff_new_pack.vQzK2O/_new 2022-03-16 20:22:05.037040075 +0100 @@ -20,7 +20,7 @@ %global __builddir obs_build Name: jasper -Version: 3.0.2 +Version: 3.0.3 Release: 0 Summary: An Implementation of the JPEG-2000 Standard, Part 1 License: JasPer-2.0 ++++++ version-3.0.2.tar.gz -> version-3.0.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jasper-version-3.0.2/.github/workflows/ci.yml new/jasper-version-3.0.3/.github/workflows/ci.yml --- old/jasper-version-3.0.2/.github/workflows/ci.yml 2022-02-14 15:54:28.000000000 +0100 +++ new/jasper-version-3.0.3/.github/workflows/ci.yml 2022-03-15 08:45:37.000000000 +0100 @@ -1,6 +1,6 @@ name: ci -on: [push] +on: [push, pull_request] jobs: build: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jasper-version-3.0.2/CMakeLists.txt new/jasper-version-3.0.3/CMakeLists.txt --- old/jasper-version-3.0.2/CMakeLists.txt 2022-02-14 15:54:28.000000000 +0100 +++ new/jasper-version-3.0.3/CMakeLists.txt 2022-03-15 08:45:37.000000000 +0100 @@ -10,7 +10,7 @@ # The major, minor, and micro version numbers of the project. set(JAS_VERSION_MAJOR 3) set(JAS_VERSION_MINOR 0) -set(JAS_VERSION_PATCH 2) +set(JAS_VERSION_PATCH 3) # The shared library versioning information. # Guidelines on how to change this information can be found below. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jasper-version-3.0.2/NEWS.txt new/jasper-version-3.0.3/NEWS.txt --- old/jasper-version-3.0.2/NEWS.txt 2022-02-14 15:54:28.000000000 +0100 +++ new/jasper-version-3.0.3/NEWS.txt 2022-03-15 08:45:37.000000000 +0100 @@ -1,3 +1,8 @@ +3.0.3 (2022-03-15) +================== + +* Fix some portability issues in a few scripts. + 3.0.2 (2022-02-14) ================== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jasper-version-3.0.2/build/github/deploy_gh_pages new/jasper-version-3.0.3/build/github/deploy_gh_pages --- old/jasper-version-3.0.2/build/github/deploy_gh_pages 2022-02-14 15:54:28.000000000 +0100 +++ new/jasper-version-3.0.3/build/github/deploy_gh_pages 2022-03-15 08:45:37.000000000 +0100 @@ -24,7 +24,7 @@ is_preview_release() { local version="$1" - local pattern='^[0-9]+\.[0-9]+\.[0-9]+$' + local pattern='^version-[0-9]+\.[0-9]+\.[0-9]+$' if [[ "$version" =~ $pattern ]]; then output="0" else diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jasper-version-3.0.2/test/bin/jpcod new/jasper-version-3.0.3/test/bin/jpcod --- old/jasper-version-3.0.2/test/bin/jpcod 2022-02-14 15:54:28.000000000 +0100 +++ new/jasper-version-3.0.3/test/bin/jpcod 2022-03-15 08:45:37.000000000 +0100 @@ -1,4 +1,4 @@ -#! /bin/bash +#! /usr/bin/env bash # Copyright (c) 2016 Michael David Adams debug_level="${JAS_DEBUG_LEVEL:-0}" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jasper-version-3.0.2/test/bin/jpdec new/jasper-version-3.0.3/test/bin/jpdec --- old/jasper-version-3.0.2/test/bin/jpdec 2022-02-14 15:54:28.000000000 +0100 +++ new/jasper-version-3.0.3/test/bin/jpdec 2022-03-15 08:45:37.000000000 +0100 @@ -1,4 +1,4 @@ -#! /bin/bash +#! /usr/bin/env bash # Copyright (c) 2016 Michael David Adams debug_level="${JAS_DEBUG_LEVEL:-0}" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jasper-version-3.0.2/test/bin/jpenc new/jasper-version-3.0.3/test/bin/jpenc --- old/jasper-version-3.0.2/test/bin/jpenc 2022-02-14 15:54:28.000000000 +0100 +++ new/jasper-version-3.0.3/test/bin/jpenc 2022-03-15 08:45:37.000000000 +0100 @@ -1,4 +1,4 @@ -#! /bin/bash +#! /usr/bin/env bash # Copyright (c) 2016 Michael David Adams debug_level="${JAS_DEBUG_LEVEL:-0}" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jasper-version-3.0.2/test/bin/utilities new/jasper-version-3.0.3/test/bin/utilities --- old/jasper-version-3.0.2/test/bin/utilities 2022-02-14 15:54:28.000000000 +0100 +++ new/jasper-version-3.0.3/test/bin/utilities 2022-03-15 08:45:37.000000000 +0100 @@ -1,4 +1,4 @@ -#! /bin/bash +#! /usr/bin/env bash # Copyright (c) 2016 Michael David Adams ################################################################################ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jasper-version-3.0.2/test/bin/wrapper.in new/jasper-version-3.0.3/test/bin/wrapper.in --- old/jasper-version-3.0.2/test/bin/wrapper.in 2022-02-14 15:54:28.000000000 +0100 +++ new/jasper-version-3.0.3/test/bin/wrapper.in 2022-03-15 08:45:37.000000000 +0100 @@ -1,4 +1,4 @@ -#! /bin/bash +#! /usr/bin/env bash function eecho() {