| Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
| Name: bash | Distribution: openSUSE 11.4 |
| Version: 4.1 | Vendor: openSUSE |
| Release: 20.25.1 | Build date: Sun Feb 27 15:01:17 2011 |
| Group: System/Shells | Build host: build18 |
| Size: 666334 | Source RPM: bash-4.1-20.25.1.src.rpm |
| Packager: http://bugs.opensuse.org | |
| Url: http://www.gnu.org/software/bash/bash.html | |
| Summary: The GNU Bourne-Again Shell | |
Bash is an sh-compatible command interpreter that executes commands
read from standard input or from a file. Bash incorporates useful
features from the Korn and C shells (ksh and csh). Bash is intended to
be a conformant implementation of the IEEE Posix Shell and Tools
specification (IEEE Working Group 1003.2).
Authors:
--------
Brian Fox <bfox@gnu.org>
Chet Ramey <chet@ins.cwru.edu>
GPLv2+
* Fri Feb 25 2011 werner@suse.de
- Add patch bash41-010
* Thu Feb 17 2011 coolo@novell.com
- having a bash man page is recommended (bnc#672528)
* Mon Oct 18 2010 jslaby@suse.de
- fix czech message
* Thu Oct 14 2010 werner@suse.de
- Update bash 4.1 to patch level 9
* When declaring an associative array and implicitly assigning a
value to element "0", bash does not correctly allocate memory,
leading to a segmentation violation when that element or the
array itself is unset.
* An arriving SIGCHLD will interrupt `slow' system calls such as
write(2) to or read(2) from a terminal. This results in an
error message and truncated input or output.
* Fri Sep 03 2010 cristian.rodriguez@opensuse.org
- builtin "man2html"generates html manual with a timestamp
that causes the package to be published over and over again.
* Mon Aug 16 2010 werner@suse.de
- A modified version of the pipe patch which should handle
the PIPESTATUS array
* Fri Aug 13 2010 werner@suse.de
- Disable the pipe patch from Thu Jun 24 10:40:09 CEST 2010
as this resets the PIPESTATUS array to the status of the
forground process only
* Thu Jul 29 2010 werner@suse.de
- Add fix from mailing list to avoid crash
* Mon Jul 19 2010 werner@suse.de
- Comment out recommendation of bash-completion, as I'd like
no to see the bugs of bash-completion in my bugzilla
* Sat Jul 17 2010 cristian.rodriguez@opensuse.org
- Do not package static libraries
- Fix Recommends/Suggests
* Thu Jun 24 2010 werner@suse.de
- Add fix from upstream: restore the parser state over changing
readline editing mode otherwise e.g. set alias before the
change are lost.
* Thu Jun 24 2010 werner@suse.de
- Avoid running the last member of a pipe command sequence to run
in its own subshell, this makes know lines like the simple
echo 1 2 | read a b; echo $a $b
work as expected by the users
* Tue May 25 2010 werner@suse.de
- Update bash 4.1 to patch level 7
* Bash did not correctly print/reproduce here documents attached
to commands inside compound commands such as for and while.
* A typo caused bash to not honor a precision specification in a
printf format.
* Mon Apr 12 2010 werner@suse.de
- Add fix for memory double free in array handling
* Tue Apr 06 2010 werner@suse.de
- Update bash 4.1 to patch level 5 (related to bnc#522351)
* If command completion is attempted on a word with a quoted globbing
character (e.g., `*' or `?'), bash can reference a NULL pointer and
dump core.
* When running in Posix mode and executing a shell function without local
variables, bash will not propagate a variable in a special builtin's temporary
environment to have global scope.
* When the `read' builtin times out after the timeout specified with -t is
exceeded, it does not reset the flags that tell signal handlers to process
signals immediately instead of deferring their handling. This can result
in unsafe functions being called from signal handlers, which can cause bash
to hang or dump core.
* Tue Mar 09 2010 werner@suse.de
- Add patch from bash-bug list to avoid crahs on some strange
TAB completions
* Mon Mar 01 2010 ro@suse.de
- fix warning no return statement in function returning non-void
to fix build (in bashline.c)
* Wed Feb 24 2010 werner@suse.de
- Avoid hang due malloc()/free() within signal handler (bnc#522351)
* Thu Feb 18 2010 werner@suse.de
- Add patch to reflect the usage of /etc/bash.bashrc (bnc#577221)
* Mon Feb 15 2010 werner@suse.de
- Update bash 4.1 to patch level 2
* Here-documents within $(...) command substitutions may once more be
delimited by the closing right paren, instead of requiring a newline.
* Bash's file status checks (executable, readable, etc.) now take file
system ACLs into account on file systems that support them.
* Bash now passes environment variables with names that are not valid
shell variable names through into the environment passed to child
processes.
* The `execute-unix-command' readline function now attempts to clear and
reuse the current line rather than move to a new one after the command
executes.
* `printf -v' can now assign values to array indices.
* New `complete -E' and `compopt -E' options that work on the "empty"
completion: completion attempted on an empty command line.
* New complete/compgen/compopt -D option to define a `default' completion:
a completion to be invoked on command for which no completion has been
defined. If this function returns 124, programmable completion is
attempted again, allowing a user to dynamically build a set of completions
as completion is attempted by having the default completion function
install individual completion functions each time it is invoked.
* When displaying associative arrays, subscripts are now quoted.
* Changes to dabbrev-expand to make it more `emacs-like': no space appended
after matches, completions are not sorted, and most recent history entries
are presented first.
* The [[ and (( commands are now subject to the setting of `set -e' and the
ERR trap.
* The source/. builtin now removes NUL bytes from the file before attempting
to parse commands.
* There is a new configuration option (in config-top.h) that forces bash to
forward all history entries to syslog.
* A new variable $BASHOPTS to export shell options settable using `shopt' to
child processes.
* There is a new confgure option that forces the extglob option to be
enabled by default.
* New variable $BASH_XTRACEFD; when set to an integer bash will write xtrace
output to that file descriptor.
* If the optional left-hand-side of a redirection is of the form {var}, the
shell assigns the file descriptor used to $var or uses $var as the file
descriptor to move or close, depending on the redirection operator.
* The < and > operators to the [[ conditional command now do string
comparison according to the current locale if the compatibility level
is greater than 40.
* Programmable completion now uses the completion for `b' instead of `a'
when completion is attempted on a line like: a $(b c.
* Force extglob on temporarily when parsing the pattern argument to
the == and != operators to the [[ command, for compatibility.
* Changed the behavior of interrupting the wait builtin when a SIGCHLD is
received and a trap on SIGCHLD is set to be Posix-mode only.
* The read builtin has a new `-N nchars' option, which reads exactly NCHARS
characters, ignoring delimiters like newline.
* The mapfile/readarray builtin no longer stores the commands it invokes via
callbacks in the history list.
* There is a new `compat40' shopt option.
- Update readline 6.1 to patch level 1
* New bindable function: menu-complete-backward.
* In the vi insertion keymap, C-n is now bound to menu-complete by default,
and C-p to menu-complete-backward.
* When in vi command mode, repeatedly hitting ESC now does nothing, even
when ESC introduces a bound key sequence. This is closer to how
historical vi behaves.
* New bindable function: skip-csi-sequence. Can be used as a default to
consume key sequences generated by keys like Home and End without having
to bind all keys.
* New application-settable function: rl_filename_rewrite_hook. Can be used
to rewite or modify filenames read from the file system before they are
compared to the word to be completed.
* New bindable variable: skip-completed-text, active when completing in the
middle of a word. If enabled, it means that characters in the completion
that match characters in the remainder of the word are "skipped" rather
than inserted into the line.
* The pre-readline-6.0 version of menu completion is available as
"old-menu-complete" for users who do not like the readline-6.0 version.
* New bindable variable: echo-control-characters. If enabled, and the
tty ECHOCTL bit is set, controls the echoing of characters corresponding
to keyboard-generated signals.
* New bindable variable: enable-meta-key. Controls whether or not readline
sends the smm/rmm sequences if the terminal indicates it has a meta key
that enables eight-bit characters.
* Wed Dec 16 2009 jengelh@medozas.de
- package documentation as noarch
* Sat Dec 12 2009 jengelh@medozas.de
- add baselibs.conf as a source
* Fri Dec 04 2009 werner@suse.de
- Fix bug in bash-4.0-security.patch (bnc#559877)
* Thu Oct 29 2009 werner@suse.de
- Update to newest patch level 35
* bash incorrectly interprets wildcarded path components between
a **/ and the last /
* bash incorrectly treated single and double quotes as
delimiters rather than introducing quoted strings when
splitting the line into words for programmable completion
functions
* Wed Sep 30 2009 werner@suse.de
- Make _rl_enable_meta configurable by the users (bnc#541379)
* Wed Sep 09 2009 werner@suse.de
- Do not change tty owner group twice by child and parent (bnc#523667)
* Wed Sep 09 2009 werner@suse.de
- Update to newest patch level 33
* Includes one of our own patches
* Wed Aug 26 2009 coolo@novell.com
- rediff patches to avoid fuzz
* Tue Jul 28 2009 werner@suse.de
- Update to newest patch level 28
* Thu Jul 02 2009 werner@suse.de
- Add fix from bash maintainer for closing memory leak in read
builtin (bnc#510288)
* Tue Jun 09 2009 werner@suse.de
- Branch off some sub packages:
* bash-lang to include localization
* bash-loadables for installing the loadable runtime builtins
* bash-devel to install headers for developing loadable builtins
* Wed Jun 03 2009 werner@suse.de
- Enforce the usage of euidaccess(3) instead of stat(2) for testing
permissions for a file (bnc#509105)
* Mon May 25 2009 werner@suse.de
- Update to newest patch level 24:
* include last few patches
- Add patches from mailing list for globstar expansion
* Mon May 11 2009 werne@suse.de
- Increase size of hash table for runtime linker a lot
* Mon Apr 27 2009 werne@suse.de
- Add patches from mailing list:
* fix problem with invisible characters in prompt
* make dir*/** work
* Tue Apr 21 2009 werne@suse.de
- Do not crash on forbidden subdirectories with globstar extension
* Wed Apr 15 2009 werne@suse.de
- Add fix to be able to clear to eol in readline library
* Tue Apr 14 2009 werne@suse.de
- Add fix for timing issue in readline SIGWINCH handling
* Wed Apr 08 2009 werne@suse.de
- Add patches from bug-bash@gnu.org to avoid eg. segmentation fault
* Mon Mar 16 2009 werner@suse.de
- Add patches from bug-bash@gnu.org to avoid eg. segmentation fault
* Thu Mar 12 2009 werner@suse.de
- Add patch from bug-bash@gnu.org to enable |& not only for
builtins and shell functions but for all commands.
* Tue Mar 10 2009 werner@suse.de
- Switch to official patches, now we are on patch level 10
* Wed Mar 04 2009 werner@suse.de
- Use patches from bug-bash@gnu.org to make it work
* Wed Mar 04 2009 werner@suse.de
- Patch for bnc#481817 does not work in any case
* Wed Mar 04 2009 werner@suse.de
- My last patch for bnc#470548 send to bug-bash@gnu.org was not
fully applied and this had caused a memory corruption on tab
completion.
- Enable the parser to find closing parenthesis at the end of
an argument of a command even if backslash is used (bnc#481817)
- Correct link of shared libraries of devel readline package
/bin/bash /bin/sh /etc/bash_completion.d /etc/skel/.bash_history /etc/skel/.bashrc /etc/skel/.profile /usr/bin/bashbug /usr/bin/rbash /usr/bin/sh /usr/share/bash /usr/share/bash/helpfiles /usr/share/bash/helpfiles/alias /usr/share/bash/helpfiles/arith /usr/share/bash/helpfiles/arith_for /usr/share/bash/helpfiles/bg /usr/share/bash/helpfiles/bind /usr/share/bash/helpfiles/break /usr/share/bash/helpfiles/builtin /usr/share/bash/helpfiles/caller /usr/share/bash/helpfiles/case /usr/share/bash/helpfiles/cd /usr/share/bash/helpfiles/colon /usr/share/bash/helpfiles/command /usr/share/bash/helpfiles/compgen /usr/share/bash/helpfiles/complete /usr/share/bash/helpfiles/compopt /usr/share/bash/helpfiles/conditional /usr/share/bash/helpfiles/continue /usr/share/bash/helpfiles/coproc /usr/share/bash/helpfiles/declare /usr/share/bash/helpfiles/dirs /usr/share/bash/helpfiles/disown /usr/share/bash/helpfiles/dot /usr/share/bash/helpfiles/echo /usr/share/bash/helpfiles/enable /usr/share/bash/helpfiles/eval /usr/share/bash/helpfiles/exec /usr/share/bash/helpfiles/exit /usr/share/bash/helpfiles/export /usr/share/bash/helpfiles/false /usr/share/bash/helpfiles/fc /usr/share/bash/helpfiles/fg /usr/share/bash/helpfiles/fg_percent /usr/share/bash/helpfiles/for /usr/share/bash/helpfiles/function /usr/share/bash/helpfiles/getopts /usr/share/bash/helpfiles/grouping_braces /usr/share/bash/helpfiles/hash /usr/share/bash/helpfiles/help /usr/share/bash/helpfiles/history /usr/share/bash/helpfiles/if /usr/share/bash/helpfiles/jobs /usr/share/bash/helpfiles/kill /usr/share/bash/helpfiles/let /usr/share/bash/helpfiles/local /usr/share/bash/helpfiles/logout /usr/share/bash/helpfiles/mapfile /usr/share/bash/helpfiles/popd /usr/share/bash/helpfiles/printf /usr/share/bash/helpfiles/pushd /usr/share/bash/helpfiles/pwd /usr/share/bash/helpfiles/read /usr/share/bash/helpfiles/readarray /usr/share/bash/helpfiles/readonly /usr/share/bash/helpfiles/return /usr/share/bash/helpfiles/select /usr/share/bash/helpfiles/set /usr/share/bash/helpfiles/shift /usr/share/bash/helpfiles/shopt /usr/share/bash/helpfiles/source /usr/share/bash/helpfiles/suspend /usr/share/bash/helpfiles/test /usr/share/bash/helpfiles/test_bracket /usr/share/bash/helpfiles/time /usr/share/bash/helpfiles/times /usr/share/bash/helpfiles/trap /usr/share/bash/helpfiles/true /usr/share/bash/helpfiles/type /usr/share/bash/helpfiles/typeset /usr/share/bash/helpfiles/ulimit /usr/share/bash/helpfiles/umask /usr/share/bash/helpfiles/unalias /usr/share/bash/helpfiles/unset /usr/share/bash/helpfiles/until /usr/share/bash/helpfiles/variable_help /usr/share/bash/helpfiles/wait /usr/share/bash/helpfiles/while
Generated by rpm2html 1.8.1
Fabrice Bellet, Mon May 20 11:55:49 2013