diff options
| author | Noah Manneschmidt | 2013-11-07 19:45:25 -0600 |
|---|---|---|
| committer | Jack Nagel | 2013-11-08 22:23:12 -0600 |
| commit | ff3880763939eb79d41f0b760961360132a1792f (patch) | |
| tree | 3f84c3651bd8ae1abf23609bcd334645e94a73db /Library | |
| parent | 94dacf26d95ee41af1a432b70b249c5d09c932e3 (diff) | |
| download | homebrew-ff3880763939eb79d41f0b760961360132a1792f.tar.bz2 | |
glog: fix patches
Avoid using a patch URL with a token that expires
Avoid using a hash when patches need to be applied in order
Closes #24068.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/glog.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Library/Formula/glog.rb b/Library/Formula/glog.rb index c89e03d0b..71a03e90b 100644 --- a/Library/Formula/glog.rb +++ b/Library/Formula/glog.rb @@ -9,15 +9,15 @@ class Glog < Formula def patches if MacOS.version >= :mavericks - { + [ # Since 0.3.4 has not yet been released, manually apply # r134 that refactors the way headers are included. - :p1 => "https://gist.github.com/danslo/7128754/raw/9b19991da4753f5efb87ae9a6939e6c3e9bc1fdf/glog_logging_r134.diff", + "https://gist.github.com/danslo/7128754/raw/9b19991da4753f5efb87ae9a6939e6c3e9bc1fdf/glog_logging_r134.diff", # Don't use tr1 prefix when we're using libc++: - # https://code.google.com/p/google-glog/issues/detail?id=121 - :p0 => "https://google-glog.googlecode.com/issues/attachment?aid=1210003000&name=libc%2B%2B.diff&token=XibcNVdg2suz1w646JbsbHHOkJs%3A1382896876470", - } + # https://code.google.com/p/google-glog/issues/detail?id=121 (patch mirrored on gist.github.com) + "https://gist.github.com/noahm/7364571/raw/436283200fe5a3ac5d00d769bb2203260bebfcf9/libc%2B%2B.diff", + ] end end |
