This project is mirrored from https://github.com/Homebrew/brew.git.
Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
- Jun 13, 2012
-
-
Adam Vandenberg authored
`brew doctor` shelled to `brew missing` and parsed the results. When VERBOSE was true, this caused an error as extra, unexpected output is generated. Make missing an internal command, and give it a programmatic interface.
-
- Jun 12, 2012
-
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- Jun 03, 2012
-
-
Jack Nagel authored
We now skip the outdated check if our local origin/master tracking branch matches the origin remote's current master. This prevents false positives when we are actually up-to-date but the latest commit is over 24 hours old. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- May 14, 2012
-
-
Jack Nagel authored
pkg-config can give us this information a colon-separated list; use that. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- May 11, 2012
-
-
Misty De Meo authored
Under certain circumstances, an invalid path element would cause File.expand_path to bail out. Catch mistakes and report them, then continue instead. Fixes Homebrew/homebrew#12154
-
- May 08, 2012
-
-
Jack Nagel authored
'which' only returns a Pathname or nil, and doesn't care about anything sent to stderr, so just silence it by default and combine the two methods. Closes Homebrew/homebrew#12115. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- Apr 30, 2012
-
-
Mike McQuaid authored
-
- Apr 29, 2012
-
-
Adam Vandenberg authored
-
- Apr 18, 2012
-
-
Jack Nagel authored
Fixes Homebrew/homebrew#11298. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- Apr 11, 2012
-
-
Misty De Meo authored
A common source of build problems on Xcode 4.3+ is outdated compilers, usually when a user has installed over top of an old version and hasn't installed the CLT. Since the compilers from the previous Xcode are still around, brew doctor wouldn't complain. This adds a hash containing a list of the canonical compiler versions for supported versions of Xcode, and adds a check against that to determine whether a given installation has any compilers which are out of date. Closes Homebrew/homebrew#11518. Signed-off-by:
Misty De Meo <mistydemeo@gmail.com>
-
- Apr 10, 2012
-
-
Misty De Meo authored
Closes Homebrew/homebrew#11417.
-
- Apr 09, 2012
-
-
Misty De Meo authored
Attempting to call certain methods on the Cellar before it exists, such as realpath, would cause brew doctor to throw unnecessary "file does not exist" errors. This was fixed once before, but new tests have been added since without the appropriate checks. cf. 0d28bc78d71590c8e8a5961d8d10e3d7d9b8822d Fixes Homebrew/homebrew#5188 (again).
-
- Apr 04, 2012
-
-
Rory O’Kane authored
Closes Homebrew/homebrew#11418. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- Mar 29, 2012
-
-
Mike McQuaid authored
-
- Mar 22, 2012
-
-
Adam Vandenberg authored
Having path directories with trailing slashes can cause other false warnings. Closes Homebrew/homebrew#9986.
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- Mar 21, 2012
-
-
Jack Nagel authored
Closes Homebrew/homebrew#11044. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- Mar 18, 2012
-
-
Mike McQuaid authored
-
Max Howell authored
Fixes Homebrew/homebrew#11018.
-
Adam Vandenberg authored
We warn if you are not running the latest Leopard or Snow Leopard. (We do not currently check Lion or Mountain Lion versions.)
-
- Mar 17, 2012
-
-
Max Howell authored
Since these cause trouble.
-
- Mar 16, 2012
-
-
Max Howell authored
-
Max Howell authored
Refs Homebrew/homebrew#10874.
-
Michael Nygard authored
Closes Homebrew/homebrew#10962. Signed-off-by:
Max Howell <max@methylblue.com>
-
- Mar 15, 2012
-
-
Max Howell authored
Fed up dealing with this bug in xcode-select.
-
- Mar 14, 2012
-
-
Camillo Lugaresi authored
Commit ee2c3ab ("Remove spurious libiconv dependencies") pruned all existing "depends_on 'libiconv'" usages from Homebrew in preparation for removing the libiconv dupe itself. Now that is done, and we can remove and blacklist it. It can be obtained from Homebrew-alt. Closes Homebrew/homebrew#10464. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- Mar 13, 2012
-
-
Adam Vandenberg authored
-
- Mar 11, 2012
-
-
Adam Vandenberg authored
Homebrew itself is found under HOMEBREW_REPOSITORY, which *may* be the same HOMEBREW_PREFIX, but does not have to be if you link brew into /usr/local/bin from another location.
-
- Mar 10, 2012
-
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- Mar 09, 2012
-
-
Mike McQuaid authored
Closes Homebrew/homebrew#10809.
-
- Mar 07, 2012
-
-
Max Howell authored
Some people seem to have an older xcode-select even after installing the CLT from inside Xcode or otherwise. So this is works for both. Now we aren't future-proofed in case Apple change the location, but hopefully they won't, seems unlikely. Refs Homebrew/homebrew#10743. Fixes Homebrew/homebrew#10745.
-
Max Howell authored
Well at least it checks to see if it's been a while since the last one.
-
- Mar 06, 2012
-
-
Jonathan Hitchcock authored
If there are multiple dependencies missing, 'brew doctor' can suggest that you run something like: brew install autoconf libyaml autoconf, libyaml This commit improves that output. Closes Homebrew/homebrew#10720. Signed-off-by:
Max Howell <max@methylblue.com>
-
Max Howell authored
Refs Homebrew/homebrew#9541.
-
- Mar 02, 2012
-
-
Jack Nagel authored
The order of things made the check for git in the path pointless (and was my fault); this is a better way to do it. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Max Howell authored
It was confusing that it told you to brew install missing deps and then listed formula that were already installed IMO.
-
Max Howell authored
I saw a ticket with just doctor output and no `brew --config`. This helps.
-