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 30, 2012
-
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- Jun 29, 2012
-
-
Jack Nagel authored
- Make ORIGINAL_PATHS an array of Pathnames instead of strings - Append the dev tools path once in global.rb instead of build.rb Closes Homebrew/homebrew#13075. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- Jun 28, 2012
-
-
Adam Vandenberg authored
-
Adam Vandenberg authored
* call `xcode-select` once and cache the result * reuse functions where appropriate
-
Adam Vandenberg authored
-
samueljohn authored
Undoing parts of the hot fix 78b9e8548e771a59e382e6f13339664ec5498391. The only thing missing was to check for `system "/usr/bin/xcrun -find make 1>/dev/null 2>&1"` and then it's safe to call locate. This commit restores the original functionality but without the risk for recursion and improves the logic of `MacOS.locate`. See below. To important changes in this commit: - For Xcode _and_ CLT: don't add the SDK and leave things as before. So if `MacOS.clt_installed?`, then no `SDKROOT` and `-L` and `-I` directories are set in `ENV.macosxsdk`. - Improved the logic for `MacOS.locate` for Xcode-only situations by assuring that the xcode-select path is correct. This is done by checking that `bin/make` exists and is executable. Otherwise it was possible to set xcode-select to an empty dir. This check is done in `MacOS.sdk_path` too. We are now able to use Xcode wherever it is and can work even, if xcode-select is set to invalid values. (Remember some users don't have sudo access and that is needed to fix xcode-select). Some minor whitespace fixes. Minor backtick fix in doctor.rb's printout. Signed-off-by:
Adam Vandenberg <flangy@gmail.com>
-
Adam Vandenberg authored
Bump the version number due to the Xcode/CLT change.
-
Adam Vandenberg authored
-
- Jun 27, 2012
-
-
samueljohn authored
Closes Homebrew/homebrew#12363. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- Jun 26, 2012
-
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Mike McQuaid authored
Fixes Homebrew/homebrew#12674.
-
Misty De Meo authored
-
Misty De Meo authored
-
Misty De Meo authored
According to a user on IRC with a brand-new Mac, xcode-select is preconfigured to /Developer out of the box even though that doesn't exist on modern Xcode. So we shouldn't trust that it makes any sense.
-
Misty De Meo authored
There were two newlines being returned by the command being called in sdk_path, not just one.
-
Misty De Meo authored
Under certain circumstances, MacOS.locate and MacOS.dev_tools_path would call each other recursively. This was limited to systems with Xcode minus the CLT. See Homebrew/homebrew#13012.
-
Charlie Sharpsteen authored
Passing `--ignore-dependencies` to `brew upgrade` will now have the desired effect.
-
- Jun 25, 2012
-
-
Misty De Meo authored
-
samueljohn authored
Allow XCode without the Command Line Tools to work with homebrew, so it's not necessary to register an Apple Dev ID and/or go to the XCode prefs and download the CLT. Yay! Further, this commit allows to use the CLT solely (without the need for XCode). Saves quite some megs. (Some furmulae require xcodebuild) Of course XCode together with the CLT is still fine and has been tested on 10.7 and 10.6 with Xcode 4 and Xcode 3. Only on Lion or above, tell the user about the options, which are - Xcode without CLT - CLT without Xcode - both (ok, it's not directly stated, but implicit) So if no Xcode is found and we are on Lion or above, we don't fail but check for the CLTs now. For older Macs, the old message that Xcode is needed and the installer should be run is still displayed. If the CLT are not found but Xcode is, then we print out about the experimental status of this setup. Closes Homebrew/homebrew#10510. Signed-off-by:
Adam Vandenberg <flangy@gmail.com>
-
- Jun 24, 2012
-
-
Tim Oram authored
Signed-off-by:
Adam Vandenberg <flangy@gmail.com>
-
- Jun 19, 2012
-
-
Misty De Meo authored
Another fix for Homebrew/homebrew#5188.
-
Misty De Meo authored
-
Misty De Meo authored
Fixes Homebrew/homebrew#12238.
-
Misty De Meo authored
Fixes Homebrew/homebrew#5188 (again).
-
- Jun 18, 2012
-
-
Jack Nagel authored
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>
-
Jack Nagel authored
Keg#fix_install_names punts if bad install names reference dylibs that aren't "nearby". Enable this machinery to fix more complex directory hierarchies by searching everything under 'lib' for the bad name's basename. Additionally, teach it to correctly handle Mach-O bundle files. Fixes Homebrew/homebrew#12810. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Misty De Meo authored
Mono installs its own pkg-config symlink into /usr/bin/pkg-config, which breaks non-Mono builds. Provide a specific warning. Closes Homebrew/homebrew#12859.
-
- Jun 17, 2012
-
-
Jack Nagel authored
c.f. Homebrew/homebrew#12810. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- Jun 16, 2012
-
-
Jack Nagel authored
file(1) does not allow leading whitespace on shebang lines, and there appears to be no restrictions on what characters follow '#!', either. While at it, fix an erroneous shebang test. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- Jun 15, 2012
-
-
samueljohn authored
You can `brew unrar` Closes Homebrew/homebrew#12858. Signed-off-by:
Misty De Meo <mistydemeo@gmail.com>
-
Misty De Meo authored
-
samueljohn authored
- Removed outdated message about running the installer. Closes Homebrew/homebrew#12857. Signed-off-by:
Misty De Meo <mistydemeo@gmail.com>
-
- Jun 14, 2012
-
-
Adam Vandenberg authored
This is useful for doing a --debug build, as the git repo will pick up any changes that have been made up to that point in the build process. --git is still most useful in conjunction with --interactive, though.
-
- Jun 13, 2012
-
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-