Path to this page:
./
devel/readline,
GNU library that can recall and edit previous input
Branch: CURRENT,
Version: 8.2nb2,
Package name: readline-8.2nb2,
Maintainer: pkgsrc-usersThis is the GNU readline library, which can be linked into applications,
allowing them to re-use previously typed input and additionally to
edit it.
Required to build:[
pkgtools/cwrappers]
Master sites: (Expand)
Filesize: 2972.609 KB
Version history: (Expand)
- (2023-06-20) Updated to version: readline-8.2nb2
- (2022-12-06) Updated to version: readline-8.2nb1
- (2022-10-03) Updated to version: readline-8.2
- (2022-01-17) Updated to version: readline-8.1.2
- (2021-01-04) Updated to version: readline-8.1
- (2019-02-14) Updated to version: readline-8.0
CVS history: (Expand)
2024-03-31 19:14:33 by Jonathan Schleifer | Files touched by this commit (3) |
Log message:
Fix devel/readline on QNX
|
2024-01-13 21:07:34 by Taylor R Campbell | Files touched by this commit (24) |
Log message:
*/builtin.mk: Use ${_CROSS_DESTDIR:U} for build-time file checks.
These are questions about the target system, whose files at
build-time are all relative to ${_CROSS_DESTDIR} if it is defined,
i.e., if USE_CROSS_COMPILE is set to yes.
No change to native builds because ${_CROSS_DESTDIR:U} is empty in
them. (Possible minor change by adding :Q to ${H_FOO} in command
lines, but if this makes a difference it likely fixes problems.)
|
2023-06-20 20:12:00 by Thomas Klausner | Files touched by this commit (1) |
Log message:
readline: fix pkg-config files
Bump PKGREVISION.
|
2023-04-22 00:03:42 by Joerg Sonnenberger | Files touched by this commit (2) |
Log message:
Fix a rather obvious race condition.
|
2022-12-06 07:29:51 by Christopher KOBAYASHI | Files touched by this commit (1) |
Log message:
Add the .pc files into buildlink on the off chance pkg-config changes behavior \
in the future.
|
2022-12-06 06:34:06 by Christopher KOBAYASHI | Files touched by this commit (4) |
Log message:
Add pkgconf .pc files to PLIST for packages that rely on pkgconf
Adjust readline.pc so that it does not depend on a pkgconf-aware termlib.
|
2022-10-03 14:45:34 by Thomas Klausner | Files touched by this commit (2) | |
Log message:
readline: update to 8.2.
New Features in Readline
a. There is now an HS_HISTORY_VERSION containing the version number of the
history library for applications to use.
b. History expansion better understands multiple history expansions that may
contain strings that would ordinarily inhibit history expansion (e.g.,
`abc!$!$').
c. There is a new framework for readline timeouts, including new public
functions to set timeouts and query how much time is remaining before a
timeout hits, and a hook function that can trigger when readline times
out. There is a new state value to indicate a timeout.
d. Automatically bind termcap key sequences for page-up and page-down to
history-search-backward and history-search-forward, respectively.
e. There is a new `fetch-history' bindable command that retrieves the history
entry corresponding to its numeric argument. Negative arguments count back
from the end of the history.
f. `vi-undo' is now a bindable command.
g. There is a new option: `enable-active-region'. This separates control of
the active region and bracketed-paste. It has the same default value as
bracketed-paste, and enabling bracketed paste enables the active region.
Users can now turn off the active region while leaving bracketed paste
enabled.
h. rl_completer_word_break_characters is now `const char *' like
rl_basic_word_break_characters.
i. Readline looks in $LS_COLORS for a custom filename extension
(*.readline-colored-completion-prefix) and uses that as the default color
for the common prefix displayed when `colored-completion-prefix' is set.
j. Two new bindable string variables: active-region-start-color and
active-region-end-color. The first sets the color used to display the
active region; the second turns it off. If set, these are used in place
of terminal standout mode.
k. New readline state (RL_STATE_EOF) and application-visible variable
(rl_eof_found) to allow applications to detect when readline reads EOF
before calling the deprep-terminal hook.
l. There is a new configuration option: --with-shared-termcap-library, which
forces linking the shared readline library with the shared termcap (or
curses/ncurses/termlib) library so applications don't have to do it.
m. Readline now checks for changes to locale settings (LC_ALL/LC_CTYPE/LANG)
each time it is called, and modifies the appropriate locale-specific display
and key binding variables when the locale changes.
|
2022-08-01 20:22:12 by Thomas Klausner | Files touched by this commit (2) |
Log message:
readline: add another --tag to a libtool invocation
|