aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2014-04-27Use Formulary.factory to find formula in tapsJack Nagel
2014-04-26Explicitly pass key-value options to the build processJack Nagel
Fixes Homebrew/homebrew#28695.
2014-04-25Yield absolute paths from find_formulaJack Nagel
2014-04-25Pass around only absolute paths when dealing with tapsJack Nagel
2014-04-25Build relative paths using resolved_path and relative_path_fromJack Nagel
2014-04-25Less code in begin clauseJack Nagel
2014-04-25Extract some boilerplate into an each_tap methodJack Nagel
2014-04-24Remove slow tab completion for `brew tap`Jack Nagel
This requires hitting the network, which makes the first invocation slow. The results are inaccurate as it only pulls down the first page of results. It is also prone to false-positives. A better implementation is welcome, but in the years since I wrote this code I can't think of a single time where I found it useful.
2014-04-24Fix tap completion when there aren't any tapsJack Nagel
2014-04-24Don't use a regexp to match paths, just compare them for equalityJack Nagel
2014-04-24Pass arguments instead of reopening PathnameJack Nagel
2014-04-24Using existing method to make tap symlinksJack Nagel
2014-04-24Update bash completion for new tap formatJack Nagel
2014-04-24Make the on-disk representation of taps unambiguousTsukasa OMOTO
This commit supports "-" and "_" in names of user and repository. Closes Homebrew/homebrew#28203. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-04-24Blacklist more flags that clang does not supportJack Nagel
Fixes Homebrew/homebrew#28680.
2014-04-23separate the brew info for multiple formulaeDan Martinez
Closes Homebrew/homebrew#27311. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-04-23Migrate apple-gcc42 back to homebrew/versions.Mike McQuaid
Closes Homebrew/homebrew#28418.
2014-04-23Use gcc instead of apple-gcc42 when needed.Mike McQuaid
2014-04-23LICENSE: move to root folder.Mike McQuaid
This is where people expect to find it so let's make it easier. Closes Homebrew/homebrew#28418.
2014-04-23Support core GCC formula as a GCC compiler.Mike McQuaid
It is activated by the same mechanism as the Homebrew/versions compilers which now check if the GCC formula uses the same, correct version. References Homebrew/homebrew#28418.
2014-04-23shared: don't warn about non-Apple compilers now.Mike McQuaid
2014-04-23formula: move cxxstdlib methods to the class.Mike McQuaid
This allows disabling this checks when e.g. pouring bottles.
2014-04-22Only directories are candidates for superenv binJack Nagel
2014-04-22Simplify conditions for superenv activationJack Nagel
`MacOS::Xcode.without_clt? && MacOS.sdk_path.nil?` should never be true. In its earliest form, this would raise a bare RuntimeError in an effort to have the bug reported. Later, it was changed to silently disable superenv. But we don't want to do that. If there's a bug, or the user's system is misconfigured, we want to know, so that we can fix the bug, or the user can fix their system. So let's remove the condition.
2014-04-22README: use the word "maintainers".Mike McQuaid
2014-04-21The argument to MacOS.locate is always a stringJack Nagel
2014-04-21rewrite TeX requirement messageMario Mueller
Closes Homebrew/homebrew#28588. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-04-21Only check Xcode prefix when non-nilJack Nagel
2014-04-21Remove comments that no longer reflect any adjacent codeJack Nagel
2014-04-21Don't test jruby deps since it makes the tests slowJack Nagel
2014-04-21Adjust installer for updated link error handlingJack Nagel
2014-04-21Adjust link command for updated error handlingJack Nagel
2014-04-21Raise AlreadyLinkedError when a keg is already linkedJack Nagel
2014-04-21Only unlink after a LinkErrorJack Nagel
2014-04-21Raise useful errors from make_relative_symlinkJack Nagel
2014-04-21Rework make_relative_symlink error handling and move it into kegJack Nagel
2014-04-21Print the attempted command when xcrun wrapper failsJack Nagel
2014-04-21Use File::PATH_SEPARATOR since we use it everywhere elseJack Nagel
2014-04-21Fix typoJack Nagel
2014-04-21Add some comments to the cc wrapperJack Nagel
2014-04-21Only interpolate constant regexps onceJack Nagel
2014-04-21Fix keg version in Formula#to_hashFinn Smith
Closes Homebrew/homebrew#28550. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-04-21Remove code that doesn't do anythingJack Nagel
2014-04-21Add newlines between methodsJack Nagel
2014-04-21Write the positive case firstJack Nagel
2014-04-21Make obvious that what we care about is the presence of sdkrootJack Nagel
2014-04-21Make obvious that this is a nested conditionalJack Nagel
2014-04-21Filter list before mapping itJack Nagel
2014-04-20Remove last monkeypatchJack Nagel
2014-04-20Remove nil split monkeypatchJack Nagel