~ubuntu-branches/ubuntu/warty/bash/warty

« back to all changes in this revision

Viewing changes to patch-stamp

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2002-04-08 20:51:41 UTC
  • Revision ID: james.westby@ubuntu.com-20020408205141-p16ukpd93kg6ce7g
Tags: 2.05a-11
* Don't mishandle negative pid in `kill' builtin (closes: #133927, #137742).
* builtins(1) doesn't document `for' (closes: #118755).
* Add /usr/share/bash_completion directory to source package specific
  completion files.
* Update to bash_completion 20020408 (v1.264).
  Closes: #133109, #139375, #139675, #134713, #141134.
* Add completion to /etc/skel/.bashrc (commented out). Closes: #138921.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
Patches applied in this version:
 
3
 
 
4
arrayfunc:
 
5
  Fix for causing a segmentation fault when some special shell variables
 
6
  are declared as array.
 
7
 
 
8
bashbug-editor:
 
9
  send bug reports to Debian bash maintainer too.
 
10
 
 
11
deb-bash-config:
 
12
  Changed compile time configuration options:
 
13
  
 
14
  - Set the default path to comply with Debian policy
 
15
  
 
16
  - Define DONT_REPORT_SIGPIPE: We don't want to see `Broken pipe' messages
 
17
  when a job like `cat jobs.c | exit 1' is executed. Fixes part of #7047,
 
18
  #10259, #10433 and #10494. Comment from the upstream author: "The
 
19
  default bash behavior with respect to the exit status of a pipeline
 
20
  will not change.  Changing it as suggested in the discussion of #10494
 
21
  would render bash incompatible with every other shell out there.".
 
22
  
 
23
  - Enable System-wide .bashrc file for interactive shells.
 
24
  
 
25
  - Enable System-wide .bash_logout  file for interactive shells.
 
26
  
 
27
  - make non-interactive shells begun with argv[0][0] == '-'
 
28
  run the startup files when not in posix mode.
 
29
  
 
30
  - try to check whether bash is being run by sshd and source
 
31
  the .bashrc if so (like the rshd behavior).
 
32
 
 
33
deb-examples:
 
34
  document readline header location on Debian systems
 
35
 
 
36
man-vx-opts:
 
37
  document -v / -x options
 
38
 
 
39
man-arithmetic:
 
40
  document deprecated syntax for arithmetic evaluation.
 
41
 
 
42
man-fignore:
 
43
  bash(1): mention quoting when assigning to FIGNORE
 
44
 
 
45
privmode:
 
46
  XXX missing description
 
47
  
 
48
  Comment from Chet Ramey <chet@nike.ins.cwru.edu>:
 
49
  
 
50
  Nope.  This will allow setuid scripts if not called as `sh' and not 
 
51
  called with the -p option.  I won't install this. 
 
52
 
 
53
random:
 
54
  use the system random functions
 
55
 
 
56
various:
 
57
  a header include change
 
58
 
 
59
headers:
 
60
  include headers for including function prototypes
 
61
 
 
62
kill-group:
 
63
  Don't mishandle negative pod in `kill' builtin
 
64
 
 
65
service_completion:
 
66
  Patch to bash 2.05a to add service completion.
 
67
  http://www.caliban.org/bash/index.shtml#completion
 
68
 
 
69
rl-examples:
 
70
  Modified readline examples to properly build with Debian setup.
 
71
 
 
72
rl-symlinked-dirs:
 
73
  Taken from the current upstream sources:
 
74
  Make the symlinked directory completion behavior introduced in
 
75
  readline-4.2a a user-settable option. If `mark-symlinked-directories'
 
76
  is non-zero, the symlinked directory completion behavior is disabled,
 
77
  and symlinks that point to directories have a slash appended.
 
78
 
 
79
rl-inputrc:
 
80
  Support for /etc/inputrc in addition to ~/inputrc
 
81
 
 
82
rl-del-backspace-policy:
 
83
  Patches to handle Debian Backspace/Delete keyboard policy ???