Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package po4a for openSUSE:Factory checked in at 2025-07-15 16:42:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/po4a (Old) and /work/SRC/openSUSE:Factory/.po4a.new.7373 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "po4a" Tue Jul 15 16:42:20 2025 rev:35 rq:1291881 version:0.73 Changes: -------- --- /work/SRC/openSUSE:Factory/po4a/po4a.changes 2025-04-14 12:56:13.234802414 +0200 +++ /work/SRC/openSUSE:Factory/.po4a.new.7373/po4a.changes 2025-07-15 16:42:43.349197359 +0200 @@ -1,0 +2,6 @@ +Fri Jul 11 07:53:10 UTC 2025 - Ana Guerrero <ana.guerr...@suse.com> + +- Fix test to handle trailing spaces with gettext-runtime 0.25 + * gettext-0.25-tests.patch + +------------------------------------------------------------------- New: ---- gettext-0.25-tests.patch ----------(New B)---------- New:- Fix test to handle trailing spaces with gettext-runtime 0.25 * gettext-0.25-tests.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ po4a.spec ++++++ --- /var/tmp/diff_new_pack.LJ17cC/_old 2025-07-15 16:42:44.221233787 +0200 +++ /var/tmp/diff_new_pack.LJ17cC/_new 2025-07-15 16:42:44.225233953 +0200 @@ -30,6 +30,8 @@ Source: https://github.com/mquinson/po4a/releases/download/v%{version}/%{name}-%{version}.tar.gz # PATCH-FIX-UPSTREAM Workaround for build error with perl 5.40, see https://github.com/mquinson/po4a/issues/508 Patch0: po4a.diff +# PATCH-FIX-UPSTREAM https://github.com/mquinson/po4a/commit/7d88a5e59606a9a29ffe73325fff4a5ddb865d5c +Patch1: gettext-0.25-tests.patch %if "%{_vendor}" == "debbuild" BuildRequires: deb-perl-macros @@ -113,6 +115,7 @@ %prep %setup -q %patch -P0 +%patch -P1 -p1 %build perl Build.PL installdirs=vendor ++++++ gettext-0.25-tests.patch ++++++ >From 7d88a5e59606a9a29ffe73325fff4a5ddb865d5c Mon Sep 17 00:00:00 2001 From: Martin Quinson <martin.quin...@ens-rennes.fr> Date: Sun, 6 Jul 2025 12:59:30 +0200 Subject: [PATCH 1/4] Deal with gettext 0.25 in our tests The new verstion of Gettext adds a trailing space at some point. See https://github.com/mquinson/po4a/issues/580 --- t/Testhelper.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/Testhelper.pm b/t/Testhelper.pm index 6fdc6a69..1d4e7755 100644 --- a/t/Testhelper.pm +++ b/t/Testhelper.pm @@ -100,7 +100,7 @@ my $execpath = defined $ENV{AUTOPKGTEST_TMP} ? "/usr/bin" : "perl .."; # msginit annoyances, see https://github.com/mquinson/po4a/issues/338 my $PODIFF = - "-I'^\"Project-Id-Version:' -I'^\"POT-Creation-Date:' -I'^\"PO-Revision-Date:' " + "--ignore-trailing-space -I'^\"Project-Id-Version:' -I'^\"POT-Creation-Date:' -I'^\"PO-Revision-Date:' " . "-I'^# [^[:blank:]]* translations for ' -I'^# Language [^[:blank:]]* translations for ' -I'Copyright (C) 20.. Free Software Foundation, Inc.' -I'^# This file is distributed under the same license as the' -I'^# Automatically generated, 20...' "; sub show_files { -- 2.39.5