pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/x11/xterm
Module Name: pkgsrc
Committed By: wiz
Date: Wed Jun 14 12:20:03 UTC 2017
Modified Files:
pkgsrc/x11/xterm: Makefile distinfo
Log Message:
Updated xterm to 328.
Patch #328 - 2017/06/01
* revise parser for charClass resource, making these improvements:
+ accept octal and hexadecimal values
+ allow embedded whitespace
+ allow the class after colon to be optional, e.g., to clear
class settings for a range of characters.
* add command-line option -report-charclass.
* fix most lintian warnings about test-package
* add eraseSavedLines resource.
* document DECSED 3 in ctlseqs.ms (report by Ben Longmans).
* improve integration between configure-events and updates for
reported screensize, in particular when switching between vt100 and
tek4014 modes.
* modify selection-highlighting of reverse-video text to keep that
distinct, e.g., by reversing the selection foreground and
background colors as one would expect. This fixes a "useless" case
in the description of highlightColorMode.
* improve fix for Debian #759734, addressing a case where non-colored
cursor would be invisible against reverse-video (see patch #311).
* updates for ReGIS (Ross Combs):
+ the "H" option of the "T" command should multiply by 10, not
20.
+ display unknown glyphs as a solid block.
+ given a succession of text-direction options, use the last.
+ fix the direction of ReGIS slanted text so that negative
values produce oblique output .
+ fix the ReGIS text direction option to only rotate characters
when no following size option is used.
* update terminfo to better match corresponding entries in ncurses,
e.g., u8 pattern to match the VT220, VT420, etc., primary
responses, as well as adding smxx and rmxx.
* fixes from Jörg Sommer:
+ corrected a trace-message regarding maximum graphics-size; it
used the similar ReGIS maximum size which might not be
configured.
+ in do_select_regex, clear selection if there is no match. If
the regex does not match anything around the cursor, the
selection returned must be empty, otherwise the whole line is
treated as a match. This way the command defined by
exec-selectable will not be executed if there is no match.
+ modify limit in do_select_regex to include the character at
the cursor in the match, making it easier to type something
and then hit the key to trigger exec-selectable.
+ If exec-selectable or insert-selection is triggered by a mouse
button click, the position of the mouse pointer should be
used. This makes it easier to address any position on the
window and it makes it possible to use the mouse, e.g., for
applications such as mutt where you cannot move the cursor.
* modify DECRC to save/restore xterm's last-column flag used to
control wrapping behavior rather than manipulating DECAWM
(report/analysis by Mattias Engdegård).
* add configure option --enable-terminfo-env to use the value set by
--with-own-terminfo for the $TERMINFO environment variable. That
variable was set automatically for HPUX, but would be useful in
other systems, e.g., for Solaris (request by Jeff Wieland).
* fix a race condition when setting up a signal handler to timeout if
opening /dev/tty hangs (patch by Tobias Stoeckmann).
* review/cleanup resources which were not in the manual page (report
by Maxwell Anselm):
+ add manual page description as needed.
+ drop resource name for menuBar, as unnecessary.
+ modify fallback numeric value for regisScreenSize resource to
match that for maxGraphicSize.
* updated configure macros CF_ADD_CFLAGS, CF_CC_ENV_FLAGS,
CF_GNU_SOURCE, CF_MATH_LIB, and CF_XOPEN_SOURCE from other
program-changes.
* update config.guess, config.sub
* change “maximum screensize” assumed by resize to 9999x9999, to
accommodate people using the Unreadable font.
* drop Utility from default value of --with-desktop-category (Debian
#780176).
* widen the configure script pattern used for finding related
".desktop" files, including “Terminal”
* several minor improvements to font utility functions:
+ provide for later modification to implement font-sets by
parsing the font resources as comma-separated lists.
+ parse -fn and -fa similarly, using “x:” and “xft:” prefixes
for font name/family strings to distinguish between XLFD and
Xft font specifications.
+ use loops to iterate over font classes
+ use getters/setters for font data to allow for on-demand
lookups.
+ make the debugging trace for missing glyph less verbose since
that interferes with the -report-fonts option.
+ refactor xtermLoadFont to make it clearer how some fonts are
derived from others, e.g., bold, wide.
+ make the triggering and suppressing of font-warnings more
consistent by storing the last state in the widget.
+ reduce font-warnings by checking for repeated warnings.
* add vttests/query-status.pl
* add vttests/closest-rgb
* add special case for displaying soft-hyphen if it happens to fall
at the right margin, and omitting similar case such as the BIDI
markers, where a zero-width character is neither a control
character nor a combining character (Debian #844325).
* modify logic for OSC 52, manipulate selection data, to update the
selection-time to include the latest X events. This fixes some
cases where the selection was invalid, e.g., after an event due to
focus-follows-mouse (report/testcase by Stephane Chauveau).
* revise macro CastMallocN as new macro TextAlloc to make explicit
use of sizeof(char) (prompted by patch by Cade Foster).
* add “Mouse Ops” menu entry and related resources to allow runtime
disabling/enabling of the mouse protocol escape sequences
(discussion with Bob Proulx).
* improve discussion of mouse actions versus protocol in the manual
(discussion with Bob Proulx).
* improve discussion of environment variables in the manual, pointing
out where some features (such as termcap and the System5 COLUMNS
and LINES variables) are used rarely, mainly to support legacy
applications.
* add examples of translations resource for select/paste, and for
font-size changes to the manual.
* minor reordering of some entries in ctlseqs.ms for consistency
(report by Arran Ubels).
* add -s option to 256colors2.pl and 88colors2.pl, to demonstrate
modifying the “system” colors 0–15.
* omit XFT_SPACING property from call to XftPatternBuild, to work
around a bug in fontconfig for handling Google Go fonts, whose
names sort in an order not expected by fontconfig, causing the
request for a monospaced font to return italics, e.g.,
$ fc-match 'Go Mono:spacing=monospace'
Go-Mono-Italic.ttf: "Go Mono" "Italic"
(report by Giacomo Boffi on Stackoverflow).
* modify minstall.in to improve a workaround added to the manual page
in patch #182 to avoid having the C preprocessor used in the imake
configuration strip out the comments in the character classes
section (reports by Ted Unangst, Anthony J Bentley).
To generate a diff of this commit:
cvs rdiff -u -r1.113 -r1.114 pkgsrc/x11/xterm/Makefile
cvs rdiff -u -r1.79 -r1.80 pkgsrc/x11/xterm/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/x11/xterm/Makefile
diff -u pkgsrc/x11/xterm/Makefile:1.113 pkgsrc/x11/xterm/Makefile:1.114
--- pkgsrc/x11/xterm/Makefile:1.113 Fri May 5 16:28:13 2017
+++ pkgsrc/x11/xterm/Makefile Wed Jun 14 12:20:03 2017
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.113 2017/05/05 16:28:13 jperkin Exp $
+# $NetBSD: Makefile,v 1.114 2017/06/14 12:20:03 wiz Exp $
-DISTNAME= xterm-327
+DISTNAME= xterm-328
CATEGORIES= x11
MASTER_SITES= ftp://invisible-island.net/xterm/
EXTRACT_SUFX= .tgz
Index: pkgsrc/x11/xterm/distinfo
diff -u pkgsrc/x11/xterm/distinfo:1.79 pkgsrc/x11/xterm/distinfo:1.80
--- pkgsrc/x11/xterm/distinfo:1.79 Sun Oct 9 21:05:16 2016
+++ pkgsrc/x11/xterm/distinfo Wed Jun 14 12:20:03 2017
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.79 2016/10/09 21:05:16 wiz Exp $
+$NetBSD: distinfo,v 1.80 2017/06/14 12:20:03 wiz Exp $
-SHA1 (xterm-327.tgz) = 4dffabe5662ee19611860b7d8284f237616d0b82
-RMD160 (xterm-327.tgz) = 160735e0848b02c6f6dcc7acaf162b771eb21ae7
-SHA512 (xterm-327.tgz) = d9d9f3b870fea8db9ae3c076a9d85152488b2d392b9b1e2e4ebbeded287ed4911f1f63e5e035d5b3793b2506b993125c6fca437393b435a28aeb519d76147672
-Size (xterm-327.tgz) = 1240131 bytes
+SHA1 (xterm-328.tgz) = d34f8a3331253ee4321f8a0bcdf92ce1f7cf8e54
+RMD160 (xterm-328.tgz) = 7be9dd8925fc278c54030c09d4dab7d23924bde7
+SHA512 (xterm-328.tgz) = 4f3381440394e0cd2d6c4d6645573ab2eac1c1c98e510eb0b3281ed4d2b1082e57ae58b7f756a03704eb275925ae497a1ae6c5907d6ba1b8ec95f92eaf939656
+Size (xterm-328.tgz) = 1264517 bytes
Home |
Main Index |
Thread Index |
Old Index