The readline library
http://www.gnu.org/software/readline/
The readline library is used by the Bourne Again Shell (bash, the standard command interpreter) for easy editing of command lines. This includes history and search functionality.
- Developed at Base:System
- Sources inherited from project openSUSE:Factory
-
7
derived packages
- Download package
-
Checkout Package
osc -A https://api.opensuse.org checkout openSUSE:Factory:zSystems/readline && cd $_
- Create Badge
Refresh
Refresh
Source Files
Filename | Size | Changed |
---|---|---|
baselibs.conf | 0000000333 333 Bytes | |
readline-5.2-conf.patch | 0000004313 4.21 KB | |
readline-6.2-metamode.patch | 0000000385 385 Bytes | |
readline-6.2-xmalloc.dif | 0000001098 1.07 KB | |
readline-6.3-destdir.patch | 0000006532 6.38 KB | |
readline-6.3-input.dif | 0000001511 1.48 KB | |
readline-6.3-rltrace.patch | 0000000987 987 Bytes | |
readline-7.0-screen.patch | 0000001799 1.76 KB | |
readline-8.2.dif | 0000005965 5.83 KB | |
readline-8.2.tar.gz | 0003043952 2.9 MB | |
readline-8.2.tar.gz.sig | 0000000095 95 Bytes | |
readline.changes | 0000129025 126 KB | |
readline.keyring | 0000001321 1.29 KB | |
readline.spec | 0000009199 8.98 KB | |
readline82-001 | 0000001198 1.17 KB | |
readline82-001.sig | 0000000094 94 Bytes | |
readline82-002 | 0000001134 1.11 KB | |
readline82-002.sig | 0000000095 95 Bytes | |
readline82-003 | 0000001201 1.17 KB | |
readline82-003.sig | 0000000095 95 Bytes | |
readline82-004 | 0000001708 1.67 KB | |
readline82-004.sig | 0000000095 95 Bytes | |
readline82-005 | 0000001501 1.47 KB | |
readline82-005.sig | 0000000095 95 Bytes | |
readline82-006 | 0000003031 2.96 KB | |
readline82-006.sig | 0000000095 95 Bytes | |
readline82-007 | 0000001422 1.39 KB | |
readline82-007.sig | 0000000095 95 Bytes |
Revision 15 (latest revision is 17)
Ana Guerrero (anag+factory)
accepted
request 1127840
from
Dr. Werner Fink (WernerFink)
(revision 15)
- Add upstream patch readline82-002 * It's possible for readline to try to zero out a line that's not null- terminated, leading to a memory fault. - Add upstream patch readline82-003 - Add upstream patch readline82-004 - Add upstream patch readline82-005 * If an application is using readline in callback mode, and a signal arrives after readline checks for it in rl_callback_read_char() but before it restores the application's signal handlers, it won't get processed until the next time the application calls rl_callback_read_char(). Readline needs to check for and resend any pending signals after restoring the application's signal handlers. - Add upstream patch readline82-006 * This is a variant of the same issue as the one fixed by patch 5. In this case, the signal arrives and is pending before readline calls rl_getc(). When this happens, the pending signal will be handled by the loop, but may alter or destroy some state that the callback uses. Readline needs to treat this case the same way it would if a signal interrupts pselect/select, so compound operations like searches and reading numeric arguments get cleaned up properly. - Add upstream patch readline82-007 * If readline is called with no prompt, it should display a newline if return is typed on an empty line. It should still suppress the final newline if return is typed on the last (empty) line of a multi-line command.
Comments 0