Commit graph

13171 commits

Author SHA1 Message Date
Konrad Rieck
5791b3efb6 arow++ 0.1.2
Closes Homebrew/homebrew#14910.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-11-11 17:03:25 -08:00
Konrad Rieck
278405acbe dadadodo 1.04
Closes Homebrew/homebrew#14909.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-11-11 17:01:27 -08:00
Bill Welliver
b0093804dd pike 7.8.700
Closes Homebrew/homebrew#14783.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-11-11 16:58:22 -08:00
Adam Vandenberg
158fcd9b99 bib-tool 2.55 2012-11-11 16:24:41 -08:00
Adam Vandenberg
0ab65cb48f asciitex: style nit 2012-11-11 16:23:30 -08:00
Charlie Sharpsteen
a73e259b60 triangle: Depends on X11
For the showme too. Also includes some general style cleanup.
2012-11-11 15:19:06 -08:00
Charlie Sharpsteen
cfd0933e48 New Formula: spatialite-gui
The SpatiaLite GUI serves as a graphical complement to the SpatiaLite Tools.
2012-11-11 15:03:30 -08:00
Fabrizio Regini
d1a567b182 sphinx 2.0.6
Closes Homebrew/homebrew#15980.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-11-11 13:44:25 -08:00
Pepijn de Vos
943097ada6 gnustep-make 2.6.2
Closes Homebrew/homebrew#14645.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-11-11 13:08:39 -08:00
Sébastien Gross
f20a065dcb dylibbundler 0.4.1
Closes Homebrew/homebrew#14171.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-11-11 13:06:05 -08:00
Neil Patel
f0388425f8 msdl 1.2.7-r2
Closes Homebrew/homebrew#13907.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-11-11 13:01:41 -08:00
Adam Vandenberg
698714e59b libmrss 0.19.2 2012-11-11 12:57:30 -08:00
Adam Vandenberg
18b40b0c34 libnxml 0.18.3 2012-11-11 12:57:29 -08:00
Adam Vandenberg
bf1e52ccdd chktex: use requirement 2012-11-11 12:57:29 -08:00
Adam Vandenberg
73864c3ec1 latex-mk: use requirement 2012-11-11 12:57:29 -08:00
Charlie Sharpsteen
b4befaf35f Clean up lib path searching for Spatialite
Anything linking against SpatiaLite also needs to use Homebrew's SQLite so that
loadable extensions are enabled along with RTree indices.

This commit cleans up several formulae to use the specific `opt/sqlite/lib`
prefix rather than `HOMEBREW_PREFIX/lib` and also adds this searching to
`gdal`.

However, this hack is getting a little large. The best fix would probably be to
flag SQLite as `keg_only` so that lib path munging is handled automagically for
everything with a dependency tree that includes SQLite.
2012-11-11 12:47:44 -08:00
Shigeya Suzuki
21c9880039 LaTeX-Mk 2.1
Closes Homebrew/homebrew#14518.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-11-11 12:39:40 -08:00
Adam Vandenberg
a84e0077c0 Streamline metafile installs 2012-11-11 11:20:35 -08:00
Stefan
5444fa8e26 weechat: add libgcrypt dependency
Fixes Homebrew/homebrew#15966.
Closes Homebrew/homebrew#15967.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-11-11 09:25:44 -08:00
Adam Vandenberg
725faf1cfa weechat 0.3.9.1 2012-11-11 09:25:36 -08:00
ear
cf701329fa pari 2.5.3
Closes Homebrew/homebrew#15972.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-11-11 09:25:36 -08:00
Samuel John
e80e010d6f eina 1.7.1
Closes Homebrew/homebrew#15969.

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2012-11-11 08:55:19 -08:00
Yan Zhou
37449e535a eigen: Update to 3.1.2
Closes Homebrew/homebrew#15948.

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2012-11-11 08:53:56 -08:00
Gergo Erdosi
c8fdbf6735 percona: Fix share directory
Closes Homebrew/homebrew#15973.

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2012-11-11 08:42:38 -08:00
Jaeho Shin
cf05a5f208 coreutils: Add man dir with de-prefixed names
Closes Homebrew/homebrew#15876.

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2012-11-11 08:32:59 -08:00
Jack Nagel
8c29982153 Revert "Rename readline to gnu-readline"
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-10 21:12:26 -06:00
Jack Nagel
e2f9856882 Rename readline to gnu-readline
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 Homebrew/homebrew#15776.
2012-11-10 20:07:32 -06:00
Erik Michaels-Ober
49000ec433 ruby-build 20121110
Added a definition for Ruby 1.9.3-p327

Closes Homebrew/homebrew#15965.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-11-10 13:49:41 -08:00
Gary V. Vaughan
a131a59d7e luarocks-2.0.12
Add --with-lua52 support.

Closes Homebrew/homebrew#15952.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-11-10 12:05:37 -08:00
Adam Vandenberg
6a6b05081a zinc 0.2.0 2012-11-10 11:41:05 -08:00
Brian Martin
aa50f18cfc Zinc 1.4.0
Closes Homebrew/homebrew#15511.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-11-10 11:36:11 -08:00
Austin Seipp
985ba30158 jemalloc 3.1.0
Closes Homebrew/homebrew#15908.

Signed-off-by: Austin Seipp <mad.one@gmail.com>
Closes Homebrew/homebrew#15908.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-11-10 11:08:26 -08:00
Henrik Mühe
5aa2e49480 ctemplate: add --head
Closes Homebrew/homebrew#15912.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-11-10 11:06:06 -08:00
Yan Zhou
56f80f465a Quantlib 1.2.1
Closes Homebrew/homebrew#15950.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-11-10 11:00:05 -08:00
Adam Vandenberg
1cf226b46f QEMU: update fails-with
Closes Homebrew/homebrew#15930.
2012-11-10 10:35:27 -08:00
yrammos
bb437fef26 Lilypond 2.16.1
Closes Homebrew/homebrew#15959.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-11-10 09:20:04 -08:00
Eugene Vilensky
ee4961834a dhcping 1.2
Closes Homebrew/homebrew#15917.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-11-10 09:17:11 -08:00
Stefan
7fed00f562 leveldb 1.7
Closes Homebrew/homebrew#15957.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-11-10 08:58:02 -08:00
Stefan
a354ca8280 drizzle: use boost149
Closes Homebrew/homebrew#15954.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-11-10 08:56:57 -08:00
Mike McQuaid
b16b962427 cmake 2.8.10.1
Closes Homebrew/homebrew#15896.
2012-11-10 13:32:24 +00:00
Mike McQuaid
80a6eb19f6 Revert "cmake 2.8.10"
This reverts commit d6d8b3e57e68387c75be5b22f15d28fe1a8b34dc.
2012-11-10 09:35:17 +00:00
Mike McQuaid
8db3221049 cmake 2.8.10 2012-11-10 06:55:25 +00:00
Adam Vandenberg
089c55785b jmeter: update urls
Closes Homebrew/homebrew#15931.
2012-11-09 21:08:01 -08:00
Adam Vandenberg
e3465c843d pixman 0.28.0
Closes Homebrew/homebrew#15920.
2012-11-09 21:03:10 -08:00
Sebastian Wyder
e5d70a7a4c Ruby 1.9.3-p327
Closes Homebrew/homebrew#15944.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-11-09 20:03:45 -08:00
Charlie Sharpsteen
cf3e0aadda libdap: Update to 3.11.7
Download checksum for 3.11.5 was stealth-updated.

Fixes Homebrew/homebrew#15935.
2012-11-09 07:54:44 -08:00
nibbles 2bits
d0f2c8d89c ghc: add ENV.m32 for 32bit on x64.
- Add `ENV.m32` to fix build errors on 64bit hardware w/ `--32-bit`

Some users want to force 32bit ghc on 64bit hardware.
Ghc, however, comes with several internal libraries like libgmp
that get configured during the build. By forcing `ENV.m32`,
we force all the internal libs to build 32bit also.

Fixes Homebrew/homebrew#15925.
Closes Homebrew/homebrew#15933.

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2012-11-09 07:44:59 -08:00
Andrew Berry
e9129af27f sane-backends: update download URL
Closes Homebrew/homebrew#15926.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-11-08 16:10:32 -06:00
Shawn Jonnet
b3bde65a08 redis 2.6.4
Closes Homebrew/homebrew#15927.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-11-08 16:07:43 -06:00
Jack Nagel
4aeee86d55 Factor out MySQL and Postgres requirements 2012-11-08 16:01:59 -06:00