aboutsummaryrefslogtreecommitdiffstats
path: root/Library
AgeCommit message (Collapse)Author
2013-12-12Initialize ivars to silence warningsJack Nagel
2013-12-12Remove unused variablesJack Nagel
2013-12-12uses: fix weird colon output.Mike McQuaid
Closes Homebrew/homebrew#24145.
2013-12-12audit: remove deprecated Python features.Mike McQuaid
These will be removed soon so don't check for them.
2013-12-12example-formula: deprecate some Python features.Mike McQuaid
These will be removed soon so don't recommend them.
2013-12-12Put positive case first, drop redundant is_a? checkJack Nagel
2013-12-12Add another fails_with testJack Nagel
2013-12-12Report correct file/line in backtraces for attr_rw methodsJack Nagel
2013-12-12brew-pull: remove empty if block.Mike McQuaid
2013-12-12brew-pull: add --bottle to pull from BrewTestBot.Mike McQuaid
2013-12-12monkey around for emacs' code highlighterAdam Vandenberg
The abv method has a construct that causes emacs to not highlight the rest of pathname.rb, so move abv lower in the file. Sorry.
2013-12-12+x wrapper scripts, so they work during post-installAdam Vandenberg
2013-12-11Simplify prefix testJack Nagel
2013-12-11brew-bundle: update usage info and move to --help functionLarry Shaffer
Follow-up to 6697ff6c9d0d4301adfbb7c76628808a63f1324b Closes Homebrew/homebrew#25130. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-12-11Set bottle version rather than re-parse it from the URLJack Nagel
2013-12-10brew-test-bot: fix rsync for bottles with a revision numberJack Nagel
2013-12-10bottle: determine revision more reliablyJack Nagel
Closes Homebrew/homebrew#25100.
2013-12-10brew-test-bot: remember to pull the PR.Mike McQuaid
2013-12-10brew-test-bot: only merge bottles if copy succeeds.Mike McQuaid
2013-12-10brew-test-bot: fix testing job tag numbering.Mike McQuaid
2013-12-10brew-test-bot: change upload job approach.Mike McQuaid
2013-12-10brew-test-bot: upload job fixes.Mike McQuaid
2013-12-10brew-test-bot: use global cache again.Mike McQuaid
2013-12-10brew-test-bot: move logic from Jenkins to Ruby.Mike McQuaid
2013-12-09versions: restore original constantJack Nagel
Before: f1 = Formula.factory('tree') f1.versions f2 = Formula.factory('tree') f1.class == f2.class # => false After: f1 = Formula.factory('tree') f1.versions f2 = Formula.factory('tree') f1.class == f2.class # => true
2013-12-09Implement hash equality for VersionJack Nagel
2013-12-09bottle: re-raise interrupt after cleanupJack Nagel
2013-12-09bottle: clean up after interruptsJack Nagel
2013-12-09versions: delete unused methodJack Nagel
2013-12-09Extract constants for checkums in testsJack Nagel
2013-12-09Silence more warningsJack Nagel
2013-12-09keg_only_reason and cc_failures are not DSL methodsJack Nagel
2013-12-09Use accessors to silence uninitalized ivar warningsJack Nagel
2013-12-09Expand requirements of default deps added by other requirementsJack Nagel
Dependencies built from requirements with a default formula may themselves have requirements, and these requirements may have default formulae, which may have more requirements, etc., so we have to keep expanding until this isn't the case. Fixes Homebrew/homebrew#25025. Fixes Homebrew/homebrew#25037.
2013-12-09Ensure option names are consistent for default formula requirementsJack Nagel
2013-12-09Compute recursive deps for default_formula depsJack Nagel
2013-12-09Rename filter_deps to expand_dependenciesJack Nagel
2013-12-09Move dependency expansion logic up one levelJack Nagel
2013-12-09Use separate collection for requirement depsJack Nagel
2013-12-09Pass deps collection to be expanded as a parameterJack Nagel
2013-12-09Silence some Ruby 2.1 warningsJack Nagel
2013-12-09brew-bundle: exit on command failureLarry Shaffer
Closes Homebrew/homebrew#25053. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-12-08versions: fix bottle filename usageJack Nagel
2013-12-08bottles: fix options hashesJack Nagel
Defaults can't be specified in the parameter list, as they will be overwritten by whatever is passed in. Instead the defaults must be merged with the argument in the method body.
2013-12-08bottle: fix typo'd option nameJack Nagel
2013-12-08bottle: don't repeat output for hardlinked filesJack Nagel
2013-12-08formula: don't print verify message, use resource.Mike McQuaid
See discussion: https://github.com/mxcl/homebrew/commit/81d420492c4be9278fcf26d5bef21625d0abf32a#commitcomment-4804596
2013-12-08formula, resource: output when verifying checksum.Mike McQuaid
References Homebrew/homebrew#24566.
2013-12-08add "bundle" command to zsh completionPatrick Stadler
Closes Homebrew/homebrew#25055. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-12-07Fix typo in example formulaBenoit Daloze
Closes Homebrew/homebrew#25028. Signed-off-by: Adam Vandenberg <flangy@gmail.com>