Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libkate for openSUSE:Factory checked in at 2025-03-11 20:43:51 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libkate (Old) and /work/SRC/openSUSE:Factory/.libkate.new.19136 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libkate" Tue Mar 11 20:43:51 2025 rev:24 rq:1251728 version:0.4.3 Changes: -------- --- /work/SRC/openSUSE:Factory/libkate/libkate.changes 2024-03-03 20:19:46.154802740 +0100 +++ /work/SRC/openSUSE:Factory/.libkate.new.19136/libkate.changes 2025-03-11 20:44:07.971225110 +0100 @@ -1,0 +2,15 @@ +Sun Mar 9 16:33:52 UTC 2025 - Andreas Stieger <andreas.stie...@gmx.de> + +- update to 0.4.3: + * full Python 3 compatibility +- includes changes from 0.4.2: + * Adjust decoder to allow zero sized metadata content + * Adjust text parsing to better recognize invalid UNICODE + * Eliminate timing precision issues in writing to kate format, + and ensure seconds are written with a leading 0 if less than 10 + * Fixes to build systems, compiler warnings + * Correct option handling in KateDJ. + * Adust kate_high_decode_init() to avoid use after free +- drop disable-namespace-test.patch + +------------------------------------------------------------------- Old: ---- disable-namespace-test.patch libkate-0.4.1.tar.gz New: ---- libkate-0.4.3.tar.gz BETA DEBUG BEGIN: Old: * Adust kate_high_decode_init() to avoid use after free - drop disable-namespace-test.patch BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libkate.spec ++++++ --- /var/tmp/diff_new_pack.wGMPZz/_old 2025-03-11 20:44:09.547290924 +0100 +++ /var/tmp/diff_new_pack.wGMPZz/_new 2025-03-11 20:44:09.547290924 +0100 @@ -3,6 +3,7 @@ # # Copyright (c) 2020 SUSE LLC # Copyright (c) 2010 SUSE Dominique Leuenberger, Amsterdam, Netherlands +# Copyright (c) 2025 Andreas Stieger <andreas.stie...@gmx.de> # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,24 +18,20 @@ # -%bcond_without python2 +%define sover 1 Name: libkate -Version: 0.4.1 +Version: 0.4.3 Release: 0 Summary: A karaoke and text codec for embedding in Ogg License: BSD-3-Clause -URL: http://libkate.googlecode.com -Source: http://libkate.googlecode.com/files/%{name}-%{version}.tar.gz +URL: https://gitlab.xiph.org/xiph/kate +Source: https://downloads.xiph.org/releases/kate/%{name}-%{version}.tar.gz Source99: baselibs.conf -Patch0: disable-namespace-test.patch BuildRequires: doxygen BuildRequires: fdupes BuildRequires: pkgconfig BuildRequires: pkgconfig(libpng) BuildRequires: pkgconfig(ogg) -%if %{with python2} -BuildRequires: python2-base -%endif %description Kate is a codec for karaoke and text encapsulation for Ogg. Most of the @@ -48,10 +45,10 @@ purpose. Motions can be attached to various semantics, like position, color, etc, so scrolling or fading text can be defined. -%package -n %{name}1 +%package -n %{name}%{sover} Summary: A karaoke and text codec for embedding in Ogg -%description -n %{name}1 +%description -n %{name}%{sover} Kate is a codec for karaoke and text encapsulation for Ogg. Most of the time, this would be multiplexed with audio/video to carry subtitles, song lyrics (with or without karaoke data), etc, but doesn't have to be. @@ -63,11 +60,11 @@ purpose. Motions can be attached to various semantics, like position, color, etc, so scrolling or fading text can be defined. -%package -n liboggkate1 +%package -n liboggkate%{sover} Summary: A karaoke and text codec for embedding in Ogg Conflicts: libkate1 < 0.4.1 -%description -n liboggkate1 +%description -n liboggkate%{sover} Kate is a codec for karaoke and text encapsulation for Ogg. Most of the time, this would be multiplexed with audio/video to carry subtitles, song lyrics (with or without karaoke data), etc, but doesn't have to be. @@ -81,10 +78,8 @@ %package devel Summary: A karaoke and text codec for embedding in Ogg - Development Files -Requires: %{name}1 = %{version} -Requires: glibc-devel -Requires: liboggkate1 = %{version} -Requires: pkgconfig(ogg) +Requires: %{name}%{sover} = %{version} +Requires: liboggkate%{sover} = %{version} %description devel Kate is a codec for karaoke and text encapsulation for Ogg. Most of the @@ -133,9 +128,6 @@ %build echo 'HTML_TIMESTAMP=NO' >> doc/kate.doxygen.in -%if !%{with python2} -sed -i -e 's:PYTHON=python:PYTHON=python3:g' misc/autotools/py-compile -%endif %configure \ --disable-static %make_build @@ -157,23 +149,23 @@ %check %make_build check -%post -n %{name}1 -p /sbin/ldconfig -%postun -n %{name}1 -p /sbin/ldconfig +%ldconfig_scriptlets -n %{name}%{sover} +%ldconfig_scriptlets -n liboggkate%{sover} -%files -n %{name}1 +%files -n %{name}%{sover} %doc AUTHORS ChangeLog README THANKS %license COPYING -%{_libdir}/%{name}.so.1* +%{_libdir}/%{name}.so.%{sover} +%{_libdir}/%{name}.so.%{sover}.* -%post -n liboggkate1 -p /sbin/ldconfig -%postun -n liboggkate1 -p /sbin/ldconfig - -%files -n liboggkate1 +%files -n liboggkate%{sover} %license COPYING %doc AUTHORS ChangeLog README THANKS -%{_libdir}/liboggkate.so.1* +%{_libdir}/liboggkate.so.%{sover} +%{_libdir}/liboggkate.so.%{sover}.* %files devel +%license COPYING %doc doc/html/ %{_includedir}/kate/ %{_libdir}/%{name}.so @@ -182,6 +174,7 @@ %{_libdir}/pkgconfig/oggkate.pc %files tools +%license COPYING %{_bindir}/katedec %{_bindir}/kateenc %{_bindir}/katalyzer @@ -189,10 +182,3 @@ %{_mandir}/man1/katedec.1%{?ext_man} %{_mandir}/man1/kateenc.1%{?ext_man} -%if %{with python2} -%files -n python-katedj -%{_bindir}/KateDJ -%{_mandir}/man1/KateDJ.1%{?ext_man} -%{python_sitelib}/kdj/ -%endif - ++++++ baselibs.conf ++++++ --- /var/tmp/diff_new_pack.wGMPZz/_old 2025-03-11 20:44:09.575292093 +0100 +++ /var/tmp/diff_new_pack.wGMPZz/_new 2025-03-11 20:44:09.579292260 +0100 @@ -1,4 +1,3 @@ libkate1 liboggkate1 - ++++++ libkate-0.4.1.tar.gz -> libkate-0.4.3.tar.gz ++++++ ++++ 117325 lines of diff (skipped)