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.
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.
FixesHomebrew/homebrew#15776.
- Upgrade to version 4.6.1
- Remove the patch. It decides aquaterm=no on its own now.
- Fix HEAD by not running `autoreconf`. Instead run `./prepare`
- Add an option to build the Qt4 terminal plus optional Qt dep.
- Add an option to build the testsuite. It's fantastic.
- Add an option to build the cairo terminals using pango.
- Make the pango dep active if `--cario` or `--wx` because
- the wxWidgets termial requires pango.
- Add `--without-latex` and `--without-tutorial` so no LaTeX Req.
- Add `--without-cairo` unless it is turned on as an option.
- Add an `ENV.j1` to fix an emacs related file locking error.
- Remove the unrecognized `--disable-debug` & aquaterm options.
- Works with superenv and passes its testsuite on 10.8.2.
FixesHomebrew/homebrew#15692ClosesHomebrew/homebrew#15829.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Adds a MacPorts patch that allows `--without-aquaterm` as a configuration
option and then invokes this option by default.
FixesHomebrew/homebrew#14647.
Updates gnuplot to version 4.4.4.
Adds optional wx dependency support.
Adds CVS development head with autotools invocation.
Adds very simple test for gnuplot binary version.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Parallel builds fail if lua is compiled with LLVM,
so a previous commit flagged Lua as "fails_with_llvm".
Re-enabled parallel builds, as they work fine against a
GCC-build lua.
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.