This commit is contained in:
parent
ea474e86b0
commit
0b756dde69
@ -0,0 +1,12 @@
|
||||
diff -ru xterm-228.orig/XTerm.ad xterm-228/XTerm.ad
|
||||
--- xterm-228.orig/XTerm.ad 2007-03-18 23:41:40.000000000 +0100
|
||||
+++ xterm-228/XTerm.ad 2007-07-24 17:30:25.000000000 +0200
|
||||
@@ -4,7 +4,7 @@
|
||||
*saveLines: 1024
|
||||
|
||||
*SimpleMenu*BackingStore: NotUseful
|
||||
-*SimpleMenu*menuLabel.font: -adobe-helvetica-bold-r-normal--*-120-*-*-*-*-iso8859-*
|
||||
+*SimpleMenu*menuLabel.font: -adobe-helvetica-bold-r-normal--*-120-*-*-*-*-iso*-*
|
||||
*SimpleMenu*menuLabel.vertSpace: 100
|
||||
*SimpleMenu*HorizontalMargins: 16
|
||||
*SimpleMenu*Sme.height: 16
|
@ -1,3 +1,52 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 24 17:25:38 CEST 2007 - mfabian@suse.de
|
||||
|
||||
- update to xterm-228.
|
||||
* modify configure script to permit combining --with-utempter and
|
||||
--enable-setuid, e.g., for using xterm with the utempter library
|
||||
on FreeBSD (report by Andriy Gapon).
|
||||
* modify "Quit" menu entry to override the -hold command-line
|
||||
option.
|
||||
* add a check in the startup error-reporting to avoid writing to
|
||||
pipe when it has not been opened. In that case, report errors
|
||||
directly to the standard error.
|
||||
* add OPT_READLINE definition to xtermcfg.hin, overlooked in
|
||||
[232]patch #205 (report by Kalle Olavi Niemitalo).
|
||||
* modify 88colors2.pl and 256colors2.pl, adding -r option to reverse
|
||||
the palettes for the extended colors.
|
||||
* check for partial overwrite or deletion of multi-column characters
|
||||
in several cases, e.g., insert-character, delete-character, etc.,
|
||||
and fill the remainder of the cells used by the multi-column
|
||||
characters affected with blanks.
|
||||
* correct character-class codes in wide-character mode for
|
||||
characters 215, 247 (see also [233]patch #165).
|
||||
* fix missing assignment for UTF-8 parsing in widget initialization
|
||||
(Debian #403360).
|
||||
* correct index expression used to set line-wrapping flag, making
|
||||
selection from scrollback work consistently (Debian #430121,
|
||||
report by Vincent Lefevre).
|
||||
* amend changes to handshake in [234]patch #226 to accommodate
|
||||
Solaris, which relies on the extra setting of the terminal size
|
||||
after I/O initialization. Do this by adding new resource
|
||||
ptySttySize, which is false for Linux and MacOS X, i.e., true for
|
||||
for Solaris and other SVR4 platforms, as well as FreeBSD (reports
|
||||
by David Wood, Renato Botelho).
|
||||
* check for X events after cursor-left, and carriage return,
|
||||
consistent with indexing operations (comments by Vegard Nossum and
|
||||
Ingo Molnar on a mailing-list).
|
||||
* initialize the .keyboard structure, needed for some platforms
|
||||
(such as Solaris) after [235]patch #227 fixes for keysyms (patch
|
||||
by David Wood).
|
||||
* update config.guess, config.sub
|
||||
- Bugzilla #293793: avoid requiring the an iso8859* version of
|
||||
adobe-helvetica for the menus. The menus are ASCII only anyway at
|
||||
the moment, it doesn't matter at all whether a Unicode font
|
||||
(iso10646-1) or any of the iso8859* fonts is used, they are all
|
||||
identical in the ASCII region anyway.
|
||||
Using the iso* wildcard makes xterm work even if the recoded
|
||||
versions of the bitmap fonts are missing in a minimal installation
|
||||
and only the Unicode versions are there.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 12 17:19:32 CEST 2007 - werner@suse.de
|
||||
|
||||
|
54
xterm.spec
54
xterm.spec
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package xterm (Version 227)
|
||||
# spec file for package xterm (Version 228)
|
||||
#
|
||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# This file and all modifications and additions to the pristine
|
||||
@ -18,8 +18,8 @@ License: X11/MIT
|
||||
Group: System/X11/Utilities
|
||||
Provides: xorg-x11:/usr/X11R6/bin/xterm XFree86:/usr/X11R6/bin/xterm
|
||||
Autoreqprov: on
|
||||
Version: 227
|
||||
Release: 4
|
||||
Version: 228
|
||||
Release: 1
|
||||
Summary: The basic X terminal program
|
||||
Source: %name.tar.gz
|
||||
Source1: luitx
|
||||
@ -35,6 +35,7 @@ Source20: snooper.tar.bz2
|
||||
Patch1: p_xterm-settings.diff
|
||||
Patch2: p_xterm-sigwinch.diff
|
||||
Patch3: bug-246573-tentative-patch.diff
|
||||
Patch293793: bugzilla-293793-do-not-insist-on-iso8859-fonts-for-the-menu.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
|
||||
%description
|
||||
@ -156,6 +157,7 @@ Authors:
|
||||
%patch1 -p0 -b .xterm-settings
|
||||
%patch2 -p0 -b .xterm-sigwinch
|
||||
%patch3 -p1
|
||||
%patch293793 -p1
|
||||
cp $RPM_SOURCE_DIR/*bdf.bz2 .
|
||||
bunzip2 *.bdf.bz2
|
||||
|
||||
@ -260,6 +262,52 @@ rm -rf $RPM_BUILD_ROOT
|
||||
/usr/share/pixmaps/*
|
||||
|
||||
%changelog
|
||||
* Tue Jul 24 2007 - mfabian@suse.de
|
||||
- update to xterm-228.
|
||||
* modify configure script to permit combining --with-utempter and
|
||||
--enable-setuid, e.g., for using xterm with the utempter library
|
||||
on FreeBSD (report by Andriy Gapon).
|
||||
* modify "Quit" menu entry to override the -hold command-line
|
||||
option.
|
||||
* add a check in the startup error-reporting to avoid writing to
|
||||
pipe when it has not been opened. In that case, report errors
|
||||
directly to the standard error.
|
||||
* add OPT_READLINE definition to xtermcfg.hin, overlooked in
|
||||
[232]patch #205 (report by Kalle Olavi Niemitalo).
|
||||
* modify 88colors2.pl and 256colors2.pl, adding -r option to reverse
|
||||
the palettes for the extended colors.
|
||||
* check for partial overwrite or deletion of multi-column characters
|
||||
in several cases, e.g., insert-character, delete-character, etc.,
|
||||
and fill the remainder of the cells used by the multi-column
|
||||
characters affected with blanks.
|
||||
* correct character-class codes in wide-character mode for
|
||||
characters 215, 247 (see also [233]patch #165).
|
||||
* fix missing assignment for UTF-8 parsing in widget initialization
|
||||
(Debian #403360).
|
||||
* correct index expression used to set line-wrapping flag, making
|
||||
selection from scrollback work consistently (Debian #430121,
|
||||
report by Vincent Lefevre).
|
||||
* amend changes to handshake in [234]patch #226 to accommodate
|
||||
Solaris, which relies on the extra setting of the terminal size
|
||||
after I/O initialization. Do this by adding new resource
|
||||
ptySttySize, which is false for Linux and MacOS X, i.e., true for
|
||||
for Solaris and other SVR4 platforms, as well as FreeBSD (reports
|
||||
by David Wood, Renato Botelho).
|
||||
* check for X events after cursor-left, and carriage return,
|
||||
consistent with indexing operations (comments by Vegard Nossum and
|
||||
Ingo Molnar on a mailing-list).
|
||||
* initialize the .keyboard structure, needed for some platforms
|
||||
(such as Solaris) after [235]patch #227 fixes for keysyms (patch
|
||||
by David Wood).
|
||||
* update config.guess, config.sub
|
||||
- Bugzilla #293793: avoid requiring the an iso8859* version of
|
||||
adobe-helvetica for the menus. The menus are ASCII only anyway at
|
||||
the moment, it doesn't matter at all whether a Unicode font
|
||||
(iso10646-1) or any of the iso8859* fonts is used, they are all
|
||||
identical in the ASCII region anyway.
|
||||
Using the iso* wildcard makes xterm work even if the recoded
|
||||
versions of the bitmap fonts are missing in a minimal installation
|
||||
and only the Unicode versions are there.
|
||||
* Thu Jul 12 2007 - werner@suse.de
|
||||
- no longer overwrite translation for the key ALT, use altIsNotMeta
|
||||
to leave it for users choise using Meta or Alt mode (bug #262330)
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:37ec72c7ea051b0d0599a97e9c6f003a93e9f7c2cd3c997e285a2bbb50ca8a91
|
||||
size 836997
|
||||
oid sha256:221b6f533e888a616cc7aad6734db180c0e1b19382f1af03b4876f89e3d74f2b
|
||||
size 841482
|
||||
|
Loading…
x
Reference in New Issue
Block a user