Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package catatonit for openSUSE:Factory checked in at 2021-12-02 22:30:01 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/catatonit (Old) and /work/SRC/openSUSE:Factory/.catatonit.new.31177 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "catatonit" Thu Dec 2 22:30:01 2021 rev:9 rq:933932 version:0.1.6 Changes: -------- --- /work/SRC/openSUSE:Factory/catatonit/catatonit.changes 2021-09-20 23:33:04.463167736 +0200 +++ /work/SRC/openSUSE:Factory/.catatonit.new.31177/catatonit.changes 2021-12-02 22:30:38.706577422 +0100 @@ -1,0 +2,6 @@ +Thu Nov 25 14:28:41 UTC 2021 - Dominique Leuenberger <dims...@opensuse.org> + +- Add 99bb9048f.patch: configure.ac: call AM_INIT_AUTOMAKE only + once. Fix build with autocnf 2.71 / automake 1.16.5. + +------------------------------------------------------------------- New: ---- 99bb9048f.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ catatonit.spec ++++++ --- /var/tmp/diff_new_pack.V49UBv/_old 2021-12-02 22:30:39.282575300 +0100 +++ /var/tmp/diff_new_pack.V49UBv/_new 2021-12-02 22:30:39.290575271 +0100 @@ -27,6 +27,7 @@ Source1: https://github.com/openSUSE/catatonit/releases/download/v%{version}/%{name}.tar.xz.asc#/%{name}-%{version}.tar.xz.asc Source2: %{name}.keyring Source3: %{name}-rpmlintrc +Patch0: https://github.com/openSUSE/catatonit/commit/99bb9048f.patch BuildRequires: autoconf BuildRequires: automake BuildRequires: file @@ -45,7 +46,7 @@ signalfd(2)) and has no additional features. %prep -%setup -q +%autosetup -p1 %build autoreconf -fi ++++++ 99bb9048f.patch ++++++ >From 99bb9048f532257f3a2c3856cfa19fe957ab6cec Mon Sep 17 00:00:00 2001 From: Antonio Terceiro <terce...@debian.org> Date: Thu, 4 Nov 2021 07:37:13 -0300 Subject: [PATCH] configure.ac: call AM_INIT_AUTOMAKE only once That second call seems to be there since the beginning, and autoconf 2.69 was fine with it. autoconf 2.71 doesn't allow it anymore: $ ./autogen.sh autoreconf: export WARNINGS= autoreconf: Entering directory '.' autoreconf: configure.ac: not using Gettext autoreconf: running: aclocal --force configure.ac:34: error: AM_INIT_AUTOMAKE expanded multiple times /usr/share/aclocal-1.16/init.m4:29: AM_INIT_AUTOMAKE is expanded from... configure.ac:19: the top level /usr/share/aclocal-1.16/init.m4:29: AM_INIT_AUTOMAKE is expanded from... configure.ac:34: the top level autom4te: error: /usr/bin/m4 failed with exit status: 1 aclocal: error: /usr/bin/autom4te failed with exit status: 1 autoreconf: error: aclocal failed with exit status: 1 Signed-off-by: Antonio Terceiro <terce...@debian.org> --- configure.ac | 1 - 1 file changed, 1 deletion(-) diff --git a/configure.ac b/configure.ac index 12c9186..94c5c84 100644 --- a/configure.ac +++ b/configure.ac @@ -31,4 +31,3 @@ AC_FUNC_FORK AC_CONFIG_FILES([Makefile config.h]) AC_OUTPUT -AM_INIT_AUTOMAKE