From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1E69A1382C5 for ; Tue, 9 Jun 2020 00:58:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2D04BE0871; Tue, 9 Jun 2020 00:58:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 15B01E0871 for ; Tue, 9 Jun 2020 00:58:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5903134F1F2 for ; Tue, 9 Jun 2020 00:58:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ECFAA1EE for ; Tue, 9 Jun 2020 00:58:36 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1591664278.ffc70b10ddab2d9b74b60cf9036af0185ff17066.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: lib/portage/ X-VCS-Repository: proj/portage X-VCS-Files: lib/portage/output.py X-VCS-Directories: lib/portage/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: ffc70b10ddab2d9b74b60cf9036af0185ff17066 X-VCS-Branch: master Date: Tue, 9 Jun 2020 00:58:36 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1d729d12-682c-402a-829c-683f6bee5f67 X-Archives-Hash: 749a5b72fa709b480b7ee610363ef376 commit: ffc70b10ddab2d9b74b60cf9036af0185ff17066 Author: Kirill Chibisov kchibisov com> AuthorDate: Mon Jun 8 17:07:12 2020 +0000 Commit: Zac Medico gentoo org> CommitDate: Tue Jun 9 00:57:58 2020 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=ffc70b10 xtermTitle: support alacritty alacritty terminfo is included in ncurses-6.2 and so it is picked up by default on most systems using alacritty terminal emulator, which causes an issue of portage not updating window title. Closes: https://github.com/gentoo/portage/pull/555 Signed-off-by: Kirill Chibisov kchibisov.com> Signed-off-by: Zac Medico gentoo.org> lib/portage/output.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/portage/output.py b/lib/portage/output.py index 1070d0ef3..cf799f362 100644 --- a/lib/portage/output.py +++ b/lib/portage/output.py @@ -234,7 +234,7 @@ def nc_len(mystr): tmp = re.sub(esc_seq + "^m]+m", "", mystr); return len(tmp) -_legal_terms_re = re.compile(r'^(xterm|xterm-color|Eterm|aterm|rxvt|screen|kterm|rxvt-unicode|gnome|interix|tmux|st-256color)') +_legal_terms_re = re.compile(r'^(xterm|xterm-color|Eterm|aterm|rxvt|screen|kterm|rxvt-unicode|gnome|interix|tmux|st-256color|alacritty)') _disable_xtermTitle = None _max_xtermTitle_len = 253