Received: by mail.netbsd.org (Postfix, from userid 605) id 023B884F87; Tue, 9 Jan 2024 20:12:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4D79184FB0 for ; Tue, 9 Jan 2024 20:11:47 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id mUlrhPP4i6Og for ; Tue, 9 Jan 2024 20:11:46 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9CC9784EBA for ; Tue, 9 Jan 2024 20:11:46 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9402BFA42; Tue, 9 Jan 2024 20:11:46 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_17048311062620" MIME-Version: 1.0 Date: Tue, 9 Jan 2024 20:11:46 +0000 From: "pin" Subject: CVS commit: pkgsrc/x11/xterm To: pkgsrc-changes@NetBSD.org Reply-To: pin@netbsd.org X-Mailer: log_accum Message-Id: <20240109201146.9402BFA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_17048311062620 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: pin Date: Tue Jan 9 20:11:46 UTC 2024 Modified Files: pkgsrc/x11/xterm: Makefile distinfo Log Message: x11/xterm: update to 389 Patch #389 - 2024/01/01 - interchange variables in subparameter parsing, fixing a bug where subparameters after the first parameter could be misidentified (patch by Adam Saponara). - correct popping of icon/window titles in a case where only one was pushed from patch #385 changes. - add XTQMODKEYS response in DECRQSS, as alternative for vim. - correct DECCIR encoded information on character set size, handle a VT525 quirk, and add DECST8C (Windows Terminal #14984). - improve DECRQCRA (prompted by discussion with James Holderness, Windows Terminal #14974). - add part of VT525 color controls: - DECAC, to update default foreground/background, respond to DECRQSS - DECATC, to respond with DECRQSS - prevent Unicode non-characters from being printed (prompted by patch by Grady Martin). - modify send_SGR() to avoid modifying colors 16 to 255 in printed output (patch by Grady Martin). - minor cleanup of miscellaneous error-codes with ERROR_MISC. - remove legacy CSI 53 for locator status, corrected in patch #294. - modify DECRQUPSS and DECAUPSS feature to support VT5xx character sets (report by Thomas Wolff). - improve configure script: - reduce configure-check compiler warnings (prompted by Florian Weimer, Redhat #2251945) - improve usage messages in configure script to make it clearer when an option value is optional. - improve EWMH handling (report/analysis by Edward Rosten) - reset _NET_WM_STATE_HIDDEN flag from _NET_WM_STATE before mapping the window to deiconify. - cache X properties to reduce latency (adapted from patch by Edward Rosten). To generate a diff of this commit: cvs rdiff -u -r1.150 -r1.151 pkgsrc/x11/xterm/Makefile cvs rdiff -u -r1.109 -r1.110 pkgsrc/x11/xterm/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_17048311062620 Content-Disposition: inline Content-Length: 1454 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/xterm/Makefile diff -u pkgsrc/x11/xterm/Makefile:1.150 pkgsrc/x11/xterm/Makefile:1.151 --- pkgsrc/x11/xterm/Makefile:1.150 Sun Nov 12 13:24:42 2023 +++ pkgsrc/x11/xterm/Makefile Tue Jan 9 20:11:46 2024 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.150 2023/11/12 13:24:42 wiz Exp $ +# $NetBSD: Makefile,v 1.151 2024/01/09 20:11:46 pin Exp $ -DISTNAME= xterm-388 -PKGREVISION= 1 +DISTNAME= xterm-389 CATEGORIES= x11 MASTER_SITES= https://invisible-island.net/archives/xterm/ EXTRACT_SUFX= .tgz Index: pkgsrc/x11/xterm/distinfo diff -u pkgsrc/x11/xterm/distinfo:1.109 pkgsrc/x11/xterm/distinfo:1.110 --- pkgsrc/x11/xterm/distinfo:1.109 Tue Oct 31 16:18:09 2023 +++ pkgsrc/x11/xterm/distinfo Tue Jan 9 20:11:46 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.109 2023/10/31 16:18:09 pin Exp $ +$NetBSD: distinfo,v 1.110 2024/01/09 20:11:46 pin Exp $ -BLAKE2s (xterm-388.tgz) = e06fc232506ab5c1bc59e6e552e887207aec80467ea03067c445c50aa17ef955 -SHA512 (xterm-388.tgz) = 7ded1c32b18e629222c9109dc9eb206511762447f07a1043fb63802f036d6d685d332697edd46556c07e6fb5ca95f9bcf836c48d05bd72d626bb90dfa1bfc21a -Size (xterm-388.tgz) = 1548336 bytes +BLAKE2s (xterm-389.tgz) = 59fbfc9c66d14a1cfb45acafbd5f14495089f39d34c7fd902af6fee2c583c7c4 +SHA512 (xterm-389.tgz) = a87703692d621f38670c85be3495aa3840de5e53136dc7be01b3b7003add6109310cc583ac5f0ac1f67e588628336a4b48e947f8d1a326d33a804e2c164890fc +Size (xterm-389.tgz) = 1579767 bytes --_----------=_17048311062620--