Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package movit for openSUSE:Factory checked in at 2023-07-26 13:23:24 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/movit (Old) and /work/SRC/openSUSE:Factory/.movit.new.15225 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "movit" Wed Jul 26 13:23:24 2023 rev:14 rq:1100170 version:1.7.1 Changes: -------- --- /work/SRC/openSUSE:Factory/movit/movit.changes 2023-07-17 19:23:50.129928271 +0200 +++ /work/SRC/openSUSE:Factory/.movit.new.15225/movit.changes 2023-07-26 13:24:03.812042973 +0200 @@ -1,0 +2,6 @@ +Sat Jul 22 20:36:21 UTC 2023 - antoine.belv...@opensuse.org + +- Update to version 1.7.1: Fix a bug when compiling in shaders, + that could cause errors with certain shader compilers. + +------------------------------------------------------------------- Old: ---- movit-1.7.0.tar.xz New: ---- movit-1.7.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ movit.spec ++++++ --- /var/tmp/diff_new_pack.juRTsC/_old 2023-07-26 13:24:04.460046884 +0200 +++ /var/tmp/diff_new_pack.juRTsC/_new 2023-07-26 13:24:04.464046908 +0200 @@ -18,7 +18,7 @@ %define _sonum 8 Name: movit -Version: 1.7.0 +Version: 1.7.1 Release: 0 Summary: GPU video filter library License: GPL-2.0-or-later ++++++ _service ++++++ --- /var/tmp/diff_new_pack.juRTsC/_old 2023-07-26 13:24:04.496047101 +0200 +++ /var/tmp/diff_new_pack.juRTsC/_new 2023-07-26 13:24:04.500047125 +0200 @@ -1,9 +1,12 @@ <services> <service mode="disabled" name="tar_scm"> - <param name="revision">1.7.0</param> + <!-- Author forgot to push the tag. Use commit hash. --> + <!--<param name="revision">1.7.1</param>--> + <param name="revision">592059c109aed449cd7d27e30c90bf0a478e7a4c</param> <param name="scm">git</param> <param name="url">https://git.sesse.net/movit</param> - <param name="versionformat">@PARENT_TAG@</param> + <!--<param name="versionformat">@PARENT_TAG@</param>--> + <param name="versionformat">1.7.1</param> </service> <service mode="disabled" name="recompress"> <param name="compression">xz</param> ++++++ movit-1.7.0.tar.xz -> movit-1.7.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/movit-1.7.0/Makefile.in new/movit-1.7.1/Makefile.in --- old/movit-1.7.0/Makefile.in 2023-07-15 17:43:18.000000000 +0200 +++ new/movit-1.7.1/Makefile.in 2023-07-22 20:41:18.000000000 +0200 @@ -6,7 +6,7 @@ # strive towards having a rock-stable ABI, but at least the soversion will increase # whenever it breaks, so that you will not have silent failures, and distribution package # management can run its course. -movit_ltversion = 8:4:0 +movit_ltversion = 8:5:0 movit_version = 1.7.0 prefix = @prefix@ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/movit-1.7.0/NEWS new/movit-1.7.1/NEWS --- old/movit-1.7.0/NEWS 2023-07-15 17:43:18.000000000 +0200 +++ new/movit-1.7.1/NEWS 2023-07-22 20:41:18.000000000 +0200 @@ -1,3 +1,9 @@ +Movit 1.7.1, July 22nd, 2023 + + - Fix a bug when compiling in shaders, that could cause errors + with certain shader compilers. Reported by Stefano Rivera. + + Movit 1.7.0, July 15th, 2023 - Compile shaders into the library. It is now allowed to give "" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/movit-1.7.0/make_bundled_shaders.cpp new/movit-1.7.1/make_bundled_shaders.cpp --- old/movit-1.7.0/make_bundled_shaders.cpp 2023-07-15 17:43:18.000000000 +0200 +++ new/movit-1.7.1/make_bundled_shaders.cpp 2023-07-22 20:41:18.000000000 +0200 @@ -54,7 +54,7 @@ } else if (ch == '\\') { printf("\\\\"); } else if (!isprint(ch)) { - printf("\\0%o", ch); + printf("\\%o", ch); } else { printf("%c", ch); }