aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
AgeCommit message (Collapse)Author
2014-03-05Enable tracking of formula revisionsJack Nagel
It is useful to be able to prompt upgrades in response to events other than a version update; for example, when a dependency is updated and its library version changes, dependents need to be rebuilt to link against the new library. Currently we cannot do this automatically, which means a flood of tickets whenever the library version of a popular library changes. To address this, we need to track an additional piece of metadata, the "revision" of the formula, which can be incremented when appropriate to prompt an upgrade. It can then be reset to zero when the next version change occurs.
2014-03-05Consolidate bottle defaults and remove a methodJack Nagel
2014-03-05audit: ...or quotedAdam Vandenberg
2014-03-05audit: find env/export as a full word, not as a prefixAdam Vandenberg
Closes Homebrew/homebrew#27219.
2014-03-04Fix the bad value of EC2_HOME in the standard_instructionssowawa
Change EC2_HOME's value from 'export EC2_HOME="/usr/local/Cellar/ec2-api-tools/1.6.12.0/"' to 'export EC2_HOME="/usr/local/Cellar/ec2-api-tools/1.6.12.0/libexec"' Avoide the wrong value of EC_HOME caused by 024208466bfb4ffb479d48709caecc6a1e85ba4d Closes Homebrew/homebrew#25918. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-03-04Add wxPython as separate formulaMisty De Meo
Closes Homebrew/homebrew#25651. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-03-04Use name of formula rather than name of dependencyTroels Thomsen
Closes Homebrew/homebrew#27192. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-03-04Let commands decide what mode the installer should useJack Nagel
2014-03-04Extract installer setup to prelude methodJack Nagel
2014-03-04Show full name when a installing a tap dependencyJack Nagel
2014-03-04bottle: fix bottling Git tag case.Mike McQuaid
2014-03-03Prefer Formula#name method over Formula#to_sJack Nagel
2014-03-03Skip dependency expansion completely when ignore_deps? is trueJack Nagel
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 Homebrew/homebrew#27125. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-03-03keg_fix_install_names: gsub shebangd bottle files.Mike McQuaid
Closes Homebrew/homebrew#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 Homebrew/homebrew#26813.
2014-03-01add check for /Library PythonAdam Vandenberg
Closes Homebrew/homebrew#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 Homebrew/homebrew#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 Homebrew/homebrew#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 Homebrew/homebrew#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 Homebrew/homebrew#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 Homebrew/homebrew#27092.
2014-02-28move scons helper to fileutilsAdam Vandenberg