Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package readstat for openSUSE:Factory checked in at 2026-03-10 17:57:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/readstat (Old) and /work/SRC/openSUSE:Factory/.readstat.new.8177 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "readstat" Tue Mar 10 17:57:20 2026 rev:2 rq:1337943 version:1.1.9 Changes: -------- --- /work/SRC/openSUSE:Factory/readstat/readstat.changes 2025-01-28 15:00:51.010204286 +0100 +++ /work/SRC/openSUSE:Factory/.readstat.new.8177/readstat.changes 2026-03-10 18:01:57.848952076 +0100 @@ -1,0 +2,6 @@ +Tue Mar 10 10:31:39 UTC 2026 - Ana Guerrero <[email protected]> + +- Fix build, remove AM_ICONV macro + 0001-Remove-gettext-requirement-as-it-was-only-needed-for.patch + +------------------------------------------------------------------- New: ---- 0001-Remove-gettext-requirement-as-it-was-only-needed-for.patch ----------(New B)---------- New:- Fix build, remove AM_ICONV macro 0001-Remove-gettext-requirement-as-it-was-only-needed-for.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ readstat.spec ++++++ --- /var/tmp/diff_new_pack.CNcrWq/_old 2026-03-10 18:01:58.856993521 +0100 +++ /var/tmp/diff_new_pack.CNcrWq/_new 2026-03-10 18:01:58.864993850 +0100 @@ -1,7 +1,7 @@ # # spec file for package readstat # -# Copyright (c) 2023 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 @@ -15,6 +15,7 @@ # Please submit bugfixes or comments via https://bugs.opensuse.org/ # + %if 0%{?sle_version} == 150000 || 0%{?suse_version} >= 1550 %bcond_without libcsv %else @@ -33,6 +34,8 @@ Source0: https://github.com/WizardMac/ReadStat/archive/v%{version}.tar.gz#/ReadStat-%{version}.tar.gz # PATCH-FIX-UPSTREAM Patch0: 0001-Fix-use-after-free.patch +# PATCH-FIX-UPSTREAM https://github.com/WizardMac/ReadStat/commit/495a46bb2cc66019c1a3122f318fe7dc810f0aa8 +Patch1: 0001-Remove-gettext-requirement-as-it-was-only-needed-for.patch BuildRequires: autoconf BuildRequires: automake %if %{with libcsv} ++++++ 0001-Remove-gettext-requirement-as-it-was-only-needed-for.patch ++++++ >From 495a46bb2cc66019c1a3122f318fe7dc810f0aa8 Mon Sep 17 00:00:00 2001 From: Sarah Clark <[email protected]> Date: Sat, 8 Nov 2025 13:23:08 -0800 Subject: [PATCH 1/8] Remove gettext requirement as it was only needed for iconv() (obsolete since 2001) (#342) --- configure.ac | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 9b253d2..b23e2b0 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,6 @@ # Update this with each release. Be sure to change VS17/PropertySheet.props too AC_INIT([ReadStat],[1.1.9],[https://github.com/WizardMac/ReadStat/issues],[readstat],[https://github.com/WizardMac/ReadStat]) +AC_CONFIG_MACRO_DIRS([m4]) AM_INIT_AUTOMAKE([foreign subdir-objects]) AM_SILENT_RULES([yes]) @@ -40,8 +41,6 @@ AC_ARG_ENABLE([fuzz-testing], AS_HELP_STRING([--enable-fuzz-testing], ["Enable f AM_CONDITIONAL([FUZZER_ENABLED], test "x$fuzzer" = "xyes") AC_SUBST([SANITIZERS]) -AM_ICONV - AC_CANONICAL_HOST AS_CASE([$host], [*linux*|*bsd*|*mingw*|*cygwin*|*gnu*], [EXTRA_LIBS="-lm"], -- 2.53.0
