aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
AgeCommit message (Collapse)Author
2014-03-03Simplify test formula setupJack Nagel
2014-03-03utils: replace bright green with ANSI bold+green.April Arcus
There are two ways of outputting bright ANSI colors to the terminal - the ANSI codes 30-37 plus a bold code (most terminals render bold text with brighter colors, by convention), or the widely supported aixterm codes 90-97. Although the aixterm codes are more precise (disambiguating bold font from bright color), the ANSI bold+green enables compatibility with the popular [Solarized](https://github.com/altercation/solarized) color theme, which reassigns the "bright green" codepoint to a shade of gray. Closes #27125. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-03-03keg_fix_install_names: gsub shebangd bottle files.Mike McQuaid
Closes #27126. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-03-02Stop mutating build options in Tab.createJack Nagel
2014-03-02Stop mutating build options in upgradeJack Nagel
2014-03-02Remove unnecessary parameter from inherited_options_forJack Nagel
2014-03-02audit: Raise a problem if the SourceForge download url uses http instead of ↵Jaime Marquínez Ferrándiz
https Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-03-02Revert "Let commands decide what mode the installer should use"Jack Nagel
I'd still like to make this change, but at least for now the initializer requires ignore_deps to be set correctly. This reverts commit 881a8855b944fa9bd7dfd598bb9197f79f7a13f0.
2014-03-01Move wkhtmltopdf to the boneyardAdam Vandenberg
Closes #26813.
2014-03-01add check for /Library PythonAdam Vandenberg
Closes #24788.
2014-03-02Fix typoJack Nagel
2014-03-02Let commands decide what mode the installer should useJack Nagel
2014-03-02Reduce the number of ways options can be passed to the installerJack Nagel
2014-03-01Remove unnecessary memoization from FormulaInstaller#build_argvJack Nagel
2014-03-02ENV: request no byte code Python when bottling.Mike McQuaid
2014-03-01Only propagate universal option if the formula defines itJack Nagel
2014-03-01Compare pathnames directlyJack Nagel
2014-03-01reinstall: re-raise original exception after cleaning upJack Nagel
2014-03-01reinstall: fix incorrect use of Formula.canonical_nameJack Nagel
Fixes #27117.
2014-03-01Make conditional more obviousJack Nagel
2014-03-01fetch: add --retry option to retry fetch once.Mike McQuaid
Sometimes there may be intermittent failures with hosts that work if immediately retried. Let's allow a single retry in this case with the --retry flag. This also behaves nicely with the --force flag. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-02-28audit: don't complain about missing cross-tap dependenciesJack Nagel
2014-02-28Fix blacklist.rb syntax errorBen Moss
Closes #27102. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-02-28Fix libpcap blacklist messageJack Nagel
2014-02-28Use Formula.pathJack Nagel
2014-02-28Remove libarchive from the blacklist, it's in core nowJack Nagel
2014-02-28Use File.expand_pathJack Nagel
2014-02-28Automatically install taps for cross-tap dependenciesJack Nagel
Closes #27099.
2014-02-28Add custom exception for untapped formulaeJack Nagel
2014-02-28Use constantJack Nagel
2014-02-28Don't verify deps when ignoring themJack Nagel
2014-02-28Use Dependency#option_name in BuildOptions#add_dep_optionJack Nagel
2014-02-28Add TapDependencyJack Nagel
2014-02-28FormulaInstaller: verify dependencies map to formulae before lockingJack Nagel
2014-02-28Remove "brew info <URL>"Jack Nagel
Closes #27076.
2014-02-28Remove deprecation notice from system "xcodebuild"Jack Nagel
The new xcodebuild method calls system "xcodebuild" underneath, so this notice would always be printed. Instead we will just rely on the audit check. Fixes #27092.
2014-02-28move scons helper to fileutilsAdam Vandenberg
2014-02-27Add audit check for system "xcodebuild"Jack Nagel
2014-02-27Add an xcodebuild helper and deprecate system "xcodebuild"Jack Nagel
In the future we can remove the ENV munging branch from Formula#system. Closes #27081.
2014-02-27Set owner ivar in SoftwareSpecJack Nagel
2014-02-27Cache and reuse Dependency objectsJack Nagel
2014-02-27Eliminate mutation of Dependency objectsJack Nagel
2014-02-27Pass expansion-time build options to install_dependencyJack Nagel
2014-02-27Clean up FormulaInstaller#install_dependencyJack Nagel
2014-02-27Add set union to OptionsJack Nagel
2014-02-27Apply cyclic dependency hack unconditionallyJack Nagel
2014-02-27Remove requested? dependency magicJack Nagel
2014-02-27deps: use Dependency objects in recursive_deps_treeJack Nagel
2014-02-27deps: keep "--all" output sortedJack Nagel
2014-02-27add audit for Formula.factoryAdam Vandenberg