Your message dated Tue, 24 Jan 2023 20:18:45 +0100
with message-id <[email protected]>
has caused the report #1029574,
regarding indent shebang bug and misses LFS support
to be marked as having been forwarded to the upstream software
author(s) [email protected]
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
1029574: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1029574
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Dear indent authors / hello Andrej.
I received the following report from the Debian bug system.
The shebang thing is clearly an upstream bug.
Regarding the LFS issue, I wonder if it would be possible for
the ./configure script to take care of that (I have no idea).
Thanks.
-------- Mensaje reenviado --------
Asunto: Bug#1029574: indent shebang bug and misses LFS support
Resent-Date: Tue, 24 Jan 2023 17:51:02 +0000
Resent-From: Helge Deller <[email protected]>
Resent-To: [email protected]
Resent-CC: Santiago Vila <[email protected]>
Fecha: Tue, 24 Jan 2023 18:48:01 +0100
De: Helge Deller <[email protected]>
Package: indent
Version: 2.2.12
Tags: hppa, patch, lfs, FTBFS
The indent package has a bug in the script "regression/TEST"
which starts with "#/bin/sh" instead of a correct
shebang which would be "#!/bin/sh". This leads to a FTBFS on
the hppa architecture when running virtualized in qemu-user.
Secondly it would be nice if the indent tool would be built
with large file support. Adding future=+lfs to DEB_BUILD_MAINT_OPTIONS
allows that.
Both are fixed with attached patch. Please apply for next upload.
Thanks,
Helge
diff -up ./debian/rules.org ./debian/rules
--- ./debian/rules.org 2023-01-24 17:39:34.776049427 +0000
+++ ./debian/rules 2023-01-24 14:56:10.178242729 +0000
@@ -2,6 +2,8 @@
%:
dh $@
+export DEB_BUILD_MAINT_OPTIONS = future=+lfs
+
package = indent
override_dh_auto_clean:
diff -up ./regression/TEST.org ./regression/TEST
--- ./regression/TEST.org 2023-01-24 17:38:56.199680344 +0000
+++ ./regression/TEST 2023-01-24 17:39:06.359777551 +0000
@@ -1,4 +1,4 @@
-#/bin/sh
+#!/bin/sh
# Compare the output of ../src/indent to correct output
# generated by earlier versions
--- End Message ---