163 Commits

Author SHA1 Message Date
Jack Nagel
d2607c5985 Add brew deps --union to man page 2014-05-06 21:10:50 -05:00
Adam Vandenberg
d4b0599a86 --config -> config 2014-04-30 19:09:29 -07:00
Adam Vandenberg
5012a45cf3 brew list --versions --multiple
With --multiple, only list formulae with multiple versions installed.
2014-04-27 17:05:24 -07:00
Jack Nagel
f243163b89 Document behavior of deps and uses when given multiple arguments 2014-04-07 13:16:08 -05:00
Jack Nagel
30b4961dde Modernize brew diy 2014-03-15 12:55:14 -05:00
Jack Nagel
1e9975ce36 Add missing backtick to man page 2014-03-10 15:05:51 -05:00
Jack Nagel
ce93c75f11 Remove "--fresh" option from installer
Turns out that this doesn't really work at all. `brew install` _never_
reuses options in the first place, and using this option with `brew
upgrade` results in some nasty corner cases in passing options to
dependencies.
2014-03-08 19:08:47 -06:00
Adam Vandenberg
85c93ad22c remove brew info --all
Closes Homebrew/homebrew#27322.
2014-03-08 07:43:36 -08:00
Adam Vandenberg
f22aff42e1 document fetch --force-bottle 2014-03-04 18:27:11 -08:00
Jack Nagel
1e0d1e34ba Document brew info --json
Closes Homebrew/homebrew#26811.
2014-03-02 17:16:30 -06:00
Jack Nagel
d0f43ad367 Remove "brew info <URL>"
Closes Homebrew/homebrew#27076.
2014-02-28 11:07:55 -06:00
Adam Vandenberg
43358b2bd3 remove HOMEBREW_KEEP_INFO from man page 2014-02-23 08:31:03 -08:00
Mike McQuaid
0106cfdeff man: add reinstall command. 2014-01-11 20:26:08 +00:00
Mike McQuaid
9259b450f8 man: use <br> instead of whitespace for linebreak. 2014-01-11 20:25:49 +00:00
Steven Peters
b524943226 install: add --only-dependencies option
The traditional approach to installing the dependencies of a formula is
the following:

  brew install `brew deps formula`

This approach ignores any options that are specified in the parent
formula. This pull request adds a --only-dependencies option to brew
install that installs the dependencies of a formula with optional flags,
but returns before installing the parent formula.

Closes Homebrew/homebrew#25272.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-12-19 16:43:42 -06:00
Mike McQuaid
4c2e7b1659 Update docs, comment mxcl/homebrew refs. 2013-12-14 18:18:35 +00:00
Jack Nagel
268787e76d Fix incorrect reference to prefix in manpage
Closes Homebrew/homebrew#24420.
2013-11-18 00:08:11 -06:00
Jack Nagel
674d041d80 Move brew-leaves into core
Closes Homebrew/homebrew#24371.
2013-11-16 14:10:25 -06:00
Alexis Hildebrandt
76b69a8eb4 Add HOMEBREW_INSTALL_BADGE environment variable
with which the beer emoji displayed upon successful build
can be changed.

Closes Homebrew/homebrew#23194.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-11-15 07:50:23 -08:00
Adam Vandenberg
7e2979707c document --devel|--HEAD for uses 2013-11-10 11:08:57 -08:00
Jack Nagel
4e2c45f5d1 Undocument --use-gcc and friends
These options are deprecated in favor of --cc=<compiler>, so there is no
need to continue advertising their existence.
2013-11-03 11:48:09 -06:00
Adam Vandenberg
d9f327083b add unlink apps to manpage and completion 2013-10-29 21:07:21 -07:00
David MacMahon
a999ddc002 Add HOMEBREW_NO_GITHUB_API env var.
This patch allows users to "opt out" of using the GitHub API altogether
by setting the HOMEBREW_NO_GITHUB_API environment variable. The
value of the environment variable does not matter (it can even be
empty!).

For Bash/ZSH: export HOMEBREW_NO_GITHUB_API=1

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-10-25 21:12:28 +01:00
Raymie Stata
694a9c2eed add S3DownloadStrategy
downloads tarballs from public and private S3 buckets

Closes Homebrew/homebrew#22779.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-09-24 20:43:34 -07:00
elliottcable
e8a892068e make brew-linkapps default to /Applications
Also adds support for a new `--local` flag, and documentation for the whole command.

Closes Homebrew/homebrew#22378.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-09-17 06:52:56 -07:00
Adam Vandenberg
fa0872a42c brew commands
Shows a list of built-in commands (but not shortcuts) and searches
for any external commands on the path.

Closes Homebrew/homebrew#22509.
2013-09-17 06:44:25 -07:00
Samuel John
9b755e5ad2 brew search <user>/<repo> [substring]
For example `brew search homebrew/science` to get a list of all formulae
from that tap, even if not yet tapped.

`brew search <user>/<repo>/<substr>` or
`brew search <user>/<repo> <substr>` to grep for `<substr>`
inside of the tap `<user>/<repo>`.
2013-09-03 11:52:34 +02:00
Misty De Meo
0e06e9e4b9 Document --cc= for non-Apple compilers 2013-09-01 13:23:40 -07:00
Misty De Meo
f142cca6e2 Document --cc= in the manpage 2013-08-30 07:52:13 -07:00
Samuel John
11b49ca28f man brew: Mention the example-formula.rb 2013-08-20 15:37:31 +02:00
Adam Vandenberg
96175fae20 verbage 2013-08-14 22:24:38 -07:00
Adam Vandenberg
31348c34ae add ubuntu package search 2013-08-14 22:14:35 -07:00
Adam Vandenberg
bcaa823538 Add fedora to brew search 2013-08-09 09:32:51 -07:00
Adam Vandenberg
5600713bbb Add opensuse package search 2013-08-05 15:05:02 -07:00
Adam Vandenberg
ba0bebd343 regenerate man page 2013-08-03 10:11:52 -07:00
chdiza
6a205ab263 Man page: document brew fetch --build-from-source
Closes Homebrew/homebrew#21070.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-07-12 15:25:19 +01:00
Jack Nagel
81984411b0 Respect $VISUAL when picking an editor 2013-07-09 20:12:53 -05:00
Jack Nagel
c774ed05e4 Update cache location in man page
Fixes Homebrew/homebrew#20640.
2013-06-20 16:53:20 -05:00
Adam Vandenberg
0e7d47332c Add brew search --debian <f> 2013-05-27 17:32:27 -07:00
Jack Nagel
9212e1b1ee Clarify API token env var 2013-05-23 10:03:08 -05:00
Daniel Lee Harple
08388b149e Added support for a GitHub Personal API Access token
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-05-22 19:53:05 -05:00
Adam Vandenberg
070758689b Update HOMEBREW_DEBUG in man page.
Closes Homebrew/homebrew#17344.
2013-04-30 13:46:57 -07:00
Jack Nagel
3c294c9cd6 Document brew --env
Closes Homebrew/homebrew#19083.
2013-04-13 14:18:53 -05:00
Jack Nagel
2ca59ca5bd Document --env=std 2013-04-13 14:17:17 -05:00
Jack Nagel
e0ea3f0090 Document brew link --force 2013-04-13 14:10:08 -05:00
Jack Nagel
a53e8296bc Fix man page formatting 2013-04-09 16:47:00 -05:00
Max Howell
c902190c3b Add brew sh to the manpage 2013-04-09 14:16:10 -04:00
Jack Nagel
36cc8ee361 Document brew deps --installed 2013-04-03 11:24:38 -05:00
Simon Sigurdhsson
f8a88b5f28 brew-pin: prevent selected formulae from upgrade.
* Added `pin` et. al. to manpage.
* Added `brew pin` to `brew.1` * Added `brew unpin` to `brew.1`
* Added `brew list --pinned` to `brew.1`
* Added information about frozen formulae to `brew upgrade` in `brew.1`
* Added `pin` et.al. to completion scripts.
* Unpin formulae when uninstalling them
* Unpin and re-pin formulae when upgrading (avoids stale symlink)

References Homebrew/homebrew#18386.
Closes Homebrew/homebrew#18515.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-03-30 19:50:47 +00:00
Matt Torok
5f2f6a35dd Added '--installed' option to deps command.
When deps command is passed this option, it will only show the dependencies
for the installed forumas. This option overrides the '--all' option.

Closes Homebrew/homebrew#18276.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-03-05 19:43:12 -08:00