From 168361ef112c61391a615d8b1f0048b79a2b7237 Mon Sep 17 00:00:00 2001 From: Lukasz Kasprzak Date: Tue, 25 Aug 2026 19:08:14 +0200 Subject: patches: drop generated config.h and binary sections from the diffs The 3.0 patch files each carried a spurious diff section for config.h -- a file the Makefile generates from config.def.h -- plus "Binary files a/timer and b/timer differ" noise. Applying any of them made patch(1) stop and prompt "File to patch:", which stalls a non-interactive apply and prints "1 out of 1 hunk ignored" otherwise. Cause: the diff-generation step cleaned its scratch trees with a glob that matched nothing, and the shell aborts the whole command line on a failed glob, so the cleanup never ran and the build products were left in place. The resulting builds were correct either way, since make regenerates config.h from config.def.h, but the patches were not clean. Each patch now touches only ttym.c and config.def.h. Verified with patch --batch < /dev/null so a prompt is fatal rather than silently skipped: all five apply with no prompt, skip, ignored hunk or fuzz, and compile. Claude-Session: https://claude.ai/code/session_01APLBs8RB1FcUaC4viVkzbP --- patches/ttym-config-file-3.0.diff | 23 ++++------------------- 1 file changed, 4 insertions(+), 19 deletions(-) (limited to 'patches/ttym-config-file-3.0.diff') diff --git a/patches/ttym-config-file-3.0.diff b/patches/ttym-config-file-3.0.diff index 031f105..cc7a14b 100644 --- a/patches/ttym-config-file-3.0.diff +++ b/patches/ttym-config-file-3.0.diff @@ -1,6 +1,6 @@ diff -ruN a/config.def.h b/config.def.h ---- a/config.def.h 2026-08-25 17:18:15.738123728 +0200 -+++ b/config.def.h 2026-08-25 17:18:15.738123728 +0200 +--- a/config.def.h 2026-08-25 19:07:53.233903707 +0200 ++++ b/config.def.h 2026-08-25 19:07:53.233903707 +0200 @@ -1,5 +1,10 @@ /* See LICENSE file for copyright and license details. */ @@ -12,24 +12,9 @@ diff -ruN a/config.def.h b/config.def.h /* progress bar glyphs (ASCII default) */ static const char *const BAR_FILL = ">"; static const char *const BAR_EMPTY = "-"; -diff -ruN a/config.h b/config.h ---- a/config.h 2026-08-25 17:18:15.738123728 +0200 -+++ b/config.h 2026-08-25 17:18:15.738123728 +0200 -@@ -1,5 +1,10 @@ - /* See LICENSE file for copyright and license details. */ - -+/* Defaults below are compile-time. Many can be overridden at runtime by -+ * /etc/ttym.conf and ~/.config/ttym/config; command-line flags override -+ * both. Run `timer --dump-config` for a commented template. See timer(1). -+ */ -+ - /* progress bar glyphs (ASCII default) */ - static const char *const BAR_FILL = ">"; - static const char *const BAR_EMPTY = "-"; -Binary files a/timer and b/timer differ diff -ruN a/ttym.c b/ttym.c ---- a/ttym.c 2026-08-25 17:18:15.738123728 +0200 -+++ b/ttym.c 2026-08-25 17:18:15.738123728 +0200 +--- a/ttym.c 2026-08-25 19:07:53.233903707 +0200 ++++ b/ttym.c 2026-08-25 19:07:53.233903707 +0200 @@ -25,13 +25,15 @@ typedef struct { int quiet; /* -q: suppress completion bell */ -- cgit v1.3