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-07-18 18:32:50 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/jasper (Old) and /work/SRC/openSUSE:Factory/.jasper.new.1523 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "jasper" Mon Jul 18 18:32:50 2022 rev:20 rq:989093 version:3.0.6 Changes: -------- --- /work/SRC/openSUSE:Factory/jasper/jasper.changes 2022-06-24 08:45:19.567140224 +0200 +++ /work/SRC/openSUSE:Factory/.jasper.new.1523/jasper.changes 2022-07-18 18:32:55.329670846 +0200 @@ -1,0 +2,6 @@ +Thu Jul 14 07:24:38 UTC 2022 - Michael Vetter <mvet...@suse.com> + +- Update to 3.0.6: + * Fix bug in manual deployment script. + +------------------------------------------------------------------- Old: ---- version-3.0.5.tar.gz New: ---- version-3.0.6.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ jasper.spec ++++++ --- /var/tmp/diff_new_pack.Il1TA3/_old 2022-07-18 18:32:55.913671677 +0200 +++ /var/tmp/diff_new_pack.Il1TA3/_new 2022-07-18 18:32:55.917671683 +0200 @@ -20,7 +20,7 @@ %global __builddir obs_build Name: jasper -Version: 3.0.5 +Version: 3.0.6 Release: 0 Summary: An Implementation of the JPEG-2000 Standard, Part 1 License: JasPer-2.0 ++++++ version-3.0.5.tar.gz -> version-3.0.6.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jasper-version-3.0.5/CMakeLists.txt new/jasper-version-3.0.6/CMakeLists.txt --- old/jasper-version-3.0.5/CMakeLists.txt 2022-06-23 15:58:55.000000000 +0200 +++ new/jasper-version-3.0.6/CMakeLists.txt 2022-07-13 17:13:22.000000000 +0200 @@ -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 5) +set(JAS_VERSION_PATCH 6) # 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.5/NEWS.txt new/jasper-version-3.0.6/NEWS.txt --- old/jasper-version-3.0.5/NEWS.txt 2022-06-23 15:58:55.000000000 +0200 +++ new/jasper-version-3.0.6/NEWS.txt 2022-07-13 17:13:22.000000000 +0200 @@ -1,7 +1,12 @@ +3.0.6 (2022-07-13) +================== + +* Fix bug in manual deployment script. + 3.0.5 (2022-06-23) ================== -* Fix a minor build issue. +* Fix a minor build issue (#328). 3.0.4 (2022-06-02) ================== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jasper-version-3.0.5/build/build new/jasper-version-3.0.6/build/build --- old/jasper-version-3.0.5/build/build 2022-06-23 15:58:55.000000000 +0200 +++ new/jasper-version-3.0.6/build/build 2022-07-13 17:13:22.000000000 +0200 @@ -1,15 +1,15 @@ #! /usr/bin/env bash +################################################################################ +# Functions +################################################################################ + panic() { echo "ERROR: $@" exit 1 } -program_dir=$(dirname "$0") || exit 1 -jas_realpath="$program_dir/jas_realpath" -abs_program_dir=$("$jas_realpath" "$program_dir") || panic - usage() { if [ "$#" -gt 0 ]; then @@ -78,6 +78,18 @@ exit 2 } +################################################################################ +# Early initialization. +################################################################################ + +program_dir=$(dirname "$0") || exit 1 +jas_realpath="$program_dir/jas_realpath" +abs_program_dir=$("$jas_realpath" "$program_dir") || panic + +################################################################################ +# Process command line. +################################################################################ + enable=1 enable_install=0 build_type=release @@ -350,9 +362,23 @@ fi fi +################################################################################ +# Apply some platform-specific hacks. +################################################################################ + if [ "$crostini" -ne 0 ]; then enable_tsan=0 fi +if [ "$os" == windows ]; then + if [ "$enable_doc" -ne 0 ]; then + echo "WARNING: disabling the generation of documentation" + enable_doc=0 + fi +fi + +################################################################################ +# Perform some initialization. +################################################################################ source_dir="$abs_program_dir/.." @@ -377,6 +403,10 @@ eval $("$sde_setup") || panic "setup failed" fi +################################################################################ +# Create the build and install directories (possibly emptying them first). +################################################################################ + if [ "$clean_build_dir" -ne 0 -a -e "$build_dir" ]; then echo "Removing $build_dir" rm -rf "$build_dir" || panic "cannot remove directory $build_dir" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/jasper-version-3.0.5/build/github/deploy_gh_pages new/jasper-version-3.0.6/build/github/deploy_gh_pages --- old/jasper-version-3.0.5/build/github/deploy_gh_pages 2022-06-23 15:58:55.000000000 +0200 +++ new/jasper-version-3.0.6/build/github/deploy_gh_pages 2022-07-13 17:13:22.000000000 +0200 @@ -320,7 +320,7 @@ if [ -h "$target" -o -e "$target" ]; then rm -f "$target" || panic "rm failed" fi - ln -s "releases/$version/html" "$target" || \ + ln -s "releases/$version" "$target" || \ panic "ln failed" fi