Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gnome-tour for openSUSE:Factory checked in at 2025-10-18 14:35:03 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnome-tour (Old) and /work/SRC/openSUSE:Factory/.gnome-tour.new.18484 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-tour" Sat Oct 18 14:35:03 2025 rev:14 rq:1311628 version:49.0.openSUSE+git20251016.669c499 Changes: -------- --- /work/SRC/openSUSE:Factory/gnome-tour/gnome-tour.changes 2025-10-10 17:08:24.742875152 +0200 +++ /work/SRC/openSUSE:Factory/.gnome-tour.new.18484/gnome-tour.changes 2025-10-18 14:35:21.952271970 +0200 @@ -1,0 +2,6 @@ +Thu Oct 16 06:10:10 UTC 2025 - Daniel Garcia <[email protected]> + +- Add custom lang package for opensuse-welcome. This will remove the + indirect dependency on gnome-tour. bsc#1252077 + +------------------------------------------------------------------- Old: ---- gnome-tour-49.0.openSUSE+git20251009.a4002c9.obscpio New: ---- gnome-tour-49.0.openSUSE+git20251016.669c499.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnome-tour.spec ++++++ --- /var/tmp/diff_new_pack.toOMy2/_old 2025-10-18 14:35:22.864310130 +0200 +++ /var/tmp/diff_new_pack.toOMy2/_new 2025-10-18 14:35:22.868310297 +0200 @@ -19,7 +19,7 @@ %global rustflags '-Clink-arg=-Wl,-z,relro,-z,now' Name: gnome-tour -Version: 49.0.openSUSE+git20251009.a4002c9 +Version: 49.0.openSUSE+git20251016.669c499 Release: 0 Summary: GNOME Tour & Greeter License: GPL-3.0-or-later @@ -53,11 +53,12 @@ %package -n opensuse-welcome Summary: Welcome utility for openSUSE Requires: %{name}-data = %{version} -Requires: %{name}-lang-all = %{version} %description -n opensuse-welcome A welcome utility built to welcome new users to openSUSE. +%lang_package -n opensuse-welcome + %prep %autosetup -p1 -a2 @@ -72,6 +73,7 @@ export RUSTFLAGS=%{rustflags} %meson_install %find_lang %{name} %{?no_lang_C} +%find_lang opensuse-welcome %{?no_lang_C} %check %meson_test @@ -85,11 +87,6 @@ %{_datadir}/applications/org.gnome.Tour.desktop %{_datadir}/dbus-1/services/org.gnome.Tour.service -%files -n opensuse-welcome -%{_bindir}/opensuse-welcome -%{_datadir}/applications/org.opensuse.Welcome.desktop -%{_datadir}/dbus-1/services/org.opensuse.Welcome.service - %files data %{_datadir}/icons/hicolor/scalable/apps/* %{_datadir}/icons/hicolor/symbolic/apps/* @@ -98,3 +95,10 @@ %files lang -f %{name}.lang +%files -n opensuse-welcome +%{_bindir}/opensuse-welcome +%{_datadir}/applications/org.opensuse.Welcome.desktop +%{_datadir}/dbus-1/services/org.opensuse.Welcome.service + +%files -n opensuse-welcome-lang -f opensuse-welcome.lang + ++++++ gnome-tour-49.0.openSUSE+git20251009.a4002c9.obscpio -> gnome-tour-49.0.openSUSE+git20251016.669c499.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-tour-49.0.openSUSE+git20251009.a4002c9/po/meson.build new/gnome-tour-49.0.openSUSE+git20251016.669c499/po/meson.build --- old/gnome-tour-49.0.openSUSE+git20251009.a4002c9/po/meson.build 2025-10-09 13:14:31.000000000 +0200 +++ new/gnome-tour-49.0.openSUSE+git20251016.669c499/po/meson.build 2025-10-16 08:06:18.000000000 +0200 @@ -5,3 +5,11 @@ ], preset: 'glib' ) + +i18n.gettext( + 'opensuse-welcome', + args: [ + '--keyword=i18n_f' + ], + preset: 'glib' +) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-tour-49.0.openSUSE+git20251009.a4002c9/src/minimal.rs new/gnome-tour-49.0.openSUSE+git20251016.669c499/src/minimal.rs --- old/gnome-tour-49.0.openSUSE+git20251009.a4002c9/src/minimal.rs 2025-10-09 13:14:31.000000000 +0200 +++ new/gnome-tour-49.0.openSUSE+git20251016.669c499/src/minimal.rs 2025-10-16 08:06:18.000000000 +0200 @@ -12,17 +12,17 @@ fn main() -> glib::ExitCode { let mut log_builder = env_logger::builder(); // Compatibility G_MESSAGES_DEBUG env var - if !glib::log_writer_default_would_drop(glib::LogLevel::Debug, Some("gnome_tour")) { - log_builder.filter_module("gnome_tour", log::LevelFilter::Debug); + if !glib::log_writer_default_would_drop(glib::LogLevel::Debug, Some("opensuse_welcome")) { + log_builder.filter_module("opensuse_welcome", log::LevelFilter::Debug); } log_builder.init(); // Prepare i18n setlocale(LocaleCategory::LcAll, ""); - bindtextdomain(GETTEXT_PACKAGE, LOCALEDIR) - .unwrap_or_else(|_| panic!("Unable to bind text domain for {GETTEXT_PACKAGE}")); - textdomain(GETTEXT_PACKAGE) - .unwrap_or_else(|_| panic!("Unable to switch to text domain {GETTEXT_PACKAGE}")); + bindtextdomain("opensuse-welcome", LOCALEDIR) + .unwrap_or_else(|_| panic!("Unable to bind text domain for opensuse-welcome")); + textdomain("opensuse-welcome") + .unwrap_or_else(|_| panic!("Unable to switch to text domain opensuse-welcome")); glib::set_application_name(&gettext("Tour")); ++++++ gnome-tour.obsinfo ++++++ --- /var/tmp/diff_new_pack.toOMy2/_old 2025-10-18 14:35:23.200324189 +0200 +++ /var/tmp/diff_new_pack.toOMy2/_new 2025-10-18 14:35:23.220325025 +0200 @@ -1,5 +1,5 @@ name: gnome-tour -version: 49.0.openSUSE+git20251009.a4002c9 -mtime: 1760008471 -commit: a4002c999f82faa24fa95b2238dcd3c1736176b5 +version: 49.0.openSUSE+git20251016.669c499 +mtime: 1760594778 +commit: 669c499a78f510db1804dcc6a40e94249e4f4c5b ++++++ vendor.tar.zst ++++++ /work/SRC/openSUSE:Factory/gnome-tour/vendor.tar.zst /work/SRC/openSUSE:Factory/.gnome-tour.new.18484/vendor.tar.zst differ: char 7, line 1
