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 12, 2012
-
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- Jun 11, 2012
-
-
Adam Vandenberg authored
-
- Jun 08, 2012
-
-
Karsten Sperling authored
(rather than the version being installed) This avoids having to change the variable when a different version is linked. Also ensure the private key / cert variables point to only 1 file. Signed-off-by:
Adam Vandenberg <flangy@gmail.com>
-
Ranmocy authored
Closes Homebrew/homebrew#12619. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- Jun 06, 2012
-
-
Adam Vandenberg authored
See: https://github.com/mxcl/homebrew/pull/12587
-
- Jun 04, 2012
-
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Charlie Sharpsteen authored
Most Homebrew builds produce libraries, so CMake should give priority to libraries when resolving dependencies. Closes Homebrew/homebrew#12497. Signed-off-by:
Charlie Sharpsteen <source@sharpsteen.net>
-
- 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>
-
- Jun 01, 2012
-
-
Misty De Meo authored
Rationale: some users insist on replacing the /usr/bin/ruby symlink to point to another ruby on their system, which may break homebrew. Use the full Framework path instead, which is less likely to be tampered with. This also reorganizes the brew --config checks to reflect the different path. Fixes Homebrew/homebrew#12009. Closes Homebrew/homebrew#12333. Signed-off-by:
Misty De Meo <mistydemeo@gmail.com>
-
- May 31, 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
- Reimplement archs_for_command on top of the new Mach-O methods - Move ArchitectureListExtension to mach.rb - Add a test for the ArchitectureListExtension Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Jack Nagel authored
Some libraries do not have the .dylib extension (e.g. Qt framework libs), but need to have their install names rewritten to prevent other packages from breaking due to upgrades. Use the new Pathname#dylib? instead.
-
Jack Nagel authored
The MachO module contains methods for learning about Mach-O binaries, and can be used where one might normally shell out to file(1). Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Jack Nagel authored
-
- May 27, 2012
-
-
Will Ross authored
JNI libraries in OS X are suffixed with jnilib. Additionally, /usr/local/lib is a default search location for JNI libraries, so Homebrew shouldn't complain when it installs .jnilibs into lib. Signed-off-by:
Adam Vandenberg <flangy@gmail.com>
-
- May 24, 2012
-
-
Jack Nagel authored
We use a pipe to marshal exceptions from the build script back to the main Homebrew process; the associated file descriptor is stored in an environment variable so that the script can figure out which descriptor to use after being exec'd. However, any child processes of the build script inherit this descriptor (i.e. anything spawned via "system" by the formula during installation). Normally this is not an issue, but if a formula executes a long-running process such as a daemon, the main Homebrew process will never see EOF on the error pipe because the daemon still has an open descriptor. We can fix this while preserving current behavior by setting the close-on-exec flag on the build script's error pipe descriptor. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- May 23, 2012
-
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Jack Nagel authored
This differs from the current std_cmake_parameters in that it returns an array instead of a string. Doing so makes dealing with it in formulae much more pleasant, and for new formula hackers, less surprising. std_cmake_parameters is retained in compat to maintain compatibility with external formulae. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- May 16, 2012
-
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- May 15, 2012
-
-
Max Howell authored
`require` is OK without an .rb extension, but the rest of our code will be confused and generate weird errors. Fixes Homebrew/homebrew#11558.
-
Max Howell authored
Potentially build scripts would call sudo, if so we don't want that to automatically succeed just because the time-period in which sudo works is still active after a previous incantation. Closes Homebrew/homebrew#10629. In fact I don't see how this can have been the problem, but if this isn't the problem then I don't see what else can be the problem.
-
- 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>
-
Jack Nagel authored
Having in_aclocal_dirlist? defined as a method on FormulaInstaller is a little weird; since its just a return condition of check_m4, move the code there. 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 10, 2012
-
-
http://svnAdam Vandenberg authored
-
- 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>
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- May 06, 2012
-
-
Nicolas Despres authored
Fixes Homebrew/homebrew#11552. Closes Homebrew/homebrew#11777. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- May 04, 2012
-
-
Adam Vandenberg authored
-
Adam Vandenberg authored
From a patch by @RuiPereira Closes Homebrew/homebrew#12011.
-
Adam Vandenberg authored
-
Jack Nagel authored
The --depth option is apparently more nuanced that I had originally thought, and while it does not actually break repositories, repeatedly using "--depth 1" can cause problems depending on the structure of the history. Luckily, we don't actually need it to prevent the entire repository from being fetched as long as the fetch respec is set correctly, which we do since 7718c939b06987ff8f1ecd599c8ace6f998ce180. Fixes Homebrew/homebrew#12024. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Charlie Sharpsteen authored
When referencing `Hardware.processor_count`, `ENV.make_jobs` will return an integer. If referencing the environment variable `HOMEBREW_MAKE_JOBS`, it returned a string. Now, the function always returns an integer. Fixes Homebrew/homebrew#12033.
-
Charlie Sharpsteen authored
This reverts commit ea1a9e603abe3dab90bf5b157d2614cf58e2cc8e. Argh. Unrelated PySide changes slipped in.
-
Charlie Sharpsteen authored
When referencing `Hardware.processor_count`, `ENV.make_jobs` will return an integer. If referencing the environment variable `HOMEBREW_MAKE_JOBS`, it returned a string. Now, the function always returns an integer. Fixes Homebrew/homebrew#12033.
-
- May 03, 2012
-
-
Christian Höltje authored
This fixes the `site-scripts` and `site-functions` directories so that zsh points to the HOMEBREW_PREFIX version of these files instead of the Cellar version. This means you can drop files in these directories and the files will persist when you upgrade zsh. Otherwise they disappear when you upgrade zsh. Closes Homebrew/homebrew#11955. [jn: mkpath everything under share/zsh] Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Adam Vandenberg authored
-