Commit graph

39713 commits

Author SHA1 Message Date
BrewTestBot
3dcdf432ed libass: update 0.12.2 bottle. 2015-05-21 21:24:54 +01:00
AirPort
466d59f3bb Libass 0.12.2
Closes Homebrew/homebrew#39966.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-05-21 21:24:50 +01:00
BrewTestBot
bf87004ffc tmux-mem-cpu-load: update 3.2.2 bottle. 2015-05-21 21:24:30 +01:00
Alex Dunn
7cdf6d82cf tmux-mem-cpu-load 3.2.2
Closes Homebrew/homebrew#39961.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-05-21 21:24:26 +01:00
BrewTestBot
ed6447b5ed miruo: add 0.9.6a bottle. 2015-05-21 21:23:24 +01:00
pandax381
aa8605ed53 miruo 0.9.6a (new formula)
Closes Homebrew/homebrew#39930.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-05-21 21:23:20 +01:00
BrewTestBot
efc2b54820 ffmpeg: update 2.6.3 bottle. 2015-05-21 21:22:43 +01:00
Jaime Marquínez Ferrándiz
a252894727 ffmpeg 2.6.3
Closes Homebrew/homebrew#39959.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-05-21 21:22:40 +01:00
BrewTestBot
434a963f70 reposurgeon: update 3.22 bottle. 2015-05-21 21:21:57 +01:00
Daniel Lee Harple
f89aa990da reposurgeon 3.22
Closes Homebrew/homebrew#39957.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-05-21 21:21:54 +01:00
Ryan Hendrickson
d85856dfea libepoxy: build requires Python 2.7
Which ships with Lion, but Snow Leopard is still on 2.6.

Closes Homebrew/homebrew#39956.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-05-21 21:21:34 +01:00
BrewTestBot
106d278ec4 fzf: update 0.9.12 bottle. 2015-05-21 21:21:19 +01:00
Junegunn Choi
43a54b40c9 fzf 0.9.12
Fix Homebrew/homebrew#39669

Closes Homebrew/homebrew#39955.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-05-21 21:21:15 +01:00
Mike McQuaid
eee17a89d5 Revert "nghttp2 1.0.0"
This reverts commit 20b9589a17741574f005593e42a60cfc2477cef0.
2015-05-21 21:20:18 +01:00
Mike McQuaid
4804b452ed Revert "nghttp2: update 1.0.0 bottle."
This reverts commit 74a9592b006d7b157f02abcb4a1796106528661a.
2015-05-21 21:20:17 +01:00
BrewTestBot
0a19928567 kore: update 1.2.3 bottle. 2015-05-21 15:18:00 +01:00
Andreas Pfohl
cc6030ae1e kore 1.2.3
This updates kore to version 1.2.3.

Closes Homebrew/homebrew#39953.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-05-21 15:17:56 +01:00
BrewTestBot
07c0fd7cf1 perl: update 5.20.2 bottle. 2015-05-21 14:06:03 +01:00
Dominyk Tiller
bdee1bed2c perl 5.20.2
Closes Homebrew/homebrew#39943.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-05-21 14:05:59 +01:00
BrewTestBot
6d234f95cd tnef: add 1.4.12 bottle. 2015-05-21 14:05:35 +01:00
Lachlan Cooper
796842711c tnef: update homepage and url, use sha256
Closes Homebrew/homebrew#39775.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-05-21 14:05:30 +01:00
BrewTestBot
cbc8636ca4 node: update 0.12.2_1 bottle. 2015-05-21 14:04:41 +01:00
Dominyk Tiller
0b8e9215e8 node: fix sometimes-broken manpage linkage
This issue is fun. Firstly, it does impact the upstream build. I reproduced
our Homebrew build outside of Homebrew, and the symlinking the symlinks
breaks there.

The way npm's `make install` works is to install everything into the
prefix specified, in this case libexec/npm, and then it creates symlinks
from libexec/npm/lib/node_modules/npm/man/man*/npm* to libexec/npm/share/man*/npm*.

For some reason, those symlinks break, both inside and outside of Homebrew, albeit
slightly differently. Outside of Homebrew they break in the symlinking the
symlinks stage. Inside of Homebrew they break in `make install`. Who even knows why.

This issue also doesn't reproduce constantly.
Sometimes it ["just works"](https://farm3.staticflickr.com/2066/5807458526_dc54025065_z.jpg).
Exactly what variables cause it to work and what causes it to break, who knows. I looked into
different shells, different versions of npm, different OS X versions - None of it seemed to matter.

The workaround is just to symlink the solid, tangible manpages that exist in
libexec/npm/lib/node_modules/npm/man/man* rather than symlinking the symlinks
that exist in libexec/npm/share/man/*.

As reported in https://github.com/Homebrew/homebrew/issues/39823#issue-77146790
in some cases the `make install` stage of `npm` seems to symlink inside the buildpath,
even though we're setting the prefix to libexec/npm and have encountered no other
issues with retention of build paths.

The problem *seems* to be that ln_sf itself is storing the paths. If I do it outside
of Homebrew, I get this:

```
ln -sf share/man/man1/* /Users/Dominyk/Downloads/package/TEST1/hmm/share/man/man1
ls -l /Users/Dominyk/Downloads/package/TEST1/hmm/share/man/man1/npm-config.1
/Users/Dominyk/Downloads/package/TEST1/hmm/share/man/man1/npm-config.1 -> share/man/man1/npm-config.1
```

Which obviously creates dead symlinks in /Users/Dominyk/Downloads/package/TEST1/hmm/share/man/man1/*.

If I switch over to using GNU's `ln` instead of OS X's default, and use this command instead:
`gln -sfr share/man/man1/* /Users/Dominyk/Downloads/package/TEST1/hmm/share/man/man1` I get:

```
/Users/Dominyk/Downloads/package/TEST1/hmm/share/man/man1/npm-config.1 -> ../../../../../man/man1/npm-config.1
```

And it seems to work. To my knowledge, BSD `ln` doesn't contain the relative option.

Closes Homebrew/homebrew#39823

Closes Homebrew/homebrew#39947.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-05-21 14:04:38 +01:00
BrewTestBot
083a614b8e afl-fuzz: update 1.79b bottle. 2015-05-21 14:04:09 +01:00
Alex Gaynor
0c89c6dbe1 afl-fuzz 1.79b
Closes Homebrew/homebrew#39951.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-05-21 14:04:05 +01:00
BrewTestBot
e411cb5c81 mozjpeg: update 3.1 bottle. 2015-05-21 13:59:59 +01:00
Dominyk Tiller
3b2e51ee07 mozjpeg 3.1
Bump, and vendored nasm.

Closes Homebrew/homebrew#39939

Closes Homebrew/homebrew#39941.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-05-21 13:59:56 +01:00
Robson Peixoto
2ecaaff5b5 akka 2.3.11
Closes Homebrew/homebrew#39936.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-05-21 13:59:42 +01:00
BrewTestBot
cb179ae5dc mergepbx: add 0.9 bottle. 2015-05-21 13:58:15 +01:00
Christoph Keller
a2d0f1e60b mergepbx 0.9 (new formula)
script for merging XCode project files in git

Closes Homebrew/homebrew#39922.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-05-21 13:58:12 +01:00
BrewTestBot
3675c16f8d nghttp2: update 1.0.0 bottle. 2015-05-21 13:57:43 +01:00
Viktor Szakats
88bc122238 nghttp2 1.0.0
Closes Homebrew/homebrew#39933.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-05-21 13:57:40 +01:00
BrewTestBot
5aa7912186 yle-dl: update 2.7.1 bottle. 2015-05-21 13:57:24 +01:00
Santeri Paavolainen
9fe3a3b8a9 yle-dl 2.7.1
Closes Homebrew/homebrew#39931.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-05-21 13:57:19 +01:00
BrewTestBot
3850a86f03 kjell: add 0.2.5 bottle. 2015-05-21 10:50:29 +01:00
Alex Dunn
55a8a2a0cd kjell 0.2.5
Closes Homebrew/homebrew#39162.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-05-21 10:50:25 +01:00
BrewTestBot
2249942a0b pstoedit: update 3.70 bottle. 2015-05-21 10:45:08 +01:00
Ned Konz
ea6ebb6f64 pstoedit: fix file formats installation.
Closes Homebrew/homebrew#39925.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-05-21 10:43:19 +01:00
BrewTestBot
96903b1ddf youtube-dl: update 2015.05.20 bottle. 2015-05-20 21:23:29 -04:00
Sergey M․
c8c5fb3c87 youtube-dl 2015.05.20
Closes Homebrew/homebrew#39926.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2015-05-20 21:23:24 -04:00
BrewTestBot
c719672728 aws-elasticbeanstalk: update 3.4.4 bottle. 2015-05-20 21:17:41 -04:00
Tyler Romeo
87e35f5e41 aws-elasticbeanstalk 3.4.4
Closes Homebrew/homebrew#39928.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2015-05-20 21:17:23 -04:00
BrewTestBot
f2966f699d sqlite: update 3.8.10.2 bottle. 2015-05-20 21:15:06 -04:00
Dominyk Tiller
daaa5e45ce sqlite 3.8.10.2
Closes Homebrew/homebrew#39940.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2015-05-20 21:14:58 -04:00
Matt Chu
6ddc16e2bc drake 0.1.7
Closes Homebrew/homebrew#39942.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2015-05-20 21:14:24 -04:00
BrewTestBot
4334364e4b mongo-c: update 1.1.6 bottle. 2015-05-20 15:45:17 +01:00
A. Jesse Jiryu Davis
ef565201b9 mongo-c 1.1.6
Closes Homebrew/homebrew#39889.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-05-20 15:45:14 +01:00
BrewTestBot
b29cf779fb http-parser: add 2.5.0 bottle. 2015-05-20 15:44:52 +01:00
Guo Xiao
ea4019909a http-parser 2.5.0 (new formula)
Closes Homebrew/homebrew#39600.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-05-20 15:44:44 +01:00
BrewTestBot
ceab114301 tracebox: update 0.3 bottle. 2015-05-20 15:43:45 +01:00