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 .
- Jul 18, 2012
-
-
Misty De Meo authored
Also updates the bash-completion to ignore subdirectories, rather than specific filename patterns.
-
Misty De Meo authored
Hides files with the extensions ".css" and ".erb" to ensure that the brew-bot's support files don't show up in tab-completion.
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- Jul 17, 2012
-
-
Jack Nagel authored
Since 3ee9b7bd88a2d9017cdf005b10567a1d6d8ec211 ("SoftwareSpec: initialize @mirrors"), @active_spec.mirrors will always be non-nil. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Misty De Meo authored
Fixes Homebrew/homebrew#13434.
-
- Jul 13, 2012
-
-
Misty De Meo authored
-
- Jul 12, 2012
-
-
Jack Nagel authored
Eventually I will stop making this mistake. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Jack Nagel authored
Commit 3b5d7939d9a660a83e29a86e6bab234f3e9f2dcb added completion for `brew link` options, but disabled completion of the actual command itself. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Misty De Meo authored
The last make_relative_symlink was missing the mode argument, which caused spurious linking under certain circumstances.
-
Adam Vandenberg authored
-
Adam Vandenberg authored
-
- Jul 11, 2012
-
-
Adam Vandenberg authored
-
- Jul 10, 2012
-
-
Adam Vandenberg authored
The symbol versions of :autoconf, :automake and :libtool only activate for OS X / Xcode combinations that do not provide autotools.
-
Adam Vandenberg authored
-
Charlie Sharpsteen authored
Some programs fail where they would otherwise succeed if stdout or stderr is closed. For example, using mpicc from the mpich2 formula: quiet_system 'mpicc', '--version' Fails with: LLVM ERROR: IO failure on output stream. While system 'mpicc', '--version' Succeeds. Closes Homebrew/homebrew#13253. Signed-off-by:
Charlie Sharpsteen <source@sharpsteen.net>
-
Misty De Meo authored
Add an ARGV.dry_run? helper method for '--dry-run'/'-n' now that '-n' is being used as a git-style dry-run in two commands. Closes Homebrew/homebrew#12898. Signed-off-by:
Misty De Meo <mistydemeo@gmail.com>
-
Misty De Meo authored
`brew link` can now be made to delete any conflicting files using the --force argument. It also has a --dry-run option, similar to git clean -n, which will list any files which would be deleted without touching the filesystem. Closes Homebrew/homebrew#11811. Signed-off-by:
Misty De Meo <mistydemeo@gmail.com>
-
samueljohn authored
SDK/usr/include and lib now appended instead of prepended. Prepending overwrote our precedence of HOMEBREW_PREFIX/include and lib. Closes Homebrew/homebrew#13292. Signed-off-by:
Adam Vandenberg <flangy@gmail.com>
-
- Jul 09, 2012
-
-
Adam Vandenberg authored
-
Jack Nagel authored
Closes Homebrew/homebrew#11091. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Jack Nagel authored
But only display them if they are out of sync with the corresponding Xcode version. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
- Jul 08, 2012
-
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Jeff Clites authored
When the first error pipe object is finalized, the underlying file descriptor is closed, breaking the pipe between the build script and the main Homebrew process. Keep a reference to this object so it isn't closed. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Adam Vandenberg authored
This command was undocumented, only for autotools, and it is enough to do `brew install foo -i` and then `./configure --help` in two steps.
-
Adam Vandenberg authored
* 4.3.3 is the latest on 10.7 * Give up if we don't know what the latest is (10.8 and beyond)
-
- Jul 07, 2012
-
-
Misty De Meo authored
-
- Jul 06, 2012
-
-
Misty De Meo authored
In 1.8, Pathname.find would work (and do nothing) if the source path didn't exist. In 1.9 this throws an exception instead, so check whether the file exists before trying.
-
Adam Vandenberg authored
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Jack Nagel authored
Pathname is one of the basic building block classes in Homebrew, and as such it is preferrable that `require`ing it does not drag in other Homebrew code; thus avoiding circular dependency situations. Its dependency on bottles.rb gave it an implicit dependency on formula.rb, among other things. 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>
-
Misty De Meo authored
Since methods were being called on it without verifying its type.
-
- Jul 05, 2012
-
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Jack Nagel authored
0.9.2 includes the formula specs refactoring. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Jack Nagel authored
Tools like `brew create` need to create and manipulate SoftwareSpec objects. It is useful to be able to do this directly, rather than by proxy through the special methods that serve the main formula DSL. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Jack Nagel authored
Now that a URL, version, and the (for lack of a better term) "specs" associated with said URL (e.g. the VCS revision, or a download strategy hint) are neatly bundled up in a SoftwareSpec object, it doesn't make sense to pass them individually to download strategy constructors. These constructors now take only the formula name and a SoftwareSpec as parameters. This allows us to move mirror handling out out of Formula#fetch and into the download strategies themselves. While doing so, we adjust the mirror implementation a bit; mirrors now assume the same "specs" as their owner's URL. They are still only useable by the CurlDownloadStrategy, but this provides a basis for extending mirror support to other strategies. Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-
Jack Nagel authored
Signed-off-by:
Jack Nagel <jacknagel@gmail.com>
-