aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bash.rb
AgeCommit message (Collapse)Author
2013-03-08bash 4.2.45Jack Nagel
2012-12-31bash 4.2.42Jack Nagel
2012-11-10Revert "Rename readline to gnu-readline"Jack Nagel
This reverts commit adee5315265cc46aa6a3057071527abb16e1cd94. Turns out one of the "other things" is a dealbreaker. We only create kegs using a formula's canonical name. However, we do not check that this is the case when mapping existing kegs back to formula objects, and thus a keg with a name that happens to be an alias can fool Homebrew into thinking the canonically-named keg exists. So anything that enumerates kegs and then tries to do stuff with the resulting formula objects will just break. This is obviously worse than the debugger being broken, so reverting this for the time being.
2012-11-10Rename readline to gnu-readlineJack Nagel
The Readline class clashes with the Readline module from the Ruby stdlib. This has mostly worked, but with the recent debugging support's integration of IRB, it is no longer possible for them to coexist. So we need to rename it. The implications of this are: - Anything that depends on readline will reinstall it as "gnu-readline". Anything already installed will continue to function. - "brew upgrade readline" will say "gnu-readline not installed", as "readline" is now an alias. - Probably other things. So there are some downsides, but we will just have to deal with them. Fixes #15776.
2012-11-03bash 4.2.39Jack Nagel
I moved the patches to a gist, as it is easier to append new patches this way. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-10-09bash: vendor patches since the mirrors are unreliableKalin Harvey
Closes #15324. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-18Replace version strings with Version objectsJack Nagel
2012-07-17bash 4.2.37Misty De Meo
2012-06-05bash 4.2.29Jack Nagel
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-05-05GNU Bash 4.2.28Birger J. Nordølum
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-03-19bash 4.2.24Misty De Meo
2012-01-21Add caveat about using this Bash as login shellPeter Aronoff
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-11-30Add mirrors for GNU formulaeJack Nagel
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-11-29bash 4.2.20Misty De Meo
Closes #8867. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-09-12Use automatic mirror selection for GNU downloadsJack Nagel
It seems that the main GNU download site has issues in some places outside the U.S., so we'll use the provided "ftpmirror.gnu.org" to pick a nearby mirror. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-05-07Fixed syntax error in bash formula.Robin Ramael
In the last commit to the bash formula, the install function declaration was omitted, this commit adds it back in. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-05-07GNU BASH 4.2.10.Birger J. Nordølum
Plus some additional tweaks. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-03-14GNU BASH: 4.2.8Birger J. Nordølum
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-03-09GNU BASH: 4.2.7Birger J. Nordølum
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-11-06Bump Bash 4.1 patch level to 9Peter Aronoff
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-05-19bash 4.1.7Adam Vandenberg
2010-05-01Update bash to 4.1.5Adam Vandenberg
2010-02-03Fixes #92; Updated bash formula to 4.1 and added ability to get patches from ↵Chris Hoffman
bash site depending on patch level Signed-off-by: David Höppner <0xffea@gmail.com>
2009-10-15s/require 'brewkit'/require 'formula'/gMax Howell
brewkit.rb changes ENV destructively, so lets not do that everytime a formula is required. Now it's possible for other tools to require a formula description without worrying about side-effects.
2009-09-30Initial support for bash-4.0Ben Livingood