Control: found -1 2.1.0-2

On 2023-06-20 10:05 -0400, James McCoy wrote:

> On Mon, Jun 19, 2023 at 09:42:39PM +0200, Sven Joachim wrote:
>> FYI, the ncurses-base package in experimental has moved the terminfo
>> files to /usr/share/terminfo, and indeed the parse-terminfo autopkgtest
>> does not do anything[1].  Maybe it is time to upload the pending fixes,
>> now that Bookworm has been released?
>
> Thanks for the reminder!  I'll do that soon.

Thanks for the upload!  Unfortunately I managed to botch the test, and
on [1] you can see that the autopkgtest still does nothing with
ncurses-base from experimental :-(.  The attached patch takes care of
that, and I have also created a new merge request[2].

Sorry for the inconvenience.

Cheers,
       Sven


1. 
https://ci.debian.net/data/autopkgtest/unstable/amd64/u/unibilium/34691146/log.gz
2. https://salsa.debian.org/jamessan/unibilium/-/merge_requests/4

From 4adbb343c2c1cd69ed59d673b83c4bcf797d2b25 Mon Sep 17 00:00:00 2001
From: Sven Joachim <svenj...@gmx.de>
Date: Thu, 22 Jun 2023 11:48:40 +0200
Subject: [PATCH] autopkgtest: Fix path to terminfo files

Contrary to what the commit message said, commit 1ee72606 did not look
up the terminfo files under /usr/share/terminfo, but rather directly
under /usr/share where they cannot be found.

Closes: #1028231
---
 debian/tests/parse-terminfo | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/tests/parse-terminfo b/debian/tests/parse-terminfo
index 042a80e..0e2f81b 100755
--- a/debian/tests/parse-terminfo
+++ b/debian/tests/parse-terminfo
@@ -10,7 +10,7 @@ FAIL=0
 TESTS=0
 for term in ansi xterm screen rxvt-unicode; do
   libterm=/lib/terminfo/${term%${term#?}}/${term}
-  usrterm=/usr/share/${term%${term#?}}/${term}
+  usrterm=/usr/share/terminfo/${term%${term#?}}/${term}
   if [ -e "$libterm" ]; then
     printf "# Parsing $libterm ...\\n"
     TESTS=$((TESTS + 1))
--
2.40.1

Reply via email to