Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package spek for openSUSE:Factory checked in at 2025-08-20 13:26:36 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/spek (Old) and /work/SRC/openSUSE:Factory/.spek.new.29662 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "spek" Wed Aug 20 13:26:36 2025 rev:6 rq:1300408 version:0.8.5 Changes: -------- --- /work/SRC/openSUSE:Factory/spek/spek.changes 2024-10-10 22:11:16.925781396 +0200 +++ /work/SRC/openSUSE:Factory/.spek.new.29662/spek.changes 2025-08-20 13:27:46.090542669 +0200 @@ -1,0 +2,6 @@ +Tue Aug 19 07:57:31 UTC 2025 - Edgar Aichinger <edog...@aon.at> + +- add spek-autotools.patch (GH PR #333, fixes x86_64 build) +- remove update-desktop-files + +------------------------------------------------------------------- New: ---- spek-autotools.patch ----------(New B)---------- New: - add spek-autotools.patch (GH PR #333, fixes x86_64 build) - remove update-desktop-files ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ spek.spec ++++++ --- /var/tmp/diff_new_pack.2wbuVH/_old 2025-08-20 13:27:46.702568114 +0200 +++ /var/tmp/diff_new_pack.2wbuVH/_new 2025-08-20 13:27:46.702568114 +0200 @@ -1,7 +1,7 @@ # # spec file for package spek # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2025 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 @@ -24,6 +24,8 @@ Group: Productivity/Multimedia/Sound/Utilities URL: https://www.spek.cc/ Source: https://github.com/alexkay/spek/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz +# PATCH-FIX-UPSTREAM spek-autotools.patch -- based on PR 333 +Patch0: spek-autotools.patch BuildRequires: autoconf BuildRequires: automake BuildRequires: gcc-c++ @@ -31,7 +33,6 @@ BuildRequires: hicolor-icon-theme BuildRequires: libtool BuildRequires: pkgconfig -BuildRequires: update-desktop-files BuildRequires: wxGTK-devel BuildRequires: pkgconfig(libavcodec) BuildRequires: pkgconfig(libavformat) @@ -61,7 +62,6 @@ %install %make_install -%suse_update_desktop_file -r %{name} AudioVideo Player %find_lang %{name} %files -f %{name}.lang ++++++ spek-autotools.patch ++++++ >From e20ce13a5305327b7dfec9303f1487520095f36d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= <bjorn.fors...@gmail.com> Date: Wed, 16 Jul 2025 13:10:44 +0200 Subject: [PATCH] Fix build with recent autotools Tell autoconf where m4 macros are, or else the build fails like this: configure.ac:12: the top level configure.ac:71: error: possibly undefined macro: AM_GNU_GETTEXT_VERSION If this token and others are legitimate, please use m4_pattern_allow. See the Autoconf documentation. configure.ac:72: error: possibly undefined macro: AM_GNU_GETTEXT autoreconf: error: /nix/store/0qmqybsb86p5g6vqxj992grj9hyh72wa-autoconf-2.72/bin/autoconf failed with exit status: 1 This is a backward compatible change. --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index fe95c88..1c4b370 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,7 @@ AC_INIT([spek],[0.8.5]) AC_CONFIG_SRCDIR([src/spek.cc]) AC_CONFIG_HEADERS([config.h]) +AC_CONFIG_MACRO_DIRS([m4]) AM_INIT_AUTOMAKE([1.11.1 foreign no-dist-gzip dist-xz serial-tests]) AM_SILENT_RULES([yes])