Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package xfd for openSUSE:Factory checked in at 2026-09-21 12:21:37 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/xfd (Old) and /work/SRC/openSUSE:Factory/.xfd.new.383539 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "xfd" Mon Sep 21 12:21:37 2026 rev:12 rq:1379323 version:1.1.6 Changes: -------- --- /work/SRC/openSUSE:Factory/xfd/xfd.changes 2026-01-26 11:06:10.967678306 +0100 +++ /work/SRC/openSUSE:Factory/.xfd.new.383539/xfd.changes 2026-09-21 12:21:37.883309585 +0200 @@ -1,0 +2,9 @@ +Sun Sep 20 21:19:08 UTC 2026 - Stefan Dirsch <[email protected]> + +- Update to version 1.1.6 + * This release fixes a build failure using meson on systems like + NetBSD which require linking with libintl to call gettext(), and + clears a compiler warning when building with -Wtrailing-whitespace + enabled. + +------------------------------------------------------------------- Old: ---- xfd-1.1.5.tar.xz New: ---- xfd-1.1.6.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ xfd.spec ++++++ --- /var/tmp/diff_new_pack.2DHhZh/_old 2026-09-21 12:21:38.386330618 +0200 +++ /var/tmp/diff_new_pack.2DHhZh/_new 2026-09-21 12:21:38.388330701 +0200 @@ -17,7 +17,7 @@ Name: xfd -Version: 1.1.5 +Version: 1.1.6 Release: 0 Summary: Utility to display all the characters in an X font License: X11 @@ -56,7 +56,8 @@ %files %defattr(-,root,root) -%doc ChangeLog COPYING README.md +%doc ChangeLog README.md +%license COPYING %{_bindir}/xfd %dir %{_datadir}/X11/app-defaults %{_datadir}/X11/app-defaults/Xfd ++++++ xfd-1.1.5.tar.xz -> xfd-1.1.6.tar.xz ++++++ ++++ 7323 lines of diff (skipped) ++++ retrying with extended exclude list diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/xfd-1.1.5/ChangeLog new/xfd-1.1.6/ChangeLog --- old/xfd-1.1.5/ChangeLog 2026-01-25 01:52:34.000000000 +0100 +++ new/xfd-1.1.6/ChangeLog 2026-09-20 00:31:47.000000000 +0200 @@ -1,3 +1,37 @@ +commit d79291ecbbb3fa3537d37317c4a48c6145e8e082 +Author: Alan Coopersmith <[email protected]> +Date: Sat Sep 19 15:27:35 2026 -0700 + + xfd 1.1.6 + + Signed-off-by: Alan Coopersmith <[email protected]> + +commit 0412ef04055eaf118c7a6e6aa612a84217d85a28 +Author: Alan Coopersmith <[email protected]> +Date: Sun Sep 13 15:47:43 2026 -0700 + + Strip trailing whitespace from source files + + Performed with: `git ls-files | xargs perl -i -p -e 's{[ \t]+$}{}'` + + `git diff -w` & `git diff -b` show no diffs from this change + + Signed-off-by: Alan Coopersmith <[email protected]> + Part-of: <https://gitlab.freedesktop.org/xorg/app/xfd/-/merge_requests/13> + +commit 4261cb09d5aa30f8dce0ee70f565dc242a75873c +Author: Alan Coopersmith <[email protected]> +Date: Tue Jun 30 17:03:02 2026 -0700 + + meson: include libintl.h when checking for gettext() + + Trying to workaround https://github.com/mesonbuild/meson/issues/3740 + which causes meson to fail to detect it needs to link against libintl + for gettext() on NetBSD. + + Signed-off-by: Alan Coopersmith <[email protected]> + Part-of: <https://gitlab.freedesktop.org/xorg/app/xfd/-/merge_requests/12> + commit f51d1f8224a18d66b4f0df5fd06121be3d4c129f Author: Alan Coopersmith <[email protected]> Date: Sat Jan 24 16:47:58 2026 -0800 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/xfd-1.1.5/compile new/xfd-1.1.6/compile --- old/xfd-1.1.5/compile 2026-01-25 01:52:28.000000000 +0100 +++ new/xfd-1.1.6/compile 2026-09-20 00:31:42.000000000 +0200 @@ -1,9 +1,9 @@ #! /bin/sh # Wrapper for compilers which do not understand '-c -o'. -scriptversion=2025-06-18.21; # UTC +scriptversion=2026-05-29.23; # UTC -# Copyright (C) 1999-2025 Free Software Foundation, Inc. +# Copyright (C) 1999-2026 Free Software Foundation, Inc. # Written by Tom Tromey <[email protected]>. # # This program is free software; you can redistribute it and/or modify @@ -338,7 +338,10 @@ sleep 1 done # FIXME: race condition here if user kills between mkdir and trap. -trap "rmdir '$lockdir'; exit 1" 1 2 15 +cleanup () { + rmdir "$lockdir" +} +trap "cleanup; exit 1" 1 2 15 # Run the compile. "$@" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/xfd-1.1.5/configure.ac new/xfd-1.1.6/configure.ac --- old/xfd-1.1.5/configure.ac 2026-01-25 01:52:23.000000000 +0100 +++ new/xfd-1.1.6/configure.ac 2026-09-20 00:31:37.000000000 +0200 @@ -23,7 +23,7 @@ # Initialize Autoconf AC_PREREQ([2.60]) -AC_INIT([xfd], [1.1.5], +AC_INIT([xfd], [1.1.6], [https://gitlab.freedesktop.org/xorg/app/xfd/-/issues], [xfd]) AC_CONFIG_SRCDIR([Makefile.am]) AC_CONFIG_HEADERS([config.h]) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/xfd-1.1.5/meson.build new/xfd-1.1.6/meson.build --- old/xfd-1.1.5/meson.build 2026-01-25 01:52:23.000000000 +0100 +++ new/xfd-1.1.6/meson.build 2026-09-20 00:31:37.000000000 +0200 @@ -25,7 +25,7 @@ project( 'xfd', 'c', - version: '1.1.5', + version: '1.1.6', license: 'X11', license_files: 'COPYING', meson_version: '>= 1.1.0', @@ -45,10 +45,12 @@ deps = [] # Internationalization & localization support -use_gettext = cc.has_function('gettext') +libintl_prefix = '#include <libintl.h>' +use_gettext = cc.has_function('gettext', prefix: libintl_prefix) if use_gettext == false dep_libintl = cc.find_library('intl', required: false) - use_gettext = cc.has_function('gettext', dependencies: dep_libintl) + use_gettext = cc.has_function('gettext', dependencies: dep_libintl, + prefix: libintl_prefix) if use_gettext == true deps += dep_libintl endif diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/xfd-1.1.5/missing new/xfd-1.1.6/missing --- old/xfd-1.1.5/missing 2026-01-25 01:52:28.000000000 +0100 +++ new/xfd-1.1.6/missing 2026-09-20 00:31:42.000000000 +0200 @@ -5,7 +5,7 @@ # shellcheck disable=SC2006,SC2268 # we must support pre-POSIX shells -# Copyright (C) 1996-2025 Free Software Foundation, Inc. +# Copyright (C) 1996-2026 Free Software Foundation, Inc. # Originally written by Fran,cois Pinard <[email protected]>, 1996. # This program is free software; you can redistribute it and/or modify diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 --exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh old/xfd-1.1.5/xfd.c new/xfd-1.1.6/xfd.c --- old/xfd-1.1.5/xfd.c 2026-01-25 01:52:23.000000000 +0100 +++ new/xfd-1.1.6/xfd.c 2026-09-20 00:31:37.000000000 +0200 @@ -218,7 +218,7 @@ fputs("\n\n", stderr); usage (1); } - + #ifdef USE_GETTEXT { const char *domaindir;
