Package: elpa-eat Version: 0.9.4-3 Severity: minor Tags: patch Your package ships its terminfo files both in /usr/share/terminfo/e and /usr/share/terminfo/65. Only the former makes sense in Debian, the terminfo library does not even look in the latter directory.
Terminfo files in numerical directories are only useful if ncurses has been configured to support mixed-case filesystems for its database. The attached patch takes care of that. -- System Information: Debian Release: forky/sid APT prefers unstable APT policy: (500, 'unstable'), (101, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386
From efd46bd5956437aa2b48ba9989773c6eb2ae4dd1 Mon Sep 17 00:00:00 2001 From: Sven Joachim <[email protected]> Date: Mon, 27 Jul 2026 18:15:21 +0200 Subject: [PATCH] Do not ship files in /usr/share/terminfo/65 They are only used if the terminfo library has been configured for a filesystem which does not support mixed case. This will never be the case in Debian. --- debian/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/install b/debian/install index 5a1c905..0ab326f 100644 --- a/debian/install +++ b/debian/install @@ -1,2 +1,2 @@ -terminfo /usr/share/ +terminfo/e /usr/share/terminfo integration/* /usr/share/elpa-eat/ -- 2.53.0

