Rxvt X Terminal with Unicode Support
http://software.schmorp.de/#rxvt-unicode
rxvt-unicode is a clone of the well-known terminal emulator rxvt,
modified to store text in Unicode (either UCS-2 or UCS-4) and to use
locale-correct input and output. It also supports mixing multiple fonts
at the same time, including Xft fonts.
Authors:
--------
Marc Lehmann
- Devel package for openSUSE:Factory
-
6
derived packages
- Links to openSUSE:Factory / rxvt-unicode
- Has a link diff
- Download package
-
Checkout Package
osc -A https://api.opensuse.org checkout X11:terminals/rxvt-unicode && cd $_
- Create Badge
Refresh
Refresh
Source Files
Filename | Size | Changed |
---|---|---|
_link | 0000000124 124 Bytes | |
rxvt-unicode-0001-Prefer-XDG_RUNTIME_DIR-over-the- |
0000000792 792 Bytes | |
rxvt-unicode-256color.desktop | 0000000286 286 Bytes | |
rxvt-unicode-9.20-CVE-2008-1142-DISPLAY.patch | 0000000965 965 Bytes | |
rxvt-unicode-9.21-xsubpp.patch | 0000000640 640 Bytes | |
rxvt-unicode-9.21.tar.bz2 | 0000925293 904 KB | |
rxvt-unicode-rpmlintrc | 0000000048 48 Bytes | |
rxvt-unicode.README.SuSE | 0000001001 1001 Bytes | |
rxvt-unicode.changes | 0000051554 50.3 KB | |
rxvt-unicode.desktop | 0000000245 245 Bytes | |
rxvt-unicode.spec | 0000005886 5.75 KB |
Revision 33 (latest revision is 67)
Marcus Meissner (msmeissn)
accepted
request 312617
from
Ondřej Súkup (mimi_vx)
(revision 33)
- update to 9.21 - fix pixel droppings on overdraw when a secondary core font has the same height but different ascent. - implement cvvis in terminfo as blinking cursor, to distinguish it from cnorm (emacs uses cvvis which is commonly a blinking cursor). - when xft support was compiled in, colour queries erroneously returned premultiplied values, this also affected internal queries, for example when calculating faded colour. alpha is now divided out when possible, which is more correct but loses colour resolution. - add DECSCUSR xterm extension to set the cursor to a vertical bar. - add 'extension:string' action, and associated on_action perl hook, for keysym resources that invokes actions provided by perl extensions. The 'perl:string' action and on_user_command hook are deprecated but still supported. - add 'builtin-string' action for keysym resources that restores string mappings for keys that have predefined actions in urxvt. - add -k option to urxvtc for killing the daemon process. - document urxvtd's -e/--eval option that was implemented in 9.16, but not documented. - add -dockapp option to make the wm treat urxvt as a dockapp. - add -mc option and multiClickTime resource to set the maximum time between multi-click select events (patch by Joe Peterson). - new 'eval' extension to evaluate arbitrary perl code with keysym bindings. The extension also provides methods that implement basic actions, such as pasting selections and scrolling. - the macosx-clipboard and macosx-clipboard-native extensions have been removed. - kuake extension now uses the kuake.hotkey resource to specify the hotkey. - new 'matcher:select' mode of matcher to iterate over the matches with the keyboard. - the 'matcher:list' feature of matcher now honours the launcher associated to a matched pattern.
Comments 4
With the recent update, the 256color version of the binaries are all missing in the generated RPM (urxvt-256color, urxvtc-256color, urxvtd-256color, ....)
This is because of install cleaning the buildroot, then building and installing 88 color version. Not sure though if this is related to a specific version of rpmbuild or spec file itself.
I have managed to tackle the problem mentioned by @bobbie424242 by adding:
%define __spec_install_pre %{___build_pre}\
%{__mkdir_p} "%{dirname:%{buildroot}}"\
%{__mkdir_p} "%{buildroot}"\
%{nil}
(sorry, formatting went wrong) at the top of the spec file. Works, but I'm not sure if this is a "kocher" way to handle. Looks like the problem is related to definition of this macro in/usr/lib/rpm/platform/x86_64-linux
(rpm package).I would rather fix the build that it works without overriding the macro.
In doubt we can just use a _multibuild file to to build the 256color version