aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
AgeCommit message (Collapse)Author
2014-07-16Add key? to BottleCollectorJack Nagel
2014-07-16Remove dead codeJack Nagel
Formula objects are always constructed with an explicit name, so we no longer need to special case an empty name or the name "__UNKNOWN__".
2014-07-16Rename fetch_bottle_for to fetch_checksum_forJack Nagel
2014-07-15Implement []= on BottleCollectorJack Nagel
2014-07-15No need to set the URL for dependency testJack Nagel
2014-07-15Ensure that all required keys are passed to bottle_filenameJack Nagel
2014-07-15Remove default tag value from bottle_filenameJack Nagel
We always call this method with an explicit tag.
2014-07-15Eagerly set the download strategyJack Nagel
2014-07-13Move pjsip to the boneyard.Adam Vandenberg
Will accept an updated pull request to update this to the current version. Closes Homebrew/homebrew#27235.
2014-07-13Remove default value from bottle_url options parameterJack Nagel
To construct a URL, we need options to pass to bottle_filename, so this method should error out if none are given.
2014-07-13Remove default value from bottle_suffix parameterJack Nagel
We always call this method with an argument, so we can simplify it.
2014-07-13Inline method so we don't merge and unpack options twiceJack Nagel
2014-07-13Inline method that just wraps a constantJack Nagel
2014-07-13nudge formattingAdam Vandenberg
Needed for Emacs' ruby highlighting to work past this point in the file.
2014-07-13Use accessor method in testJack Nagel
2014-07-13Use a hash to cache compiler version lookupsJack Nagel
2014-07-13No need to cache lookup that is only done onceJack Nagel
2014-07-12Simplify early return conditionJack Nagel
Improvements to formula/bottle integration means we can be less defensive here.
2014-07-12Compare cellar and prefix against constantsJack Nagel
2014-07-12Use pkg_version accessorJack Nagel
2014-07-12Fix typoJack Nagel
2014-07-12Handle conflicts where links point at symlinksJack Nagel
Fixes Homebrew/homebrew#30664.
2014-07-12Always link symlinks directlyJack Nagel
2014-07-12Linuxbrew: Move ISSUES_URL to os from globalShaun Jackman
Closes Homebrew/linuxbrew#103 Closes Homebrew/homebrew#30830. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-07-11Add test for InstallRenamed moduleJack Nagel
2014-07-11Try to workaround gem packaging shenanigansJack Nagel
2014-07-11exceptions: fix typoMatt Hauck
Closes Homebrew/homebrew#30821. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-07-11Read if no block is passed to Utils.popen_readJack Nagel
2014-07-11Use Utils.popen_read in XQuartz version codepathJack Nagel
2014-07-11audit: warn when using old-style patchesJack Nagel
2014-07-10Raise Errno::ENOENT instead of RuntimeError from Pathname#installJack Nagel
2014-07-10Make comment in Pathname#install more accurateJack Nagel
2014-07-10Fix method signatureJack Nagel
2014-07-10Legacy patches are never StringIOsJack Nagel
2014-07-09Move TeXmacs to boneyard.Adam Vandenberg
Does not compile with modern C++ compilers. Closes Homebrew/homebrew#27386.
2014-07-09formula_installer: bottle against Homebrew Python.Mike McQuaid
2014-07-09Fix up phrasing of case-sensitive volume warningJack Nagel
2014-07-09Clean up /bin/df regexpJack Nagel
- remove unnecessary captures - '%' is not a metacharacter so it doesn't need to be escaped - match using '+' instead of '*'
2014-07-09Fix getting filesystem mountsJack Nagel
2014-07-07Remove proc handling from BuildEnvironmentJack Nagel
2014-07-07Eliminate some indirection in evaluating requirement env blocksJack Nagel
2014-07-07Don't set @env on instancesJack Nagel
2014-07-07Simplify BuildEnvironmentDSL test setupJack Nagel
2014-07-07Keep DSL related code in one placeJack Nagel
2014-07-07Merge should return selfJack Nagel
2014-07-07Only call proc if it is setJack Nagel
Fixes Homebrew/homebrew#30723. Fixes Homebrew/homebrew#30724. Fixes Homebrew/homebrew#30727.
2014-07-07Dependency initializer takes an arrayJack Nagel
2014-07-07Define 1.8 marshal hooks in terms of 1.9+ marshal hooksJack Nagel
2014-07-07Remove knowledge of serialization details by marshaling twiceJack Nagel
2014-07-07Fix BuildEnvironment initializerJack Nagel