aboutsummaryrefslogtreecommitdiffstats
path: root/Library
AgeCommit message (Collapse)Author
2013-07-04Formulary: fix incorrect bottle variable usage.Mike McQuaid
2013-07-04brew-test-bot: always force uninstall.Mike McQuaid
Also filter the force flag from pretty output. Closes Homebrew/homebrew#20988.
2013-07-03Don't always show an error at the end of brew versionsAdam Vandenberg
2013-07-03audit default template commentsAdam Vandenberg
2013-07-02Hardware: Query sysctl for instructon setsMisty De Meo
This may be more accurate than guessing.
2013-07-02Remove more nesting in python_helperAdam Vandenberg
2013-07-02Reduce nesting and remove extra whitespace in python_helperAdam Vandenberg
2013-07-02allow installation of formulae from the current folderAdam Vandenberg
Closes Homebrew/homebrew#19177.
2013-07-02Better handling of Gnome desktop filesAdam Vandenberg
Gnome desktop support has a lot of folders in share that should be created directly in share, rather than shared. Add these folders to keg, and don't link any icon cache files into share. Closes Homebrew/homebrew#20340.
2013-07-01versions: pass string to factoryAdam Vandenberg
Closes Homebrew/homebrew#20951.
2013-07-01Remove message from default_formula'd requirementsMike McQuaid
2013-07-01Better behavior for failed connections in `brew search`Jack Nagel
Fixes Homebrew/homebrew#20868.
2013-07-01CLT is just CLT now; not "for Xcode".Mike McQuaid
References Homebrew/homebrew#17383.
2013-07-01Add Haswell to CPU testsMisty De Meo
These tests need a lot of work...
2013-07-01Hardware::CPU (Mac): add HaswellMisty De Meo
See Homebrew/homebrew#20935.
2013-06-30Fix appending .rb to local formulae namesAdam Vandenberg
Closes Homebrew/homebrew#20926.
2013-06-30Fixed several broken sourceforge.net download locationsVictor Martinez
Closes Homebrew/homebrew#20645. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-30audit sourceforge URLs even harderAdam Vandenberg
2013-06-30install plist before linkingAdam Vandenberg
If linking fails, won't try to re-install the plist. Closes Homebrew/homebrew#20843.
2013-06-30Catch another name errorAdam Vandenberg
Closes Homebrew/homebrew#20920.
2013-06-29Do this in a saner wayJack Nagel
2013-06-29doctor: don't pass pathnames to Formula.factoryJack Nagel
Fixes Homebrew/homebrew#20908.
2013-06-29Add 'unload'Adam Vandenberg
2013-06-29Formulary.factory always expects a stringAdam Vandenberg
2013-06-29Use Formula LoadersAdam Vandenberg
2013-06-29Move Formula.factory into new Formulary moduleAdam Vandenberg
2013-06-29Don't attempt to audit md5 checksums, but complain if they are usedJack Nagel
2013-06-29os/linux/hardware: `uname -m` may be /i[3-6]86/Shaun Jackman
Closes homebrew/linuxbrew#16 Closes Homebrew/homebrew#20903. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-06-29Add TODO to canonical_nameAdam Vandenberg
2013-06-29Pass strings to factoryAdam Vandenberg
2013-06-29brew-cleanup-installed: add new external command.Mike McQuaid
brew-cleanup-installed: uninstall all non-whitelisted Homebrew formulae. Useful for maintainers/testers who regularly install lots of formulae they don't actually use. Populate ~/.brew-cleanup-installed with the formulae you want to keep installed. All others will be uninstalled when brew-cleanup-installed is run.
2013-06-29brew-test-bot: change default email subject.Mike McQuaid
2013-06-28Reject versions that aren't stringsJack Nagel
2013-06-28Detect versions in tag specsJack Nagel
Closes Homebrew/homebrew#18300. Closes Homebrew/homebrew#20891.
2013-06-28Simplify custom version scheme handlingJack Nagel
2013-06-29brew-test-bot: improve JUnit output for Jenkins.Mike McQuaid
2013-06-29brew-test-bot: move command shortening to method.Mike McQuaid
2013-06-29brew-test-bot: fix logs in spaced directories.Mike McQuaid
2013-06-28Make non-exes in bin fatal to brew-botAdam Vandenberg
Closes Homebrew/homebrew#10817.
2013-06-27brew --env: Add missing CPATH environment variablePaul Fitzpatrick
Closes Homebrew/homebrew#20813. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-27Add an exception for imagemagick in build-time dep auditJack Nagel
2013-06-27Clarify ENV.gcc, ENV.llvm c++ compiler namesMisty De Meo
2013-06-27superenv cc: specify llvm-g++-4.2Misty De Meo
We previously tried to call llvm-g++ under the name `g++`, but this is now a link to clang on Xcode 5+. Fixes Homebrew/homebrew#20691.
2013-06-27Fix :gzip_only extractionMisty De Meo
gunzip can only extract files in-place, so just shelling out to gunzip was actually leaving the uncompressed file in Homebrew's cache, not in the temporary directory. (It also destroyed the original compressed file.)
2013-06-27bottles: remove legacy tab handling.Mike McQuaid
References Homebrew/homebrew#20716.
2013-06-27Use old #eql? for python reqs, for nowJack Nagel
2013-06-27Fix some #eql? correctness issuesJack Nagel
The implementation of #eql? and #hash should ensure that if a.eql?(b), then a.hash == b.hash, but #eql? itself should not *depend* on #hash. For example, given class Thingy def eql? instance_of?(other.class) && hash == other.hash end def hash [name, *tags].hash end end if #hash produces a collision for different values of [name, *tags], two Thingy objects will appear to be eql?, even though this is not the case. Instead, #eql? should depend on the equality of name and tags directly.
2013-06-26Remove unused guardAdam Vandenberg
Closes Homebrew/homebrew#20716.
2013-06-26Add syntax sugar for MPIDependencyJack Nagel
Closes Homebrew/homebrew#20797.
2013-06-26Be explicit about passing formulae names or instances to TabAdam Vandenberg