OBS User unknown 2007-03-25 09:48:23 +00:00 committed by Git OBS Bridge
parent 0044bc96bd
commit 4f1ed6aa16
5 changed files with 140 additions and 12520 deletions

3
TODO
View File

@ -1,3 +0,0 @@
- switch to configure instead of imake; might be problematic as the
upstream maintainer says, that configure is not maintained and he
doesn't seem to accept any autotools patches

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,72 @@
-------------------------------------------------------------------
Sat Mar 24 22:03:14 CET 2007 - sndirsch@suse.de
- Patch #225 - 2007/3/24:
* add useClipping resource to allow clipping to be disabled.
* use XftDrawSetClipRectangles to work around Xft pixel-trash
(report by Reuben Thomas).
* add configure option --enable-tcap-fkeys, and resource
tcapFunctionKeys, which can be used to tell xterm to use
function-key definitions from the termcap (or terminfo) which it
uses to set $TERM on startup.
* add resources altIsNotMeta and altSendsEscape to allow one to use
Alt-keys like the meta-key even if they are bound to different
keycodes (prompted by discussion with Daniel Jacobowitz).
* revert a change from [229]patch #216 that unnecessarily made the
meta modifier override the eightBitInput resource if the alt- and
meta-modifiers happened to overlap (report/patch by Daniel
Jacobowitz).
* correct associated font for active icon for colored text (broken
in [230]patch #224).
* correct ifdef's for Darwin (patch by Emanuele Giaquinta).
* add highlightTextColor resource, and options -selfg, -selbg like
xwsh (adapted from patch by Victor Vaile).
* revise find_closest_color() function to address concern about
borrowing from Tcl/Tk (request by Dan McNichol).
* add "spawn-new-terminal" action, which can be assigned to key
translation, allowing one to spawn a new copy of xterm using the
current process' working directory (adapted from patch by Daniel
Colascio).
* improve select/paste between UTF-8 and Latin1 xterms by adapting
the translations from [231]patch #185. Extend that to include
Unicode fullwidth forms FF00-FF5E. Also modify select/paste of DEC
line-drawing characters in Latin1 mode to use ASCII characters.
* add "Enable Bell Urgency" to VT Options menu, removed "Enable
Margin Bell".
* add bellIsUrgent resource to control whether the Urgency hint is
set/reset.
* modify to set Urgency window manager hint on bell, reset it on
Focus-In event (patch by Emanuele Giaquinta).
* add --disable-setgid configure option (request by Miroslav
Lichvar).
* fix a possible infinite loop in last change to dabbrev-expand()
(patch by Emanuele Giaquinta).
* modify initialization to set the pty erase value if the erase is
set in the ttyModes resource. This overrides the ptyInitialErase
setting (request by Lluis Batlle i Rossell).
* add initialFont resource to xterm widget, like tek-widget (Debian
#299669).
* amend change to boldMode from [232]patch #223 for Debian #347790.
As noted in Debian #412599, that made xterm no longer match the
documented behavior. Add new resource alwaysBoldMode to allow
overriding the comparison between normal/bold fonts when deciding
whether to use overstriking to simulate bold fonts.
* restore background color in ClearCurBackground(), omitted in
changes for [233]patch #223 (report by Miroslav Lichvar).
* correct logic for repainting double-width TrueType characters
(prompted by test-case for Novell #246573).
* add a check to avoid trying to repeat a multibyte character
(report by Sami Farin).
* modify parameter to XftNameParse() to select wide face-name as
needed, to make -fd option work (patch by Mike Fabian, Novell
#246573).
* correct logic for mouse highlight tracking's abort sequence,
broken in a restructuring modification from [234]patch #224
(report by Thomas Wolff).
* revert the simplification of blinking cursor, since that broke the
xor'ing introduced in [235]patch #193 (report by Thomas Wolff).
- obsoletes xterm-224i.patch
-------------------------------------------------------------------
Thu Mar 22 17:35:02 CET 2007 - mfabian@suse.de

View File

@ -1,5 +1,5 @@
#
# spec file for package xterm (Version 224)
# spec file for package xterm (Version 225)
#
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
# This file and all modifications and additions to the pristine
@ -17,12 +17,11 @@ License: X11/MIT
Group: System/X11/Utilities
Provides: xorg-x11:/usr/X11R6/bin/xterm XFree86:/usr/X11R6/bin/xterm
Autoreqprov: on
Version: 224
Release: 8
Version: 225
Release: 1
Summary: The basic X terminal program
Source: %name.tar.gz
Source1: luitx
Source2: TODO
Source3: Backarrow2Delete
Source4: Backarrow2BackSpace
Source5: README.SuSE
@ -33,7 +32,6 @@ Source9: 20x20ko.bdf.bz2
Patch1: p_xterm-settings.diff
Patch2: p_xterm-sigwinch.diff
Patch3: bug-246573-tentative-patch.diff
Patch4: ftp://invisible-island.net/temp/xterm-224i.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
@ -154,7 +152,6 @@ Authors:
%setup -n xterm-%version -b7
%patch1 -p0 -b .xterm-settings
%patch2 -p0 -b .xterm-sigwinch
%patch4 -p1
%patch3 -p1
cp $RPM_SOURCE_DIR/*bdf.bz2 .
bunzip2 *.bdf.bz2
@ -260,6 +257,72 @@ rm -rf $RPM_BUILD_ROOT
/usr/share/pixmaps/terminal.png
%changelog
* Sat Mar 24 2007 - sndirsch@suse.de
- Patch #225 - 2007/3/24:
* add useClipping resource to allow clipping to be disabled.
* use XftDrawSetClipRectangles to work around Xft pixel-trash
(report by Reuben Thomas).
* add configure option --enable-tcap-fkeys, and resource
tcapFunctionKeys, which can be used to tell xterm to use
function-key definitions from the termcap (or terminfo) which it
uses to set $TERM on startup.
* add resources altIsNotMeta and altSendsEscape to allow one to use
Alt-keys like the meta-key even if they are bound to different
keycodes (prompted by discussion with Daniel Jacobowitz).
* revert a change from [229]patch #216 that unnecessarily made the
meta modifier override the eightBitInput resource if the alt- and
meta-modifiers happened to overlap (report/patch by Daniel
Jacobowitz).
* correct associated font for active icon for colored text (broken
in [230]patch #224).
* correct ifdef's for Darwin (patch by Emanuele Giaquinta).
* add highlightTextColor resource, and options -selfg, -selbg like
xwsh (adapted from patch by Victor Vaile).
* revise find_closest_color() function to address concern about
borrowing from Tcl/Tk (request by Dan McNichol).
* add "spawn-new-terminal" action, which can be assigned to key
translation, allowing one to spawn a new copy of xterm using the
current process' working directory (adapted from patch by Daniel
Colascio).
* improve select/paste between UTF-8 and Latin1 xterms by adapting
the translations from [231]patch #185. Extend that to include
Unicode fullwidth forms FF00-FF5E. Also modify select/paste of DEC
line-drawing characters in Latin1 mode to use ASCII characters.
* add "Enable Bell Urgency" to VT Options menu, removed "Enable
Margin Bell".
* add bellIsUrgent resource to control whether the Urgency hint is
set/reset.
* modify to set Urgency window manager hint on bell, reset it on
Focus-In event (patch by Emanuele Giaquinta).
* add --disable-setgid configure option (request by Miroslav
Lichvar).
* fix a possible infinite loop in last change to dabbrev-expand()
(patch by Emanuele Giaquinta).
* modify initialization to set the pty erase value if the erase is
set in the ttyModes resource. This overrides the ptyInitialErase
setting (request by Lluis Batlle i Rossell).
* add initialFont resource to xterm widget, like tek-widget (Debian
[#299669]).
* amend change to boldMode from [232]patch #223 for Debian #347790.
As noted in Debian #412599, that made xterm no longer match the
documented behavior. Add new resource alwaysBoldMode to allow
overriding the comparison between normal/bold fonts when deciding
whether to use overstriking to simulate bold fonts.
* restore background color in ClearCurBackground(), omitted in
changes for [233]patch #223 (report by Miroslav Lichvar).
* correct logic for repainting double-width TrueType characters
(prompted by test-case for Novell #246573).
* add a check to avoid trying to repeat a multibyte character
(report by Sami Farin).
* modify parameter to XftNameParse() to select wide face-name as
needed, to make -fd option work (patch by Mike Fabian, Novell
[#246573]).
* correct logic for mouse highlight tracking's abort sequence,
broken in a restructuring modification from [234]patch #224
(report by Thomas Wolff).
* revert the simplification of blinking cursor, since that broke the
xor'ing introduced in [235]patch #193 (report by Thomas Wolff).
- obsoletes xterm-224i.patch
* Thu Mar 22 2007 - mfabian@suse.de
- add ftp://invisible-island.net/temp/xterm-224i.patch
(obsoletes fix-fd_option.diff and fixes the redraw problems

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5613c6933f0a71bc2db7ae8f0d7292e82da026aba39d4e31099559fc24c8bb21
size 811925
oid sha256:d21ca1b0c9f47da42944b1d1c06f50c7f8ac541cd6047edacfc5837e331af47e
size 821717