aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2015-02-09nsq: update 0.3.2 bottle.BrewTestBot
2015-02-09nsq 0.3.2Matt Reiferson
nsq v0.3.2 Closes #36658. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-02-08Make compiler shim robust against missing environment variablesJack Nagel
Fixes #36217.
2015-02-08Get rid of cccfg? methodJack Nagel
2015-02-08Add predicate methods for compiler shim configurationJack Nagel
2015-02-08Quote entire path passed to checkout-indexJack Nagel
2015-02-08Revert "download_strategy: escape spaces in git submodule path."Jack Nagel
This is causing submodules to be checked out into a path with a literal "$path" component: $ find . | grep "\$path$" ./$path ./Carthage/Checkouts/Commandant/$path ./Carthage/Checkouts/Commandant/Carthage/Checkouts/Quick/$path ./Carthage/Checkouts/PrettyColors/$path ./Carthage/Checkouts/Quick/$path ./Carthage/Checkouts/ReactiveCocoa/$path ./Carthage/Checkouts/ReactiveCocoa/Carthage/Checkouts/Quick/$path ./Carthage/Checkouts/ReactiveTask/$path ./Carthage/Checkouts/ReactiveTask/Carthage/Checkouts/Quick/$path ./Carthage/Checkouts/ReactiveTask/Carthage/Checkouts/ReactiveCocoa/$path ./Carthage/Checkouts/ReactiveTask/Carthage/Checkouts/ReactiveCocoa/Carthage.checkout/Quick/$path This reverts commit 3a5f099297e9ab3b799af5f7a65edd8d64bc7bae.
2015-02-08cmd/info: prevent duplicate dependency display.Xu Cheng
Before: $ brew info llvm ==> Dependencies Build: xz ✔, xz ✔, xz ✔, xz ✔, xz ✔, xz ✔ $ brew info --json=v1 llvm ... "dependencies":["xz","xz","xz","xz","xz","xz"], ... After $ brew info llvm ==> Dependencies Build: xz ✔ $ brew info --json=v1 llvm ... "dependencies":["xz"], ... Closes #36653. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-02-08keybase 0.7.4Nicolò Ciraci
Bump to version 0.7.4 Closes #36652. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-02-08carthage: update 0.5.3 bottle.BrewTestBot
2015-02-08carthage 0.5.3Justin Spahr-Summers
Also, the `make clean` step can now be removed, per https://github.com/Carthage/Carthage/pull/284#issuecomment-70677079. Closes #36646. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-02-08download_strategy: escape spaces in git submodule path.Kashif Rasul
for issue Homebrew/homebrew#36646 Closes #36649. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-02-08the_silver_searcher: update 0.29.1 bottle.BrewTestBot
2015-02-08the_silver_searcher 0.29.1David Larson
Closes #36648. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-02-08gdbm: update 1.11 bottle.BrewTestBot
2015-02-08gdbm: add with-libgdbm-compat to build ndbm headerAlex Leighton
Closes #36640. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-02-08audit: catch more examples from example_formulaDominyk Tiller
See https://github.com/Homebrew/homebrew/pull/36629#discussion_r24293912 amongst other recent examples. The example formula isn’t as strongly policed as the ` brew create ` default, this tries to do something about that. Closes #36639. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-02-08osh: update 20150115 bottle.BrewTestBot
2015-02-08osh 20150115Dominyk Tiller
Version bump. Closes #36638. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-02-08Minimize test JPEG and PNGDavid Christenson
Losslessly compress with jpegoptim and optipng. Closes #36606. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-02-08Add test PDF and SVG.David Christenson
2015-02-08etcd: update 2.0.0 bottle.BrewTestBot
2015-02-08etcd 2.0.0Shawn Morel
Update etcd to 2.0 Closes #36637. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-02-08envv: add 1.7 bottle.BrewTestBot
2015-02-08envv 1.7 (new formula)Buck Golemon
Closes #36629. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-02-08httpie: update 0.9.1 bottle.BrewTestBot
2015-02-08httpie 0.9.1Jakub Roztočil
https://github.com/jakubroztocil/httpie/releases/tag/0.9.1 Closes #36634. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-02-08node: update 0.12.0 bottle.BrewTestBot
2015-02-08node 0.12.0Dominyk Tiller
Shoot me in the arm and colour me surprised, Node 0.12 has landed stable. Also bump npm to 2.5.1 - Although marked pre-release by upstream this is the npm version shipped in this Node release, and currently in iojs as well, and npm is actively nudging people into deliberately jumping over the normal release schedule just for once, so following that lead here. I’ve also taken the chance to simplify the formula quite a bit, removing the increasingly complicated devel/head/stable logic and meshing it back into one easier block. The icu4c dep lands as recommended because Node upstream are shipping binaries with that support (in English) available. OpenSSL remains optional, but is moved to general availability rather than just devel for the sake of simplification and having it optional everywhere causing no harm. Deps may need rebuilding. I’m hoping the bot is kind enough to check the bottles of the formulae that have them, but I’ll do a general double check ASAP. Closes #36608. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-02-07moreutils: update 0.55 bottle.BrewTestBot
2015-02-07moreutils 0.55Baptiste Fontaine
Closes #36630. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-02-07formula: sort installed version in to_hashXu Cheng
https://github.com/Homebrew/homebrew-brewdler/pull/43#discussion_r24248760 Closes #36611. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-02-07Use start_with? to simplify path sanity checkJack Nagel
2015-02-07Don't prune cellar paths when cellar is in /optJack Nagel
Fixes #35382.
2015-02-07botan: update 1.10.9 bottle.BrewTestBot
2015-02-07botan 1.10.9Dominyk Tiller
Version bump, deprecated an option in favour of newer syntax, added a relatively simple test. Closes #36534. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2015-02-07vnu 20150207Alex Dunn
Closes #36609. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2015-02-07spoof-mac: update 2.0.2 bottle.BrewTestBot
2015-02-07spoof-mac 2.0.2Dominyk Tiller
Bump. Closes #36615. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2015-02-07gnu-getopt: update 1.1.6 bottle.BrewTestBot
2015-02-07gnu-getopt 1.1.6Jaehoon You
Release notes: http://frodo.looijaard.name/project/getopt/release/1-1-6 Signed-off-by: Jaehoon You <teslamint@gmail.com> Closes #36618. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2015-02-07d-bus: update 1.8.14 bottle.BrewTestBot
2015-02-07d-bus 1.8.14David Christenson
Update to latest stable release. Closes #36619. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2015-02-07geoip: update 1.6.4 bottle.BrewTestBot
2015-02-07GeoIP 1.6.4David Christenson
Update to latest stable release, remove unnecessary 'stable do' block. Closes #36620. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2015-02-07jpeg-turbo: update 1.4.0 bottle.BrewTestBot
2015-02-07jpeg-turbo 1.4.0David Christenson
Update to latest release, modernize formula. Closes #36621. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2015-02-07libraw: update 0.16.0 bottle.BrewTestBot
2015-02-07LibRaw 0.16.0David Christenson
Update to latest stable release, update resources, modernize formula. Closes #36625. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2015-02-07x264: update r2495 bottle.BrewTestBot