Commit graph

51411 commits

Author SHA1 Message Date
BrewTestBot
1ea827474b siege: update 3.1.3 bottle. 2016-01-12 12:03:08 +01:00
Tomasz Pajor
5b35fcce7b siege 3.1.3
siege 3.1.3

Closes Homebrew/homebrew#47976.

Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr>
2016-01-12 12:03:06 +01:00
BrewTestBot
e54c382449 otto: update 0.2.0 bottle. 2016-01-12 17:51:28 +08:00
Raphael Randschau
b13371f373 otto 0.2.0
Closes Homebrew/homebrew#47956.

Signed-off-by: Xu Cheng <xucheng@me.com>
2016-01-12 17:51:19 +08:00
BrewTestBot
05f731fdcd ledger: update 3.1.1 bottle. 2016-01-12 17:50:46 +08:00
Alexis Hildebrandt
61cb81122c ledger 3.1.1
- addresses build issues with newer boost versions >=1.58.0
  - remove patches merged upstream
  - remove utfcpp resource (now included with the source)
  - user pkgshare instead of share+"ledger"

Closes Homebrew/homebrew#47966.

Signed-off-by: Xu Cheng <xucheng@me.com>
2016-01-12 17:50:42 +08:00
Jason Karns
d037300f8b node-build 2.1.1
Closes Homebrew/homebrew#47969.

Signed-off-by: Xu Cheng <xucheng@me.com>
2016-01-12 17:50:15 +08:00
BrewTestBot
a3c73074eb geoip: update 1.6.9 bottle. 2016-01-12 17:48:44 +08:00
Florian Ragwitz
728b07e296 geoip 1.6.9
Closes Homebrew/homebrew#47971.

Signed-off-by: Xu Cheng <xucheng@me.com>
2016-01-12 17:48:40 +08:00
Evgeny Mandrikov
8362c5d55a sonar 5.3
Signed-off-by: Evgeny Mandrikov <mandrikov@gmail.com>

Closes Homebrew/homebrew#47980.

Signed-off-by: Xu Cheng <xucheng@me.com>
2016-01-12 17:47:37 +08:00
Chris Streeter
24742f60d8 spaceman-diff 1.0.2
Closes Homebrew/homebrew#47981.

Signed-off-by: Xu Cheng <xucheng@me.com>
2016-01-12 17:47:25 +08:00
BrewTestBot
bed30c3ed6 bazel: update 0.1.3 bottle. 2016-01-12 17:47:00 +08:00
Damien Martin-Guillerez
17185d4a6f bazel 0.1.3
Closes Homebrew/homebrew#47983.

Signed-off-by: Xu Cheng <xucheng@me.com>
2016-01-12 17:46:55 +08:00
Stefan Novak
bea667fd88 cromwell 0.16
cromwell-0.16

Closes Homebrew/homebrew#47984.

Signed-off-by: Xu Cheng <xucheng@me.com>
2016-01-12 17:46:13 +08:00
Xu Cheng
b1d96f2c6e mongrel2: style nits 2016-01-12 17:44:32 +08:00
BrewTestBot
671d6fb9ce mongrel2: update 1.11.0 bottle. 2016-01-12 17:43:11 +08:00
Justin Karneges
8961b5010e mongrel2 1.11.0
Closes Homebrew/homebrew#47940.

Signed-off-by: Xu Cheng <xucheng@me.com>
2016-01-12 17:43:07 +08:00
BrewTestBot
6c7ab6e19d dovecot: update 2.2.21 bottle. 2016-01-11 19:42:52 -08:00
Tomasz Pajor
78e162abc3 dovecot: bump snowball resource to revision 3b1f4c2ac4b924bb429f929d9decd3f50662a6e0
Closes Homebrew/homebrew#47934.

Signed-off-by: Alex Dunn <dunn.alex@gmail.com>
2016-01-11 19:42:48 -08:00
Tomasz Pajor
56071c5181 dovecot: bump pigeonhole resource to 0.4.11 2016-01-11 19:42:48 -08:00
Misty De Meo
4ae6b34ae7 openexr: fix build on 32-bit targets
refs mistydemeo/tigerbrew#398.

Closes Homebrew/homebrew#47968.

Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
2016-01-11 22:38:16 -04:00
Alex Dunn
a72046c3ac phantomjs: remove stable inreplace, fix HEAD build
Closes Homebrew/homebrew#47932.

Signed-off-by: Alex Dunn <dunn.alex@gmail.com>
2016-01-11 17:49:41 -08:00
Mislav Marohnić
fed0045fa4 ruby-build 20160111
Closes Homebrew/homebrew#47962.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2016-01-12 00:04:08 +00:00
BrewTestBot
428647f642 cppcheck: update 1.72 bottle. 2016-01-12 00:03:38 +00:00
Steven Hahn
c441a93d8f cppcheck 1.72
Closes Homebrew/homebrew#47964.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2016-01-12 00:03:35 +00:00
BrewTestBot
9bb1aec95d openssl: update 1.0.2e_1 bottle. 2016-01-11 13:28:02 -08:00
Tim D. Smith
ab0b764a44 openssl: load zlib from an explicit path
Load zlib from an explicit path instead of relying on dyld's fallback
path, which is empty in a SIP context. This patch will be unnecessary
when we begin building openssl with no-comp to disable TLS compression.

This helps us load Python's "cryptography" library from system Python.

See https://langui.sh/2015/11/27/sip-and-dlopen for background.

Closes Homebrew/homebrew#47650.
2016-01-11 13:28:01 -08:00
Tim D. Smith
f27573a7cb openssl: fix headers for universal build
opensslconf.h is different depending on the architecture for which it is
built. Previously, universal builds installed only one version of the
header, which was wrong for one of the architectures. This uses #ifdef
magic to make sure that the correct version of the header is used for
the target against which client software is building.

https://langui.sh/2016/01/03/universal-libraries-but-not-headers/
illustrates this bug causing problems in the wild.

Closes Homebrew/homebrew#47652.
2016-01-11 13:27:57 -08:00
BrewTestBot
63225bc7ab vowpal-wabbit: update 8.1.1 bottle. 2016-01-11 21:56:28 +01:00
Bart Leusink
3c4b2c8065 vowpal-wabbit 8.1.1
Closes Homebrew/homebrew#47961.

Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr>
2016-01-11 21:56:24 +01:00
Misty De Meo
1c58b6c4a5 sdl2: fix build on 10.4, 10.5, 10.6
Fixes mistydemeo/tigerbrew#361.
Fixes Homebrew/homebrew#37837.
2016-01-11 13:39:03 -04:00
BrewTestBot
9049b14bf8 slackcat: add 0.7 bottle. 2016-01-11 17:35:16 +01:00
Bradley Cicenas
dad623d7d5 slackcat 0.7 (new formula)
Closes Homebrew/homebrew#47877.

Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr>
2016-01-11 17:35:14 +01:00
Kazuhiro Sera
6ce4caae84 skinny 2.0.4
Closes Homebrew/homebrew#47925.

Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr>
2016-01-11 17:26:32 +01:00
Misty De Meo
3b82c5b87b gambit-scheme: don't try to build with GCC 4.2 or 4.3
refs mistydemeo/tigerbrew#389.
2016-01-11 09:55:01 -04:00
BrewTestBot
9a799a92f0 mat: update 0.5.4 bottle. 2016-01-11 12:07:45 +01:00
Baptiste Fontaine
f26be25e50 mat 0.5.4 (import from boneyard)
Closes Homebrew/homebrew#45960.

Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr>
2016-01-11 12:07:42 +01:00
BrewTestBot
e516842744 xmake: add 1.0.4 bottle. 2016-01-11 09:48:01 +00:00
ruki
078c9fedba xmake 1.0.4 (new formula)
Closes Homebrew/homebrew#47706.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2016-01-11 09:47:47 +00:00
Dominyk Tiller
de835484ee iodine: prefer berkeley mirror 2016-01-11 09:43:52 +00:00
BlahGeek
cc5dbbe715 iodine: do not depend on tuntap for HEAD
see https://github.com/yarrick/iodine
On Mac OS X 10.6 and later, iodine supports the native utun devices
built into the OS - use -d utunX

Closes Homebrew/homebrew#47922.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2016-01-11 09:42:58 +00:00
BrewTestBot
12b24d4e3d squid: update 3.5.13 bottle. 2016-01-11 09:41:33 +00:00
Tomasz Pajor
c2e0463198 squid 3.5.13
Closes Homebrew/homebrew#47939.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2016-01-11 09:41:30 +00:00
Dominyk Tiller
7613972193 libwebsockets: use secure homepage 2016-01-11 09:38:09 +00:00
BrewTestBot
c631b2fcf2 syncthing: update 0.12.12 bottle. 2016-01-11 09:34:57 +00:00
Marco Bonetti
c4ba459506 syncthing 0.12.12
Closes Homebrew/homebrew#47927.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2016-01-11 09:34:53 +00:00
BrewTestBot
4173415a17 consul: update 0.6.1 bottle. 2016-01-11 09:30:19 +00:00
Kunal Shah
77322a29a1 consul 0.6.1
Update consul to use v 0.6.1 from 0.6.0

Closes Homebrew/homebrew#47937.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2016-01-11 09:30:17 +00:00
BrewTestBot
37f7c1b55a libwebsockets: update 1.6 bottle. 2016-01-11 09:29:50 +00:00
guodong
7c18a6e27c libwebsockets 1.6
update to version 1.6.0

Closes Homebrew/homebrew#47930.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2016-01-11 09:29:47 +00:00