From fe7b53fedec0c0acc06d1463d1a6ca8bb0085f57 Mon Sep 17 00:00:00 2001 From: David Cook Date: Tue, 21 Mar 2023 23:09:20 +0000 Subject: [PATCH] Bug 33168: Prevent debhelper from renaming history.txt to changelog This change prevents debhelper from renaming history.txt to changelog, since that renaming was breaking the Timeline feature in Koha. Another option would've been to rename history.txt to something else but that filename is already embedded in Koha and the Koha release tools, so this seems the safer option. Test plan: 0. Apply patch 1. Build Debian package 2. Confirm that /usr/share/doc/koha-common/history.txt is created and /usr/share/doc/koha-common/changelog.gz is not created Signed-off-by: Mason James Signed-off-by: Marcel de Rooy Signed-off-by: Tomas Cohen Arazi (cherry picked from commit b6f9241d66b8a857dba51d747cb8fb67d2115433) Signed-off-by: Matt Blenkinsop (cherry picked from commit 3b6aac190cacc407472bba24b72154e6b487a35b) Signed-off-by: Lucas Gass (cherry picked from commit 09d1416ad3191b48a9b9a5eabd4575d5ac1b90bc) Signed-off-by: Arthur Suzuki --- debian/rules | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/debian/rules b/debian/rules index 211649ad1d..572d5533cc 100755 --- a/debian/rules +++ b/debian/rules @@ -46,3 +46,7 @@ override_dh_auto_install: override_dh_compress: # exclude history.txt from compression as about.pl needs it uncompressed dh_compress --exclude=history.txt --exclude=contributors.yaml --exclude=teams.yaml + +override_dh_installchangelogs: + # Debian Buster onwards renames history.txt to changelog which breaks Koha's timeline feature + dh_installchangelogs --exclude=history.txt -- 2.39.2