| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-06-04 | brew-test-bot: strip bell/alert character. | Mike McQuaid | |
| 2014-06-03 | String isn't enumerable in 1.9+ | Jack Nagel | |
| 2014-06-03 | Switch to "Current" Ruby framework symlink | Jack Nagel | |
| Closes #29795. Closes #29819. | |||
| 2014-05-26 | Fix formula path usage in brew-gist-logs | Jack Nagel | |
| Formula#path can no longer be a symlink. | |||
| 2014-05-22 | fix HTTP 422 when gist-logs sends an empty file | Alex Burka | |
| Closes #29476. Signed-off-by: Jack Nagel <jacknagel@gmail.com> | |||
| 2014-05-21 | make `tests` an internal command | Adam Vandenberg | |
| 2014-05-17 | Move brew-unpack to core | Jack Nagel | |
| 2014-05-17 | Remove brew-dirty | Adam Vandenberg | |
| Replaced with `brew list --versions --multiple`. | |||
| 2014-05-17 | Remove brew-grep | Adam Vandenberg | |
| 2014-05-15 | remove empty file | Adam Vandenberg | |
| 2014-05-13 | add brew-bundle-dir contributed command | Wil Moore III | |
| Closes #27258. Signed-off-by: Adam Vandenberg <flangy@gmail.com> | |||
| 2014-05-13 | remove commented-out line of code | Adam Vandenberg | |
| 2014-05-07 | brew-pull: update for new tap structure | Misty De Meo | |
| 2014-04-30 | --config -> config | Adam Vandenberg | |
| 2014-04-30 | brew-test-bot: handle failing devel requirements. | Mike McQuaid | |
| 2014-04-29 | unpack: use correct constant scope for DATA | Jack Nagel | |
| Formula::DATA only worked by accident of implementation; DATA during the build is actually Object::DATA, so we should mirror that here. This reverts commit b12444ba6e1ac1d596a70ff4c777d9386d0791ac. | |||
| 2014-04-29 | brew-unpack: Handle new style :DATA patches | Charlie Sharpsteen | |
| Instances of `IOPatch` created by `patch :DATA` are not affected by re-setting the `DATA` constant of the `Formula` instance. For these patches, we iterate through the `patchlist` and use `instance_variable_set` to attach data. A bit hacky, but `patchlist` has no write accessors so there isn't a clean way to modify patch contents. | |||
| 2014-04-27 | Fix brew-readall for updated tap structure | Jack Nagel | |
| 2014-04-24 | Remove slow tab completion for `brew tap` | Jack Nagel | |
| This requires hitting the network, which makes the first invocation slow. The results are inaccurate as it only pulls down the first page of results. It is also prone to false-positives. A better implementation is welcome, but in the years since I wrote this code I can't think of a single time where I found it useful. | |||
| 2014-04-23 | Use gcc instead of apple-gcc42 when needed. | Mike McQuaid | |
| 2014-04-15 | brew-test-bot: check CompilerSelectionError twice. | Mike McQuaid | |
| It may be that even installing a new compiler doesn't fix things so detect that case and skip the formula installation rather than erroring out. | |||
| 2014-04-14 | Don't walk tap twice just to get the formula path again, it's slow | Jack Nagel | |
| 2014-04-13 | readall: read formulae that aren't tapped. | Mike McQuaid | |
| This will allow the reading and checking of formulae that mirror Homebrew core formulae (e.g. `git` in a tap) and, with the previous exit code changes, is a reasonable check for "are all the formulae in taps updated to the latest core DSL". Closes #28328. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2014-04-11 | readall: set Homebrew.failed on exception. | Mike McQuaid | |
| 2014-04-05 | Remove unnecessary usage of Formula.canonical_name | Jack Nagel | |
| 2014-03-17 | brew-pull: handle syntax errors in formulae. | Mike McQuaid | |
| 2014-03-13 | brew-unpack: don't chdir further than a normal install would | Jack Nagel | |
| If we want to generate usable patches from inside the unpacked source, then we should start from the same directory that a normal install would start from. | |||
| 2014-03-13 | brew-unpack: separate args passed to system | Jack Nagel | |
| 2014-03-13 | brew-unpack: use extend instead of reopening Formula | Jack Nagel | |
| 2014-03-13 | brew-test-bot: set Git author/committer correctly. | Mike McQuaid | |
| 2014-03-13 | brew-test-bot: use install_args for building deps. | Mike McQuaid | |
| 2014-03-13 | brew-test-bot: hide --retry flag. | Mike McQuaid | |
| 2014-03-12 | brew-unpack: remove obsoleted bottle workaround | Jack Nagel | |
| 2014-03-08 | pull: add --bump option. | Mike McQuaid | |
| 2014-03-08 | pull: warn if not pulling bottles. | Mike McQuaid | |
| 2014-03-08 | pull: general cleanup/fixes. | Mike McQuaid | |
| 2014-03-04 | brew-man: view the target file directly | Adam Vandenberg | |
| 2014-03-01 | brew-test-bot: use fetch --retry. | Mike McQuaid | |
| Closes #27110. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2014-02-23 | brew-test-bot: don't force-fetch deps. | Mike McQuaid | |
| 2014-02-23 | brew-test-bot: further tweak cleanup handling. | Mike McQuaid | |
| 2014-02-22 | Remove brew-mirror-check command | Jack Nagel | |
| This command uses removed API and is thus broken. It can always be retrieved from the git history. | |||
| 2014-02-22 | brew-test-bot: only cleanup cache once. | Mike McQuaid | |
| 2014-02-22 | brew-test-bot: push master with tags. | Mike McQuaid | |
| 2014-02-22 | brew-test-bot: force dep fetches on cleanup. | Mike McQuaid | |
| 2014-02-17 | pull: tap if necessary. | Mike McQuaid | |
| 2014-02-12 | brew-graph: improve formatting. | Matt Torok | |
| This commit adds additional formatting options to the graph. Most noticeable is a top-to-bottom layout (rather than the previous left-to-right), and nicer fonts on everything. More subtly, the ranking mechanism has been updated so that the "Safe to Remove" cluster is always at the highest rank (fixing a bug where non-leaf nodes could have been placed next to it,) and added better margins and padding. The rank separation was also decreased for a more compact graph. Under the hood, the GraphViz output code was updated to support attributes with a list of sub-attributes (for example, 'graph [fontsize="11", fontname="Helvetica"]') and to not put quotes around HTML-like labels in clusters. Closes #26651. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2014-02-11 | Use HOMEBREW_PREFIX/opt to find installs instead of symlinks in bin, lib, sbin. | Chad Catlett | |
| Closes #25868. Signed-off-by: Adam Vandenberg <flangy@gmail.com> | |||
| 2014-02-11 | ls-taps: search names only | Jack Nagel | |
| 2014-02-11 | brew-services: don't hardcode launchctl path | Bo Jeanes | |
| This change allows users to install the `launchctl` wrapper in the `reattach-to-user-namespace` formula which makes the command work in Tmux and other non-standard environments. Closes #26609. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2014-02-10 | Fix ls-taps for v3 API | Jack Nagel | |
| This doesn't handle paginated results, but it fetches the 100 most starred results so that's probably good enough for now. Fixes #26566. | |||
