Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package tuner for openSUSE:Factory checked in at 2026-03-17 19:05:41 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/tuner (Old) and /work/SRC/openSUSE:Factory/.tuner.new.8177 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "tuner" Tue Mar 17 19:05:41 2026 rev:6 rq:1339582 version:2.0.3 Changes: -------- --- /work/SRC/openSUSE:Factory/tuner/tuner.changes 2024-12-06 14:26:34.816988900 +0100 +++ /work/SRC/openSUSE:Factory/.tuner.new.8177/tuner.changes 2026-03-17 19:07:40.236561532 +0100 @@ -1,0 +2,28 @@ +Tue Mar 17 11:32:34 UTC 2026 - Richard Rahl <[email protected]> + +- Update to version 2.0.3: + * Refactored Elementry Granite library out as a module + * Refactored namespaces + * Fixed: play/stop buttons disabled + * Fixed: Jukebox stops when tuning to a dead station + * Disabled in-app language selection for non-debug builds +- Update to version 2.0.2: + * new upstream URL +- Update to version 2.0.1: + * Sharpened some wording, fixed typos + * Updated translated strings and incorporated fresh translations + * Refactored Language change mechanism and applied translations to more UI elements + * Refactored Icon layout and build, removing unused icon files + * i18n - Broke out Country and Language translations to separate module +- Update to version 2.0.0: + * Jukebox to shuffle through all stations, one every ten minutes + * Searches can now be saved + * Starred Station export and import + * Much more metadata about Stations and Streams + * Explore category give you a handful of new Genres on each app restart + * Many new default Genre categories and Genres + * Station & Title History + * Responsiveness, Icons and Look & Feel improved + * Languages are now a choice + +------------------------------------------------------------------- Old: ---- tuner-1.5.5.tar.gz New: ---- tuner-2.0.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ tuner.spec ++++++ --- /var/tmp/diff_new_pack.AG7har/_old 2026-03-17 19:07:42.136640211 +0100 +++ /var/tmp/diff_new_pack.AG7har/_new 2026-03-17 19:07:42.148640705 +0100 @@ -1,7 +1,7 @@ # # spec file for package tuner # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2026 SUSE LLC and contributors # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -16,25 +16,26 @@ # -%define appid com.github.louis77.tuner +%define appid io.github.tuner_labs.tuner Name: tuner -Version: 1.5.5 +Version: 2.0.3 Release: 0 Summary: Minimalist radio station player License: GPL-3.0-or-later -Group: Productivity/Multimedia/Sound/Players -URL: https://github.com/louis77/tuner -Source: %{url}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz +URL: https://github.com/tuner-labs/tuner +Source0: %{url}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz Patch0: fix-gschema.patch +BuildRequires: appstream-glib +BuildRequires: desktop-file-utils BuildRequires: fdupes +BuildRequires: glib2-tools BuildRequires: hicolor-icon-theme -BuildRequires: meson +BuildRequires: meson >= 1.3.2 BuildRequires: pkgconfig BuildRequires: vala >= 0.44 BuildRequires: pkgconfig(gee-0.8) BuildRequires: pkgconfig(gio-2.0) BuildRequires: pkgconfig(glib-2.0) -BuildRequires: pkgconfig(granite) BuildRequires: pkgconfig(gstreamer-1.0) BuildRequires: pkgconfig(gstreamer-player-1.0) BuildRequires: pkgconfig(gtk+-3.0) @@ -54,7 +55,25 @@ %autosetup -p1 %build -%meson +%{__meson} setup \ + --buildtype=plain \ + --prefix=%{_prefix} \ + --libdir=%{_libdir} \ + --libexecdir=%{_libexecdir} \ + --bindir=%{_bindir} \ + --sbindir=%{_sbindir} \ + --includedir=%{_includedir} \ + --datadir=%{_datadir} \ + --mandir=%{_mandir} \ + --infodir=%{_infodir} \ + --localedir=%{_datadir}/locale \ + --sysconfdir=%{_sysconfdir} \ + --localstatedir=%{_localstatedir} \ + --sharedstatedir=%{_sharedstatedir} \ + --wrap-mode=%{__meson_wrap_mode} \ + --auto-features=%{__meson_auto_features} \ + %{_vpath_srcdir} %{_vpath_builddir} \ + %{nil} %meson_build %install @@ -68,9 +87,9 @@ %{_bindir}/%{appid} %{_datadir}/applications/%{appid}.desktop %{_datadir}/glib-2.0/schemas/%{appid}.gschema.xml -%{_datadir}/icons/hicolor/*/*/%{appid}.svg -%{_datadir}/metainfo/%{appid}.appdata.xml -%dir %{_datadir}/icons/hicolor/{128x128@2,128x128@2/apps,16x16@2,16x16@2/apps,24x24@2,24x24@2/apps,32x32@2,32x32@2/apps,48x48@2,48x48@2/apps,64x64@2,64x64@2/apps} +%{_datadir}/icons/hicolor/scalable/apps/%{appid}-scalable.svg +%{_datadir}/icons/hicolor/symbolic/apps/%{appid}-symbolic.svg +%{_datadir}/metainfo/%{appid}.metainfo.xml %files lang -f %{appid}.lang ++++++ fix-gschema.patch ++++++ --- /var/tmp/diff_new_pack.AG7har/_old 2026-03-17 19:07:42.420651921 +0100 +++ /var/tmp/diff_new_pack.AG7har/_new 2026-03-17 19:07:42.468653900 +0100 @@ -1,12 +1,12 @@ -diff -rub tuner-1.5.5/data/meson.build tuner-1.5.5-patched/data/meson.build ---- tuner-1.5.5/data/meson.build 2024-11-11 19:27:33.000000000 +0100 -+++ tuner-1.5.5-patched/data/meson.build 2024-11-18 22:59:43.983113621 +0100 -@@ -75,7 +75,4 @@ +diff -rubN tuner-2.0.3/data/meson.build tuner-2.0.3-patched/data/meson.build +--- tuner-2.0.3/data/meson.build 2026-03-09 18:41:55.000000000 +0100 ++++ tuner-2.0.3-patched/data/meson.build 2026-03-17 12:26:42.157326240 +0100 +@@ -95,6 +95,7 @@ - install_data(settings_schemas, install_dir: schemas_dir) - --meson.add_install_script('glib-compile-schemas', schemas_dir, install_tag: 'schemas') -- -- - message('Installed schema\n') + meson.add_install_script ( + glib_compile_schemas, ++ '--targetdir=' + meson.project_build_root(), + schemas_dir, + install_tag: 'schemas' + ) ++++++ tuner-1.5.5.tar.gz -> tuner-2.0.3.tar.gz ++++++ ++++ 166831 lines of diff (skipped)
