Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package twm for openSUSE:Factory checked in at 2025-05-05 22:29:04 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/twm (Old) and /work/SRC/openSUSE:Factory/.twm.new.30101 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "twm" Mon May 5 22:29:04 2025 rev:14 rq:1274520 version:1.0.13 Changes: -------- --- /work/SRC/openSUSE:Factory/twm/twm.changes 2024-02-28 19:47:58.935692338 +0100 +++ /work/SRC/openSUSE:Factory/.twm.new.30101/twm.changes 2025-05-05 23:00:32.658934087 +0200 @@ -1,0 +2,8 @@ +Mon May 5 09:58:28 UTC 2025 - Stefan Dirsch <sndir...@suse.com> + +- Update to 1.0.13 + * bugfix release +- u_src-gen_deftwmrc.sh-is-not-executable-so-run-it-with.patch + * fixes build + +------------------------------------------------------------------- Old: ---- twm-1.0.12.tar.xz New: ---- twm-1.0.13.tar.xz u_src-gen_deftwmrc.sh-is-not-executable-so-run-it-with.patch BETA DEBUG BEGIN: New: * bugfix release - u_src-gen_deftwmrc.sh-is-not-executable-so-run-it-with.patch * fixes build BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ twm.spec ++++++ --- /var/tmp/diff_new_pack.6oGITb/_old 2025-05-05 23:00:33.210957297 +0200 +++ /var/tmp/diff_new_pack.6oGITb/_new 2025-05-05 23:00:33.210957297 +0200 @@ -1,7 +1,7 @@ # # spec file for package twm # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2025 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: twm -Version: 1.0.12 +Version: 1.0.13 Release: 0 Summary: Tab Window Manager for the X Window System License: HPND @@ -26,6 +26,8 @@ Source0: http://xorg.freedesktop.org/releases/individual/app/%{name}-%{version}.tar.xz Source1: twm.desktop Patch1: twm-suse.diff +Patch2: u_src-gen_deftwmrc.sh-is-not-executable-so-run-it-with.patch +BuildRequires: automake BuildRequires: bison BuildRequires: pkg-config BuildRequires: update-desktop-files @@ -52,6 +54,7 @@ %autosetup -p1 %build +autoreconf -fi %configure make %{?_smp_mflags} ++++++ twm-1.0.12.tar.xz -> twm-1.0.13.tar.xz ++++++ ++++ 27603 lines of diff (skipped) ++++++ u_src-gen_deftwmrc.sh-is-not-executable-so-run-it-with.patch ++++++ >From 68dc6f91963d4798880c5f574fdb8a1fd3b1b0b6 Mon Sep 17 00:00:00 2001 From: Stefan Dirsch <sndir...@suse.de> Date: Mon, 5 May 2025 12:48:29 +0200 Subject: [PATCH] src/gen_deftwmrc.sh is not executable, so run it with sh ... --- src/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Makefile.am b/src/Makefile.am index 96fa621..275c370 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -43,6 +43,7 @@ twm_SOURCES = \ events.h \ gc.c \ gc.h \ + gen_deftwmrc.sh \ iconmgr.c \ iconmgr.h \ icons.c \ @@ -68,6 +69,6 @@ twm_SOURCES = \ BUILT_SOURCES = gram.h deftwmrc.c deftwmrc.c: system.twmrc - $(srcdir)/gen_deftwmrc.sh $@ $< + sh $(srcdir)/gen_deftwmrc.sh $@ $< EXTRA_DIST = siconify.bm --- /dev/null 2025-03-14 11:53:06.373078251 +0100 +++ twm/src/gen_deftwmrc.sh 2025-05-05 11:53:46.905028000 +0200 @@ -0,0 +1,17 @@ +#!/bin/sh + +rm -f ${1} +echo '/*' >>${1} +echo ' * This file is generated automatically from the default' >>${1} +echo ' * twm bindings file system.twmrc by the twm Makefile.' >>${1} +echo ' */' >>${1} +echo '' >>${1} +echo 'const unsigned char *defTwmrc[] = {' >>${1} +sed \ + -e '/^#/d' \ + -e 's/"/\\"/g' \ + -e 's/^/ (const unsigned char *) "/' \ + -e 's/$/",/' \ + <${2} \ + >>${1} +echo ' (const unsigned char *) 0 };' >>${1}