aboutsummaryrefslogtreecommitdiffstats
path: root/Library
AgeCommit message (Collapse)Author
2013-09-26Simplify setup for local bottle installationJack Nagel
Closes Homebrew/homebrew#22833.
2013-09-25Move "Pouring" message to relevant download strategiesJack Nagel
2013-09-25Silence xcrun output in wrapperMisty De Meo
Our wrapper always runs the real xcrun at least once, to try to find the path of the tool being run, but this meant that we were generating a huge number of error messages on every cc invocaton. Mostly this was annoying but harmless, but notably it managed to break the compilation of go.
2013-09-24add S3DownloadStrategyRaymie Stata
downloads tarballs from public and private S3 buckets Closes Homebrew/homebrew#22779. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-09-24update: handle realpath exception.Mike McQuaid
2013-09-24update: untap/retap formulae before/after pull.Mike McQuaid
This should fix problems like Homebrew/homebrew#19799 where we pull formulae from taps into core. I want to get something similar merged ASAP so we can pull GCC into core (see Homebrew/homebrew#20678). Closes Homebrew/homebrew#19799.
2013-09-23Clean up SoftwareSpec and Resource initializersJack Nagel
2013-09-23Set owner of resources to SoftwareSpec objectJack Nagel
2013-09-23Set name of SoftwareSpec to owner nameJack Nagel
2013-09-23Initialize cached filenames lazilyJack Nagel
Closes Homebrew/homebrew#22751.
2013-09-23bottle: add option to force no bottle revision.Mike McQuaid
2013-09-23bottle: fix merging .rb files.Mike McQuaid
2013-09-23bottle: fix default Cellar output.Mike McQuaid
2013-09-22don't audit jp sourceforge URLsAdam Vandenberg
2013-09-22Group DSL methods that delegate to the stable specJack Nagel
2013-09-22bottle: allow writing/committing new bottles.Mike McQuaid
2013-09-22Move bottle.rb logic from test-bot to brew bottle.Mike McQuaid
2013-09-22bottle: only output relocatable message if >1MB.Mike McQuaid
2013-09-22bottle: move bottle output to ERB.Mike McQuaid
2013-09-22SoftwareSpec: add method for bottle checksums.Mike McQuaid
2013-09-22bottle: use versions to access previous bottles.Mike McQuaid
2013-09-22versions: use bottle_filename only if f.bottle.Mike McQuaid
2013-09-22versions: add bottle filenames method.Mike McQuaid
Closes Homebrew/homebrew#22727.
2013-09-22versions: add branch support in rev_list.Mike McQuaid
2013-09-22versions: split version_for_sha and use yield.Mike McQuaid
2013-09-21Allow explicitly requiring universal depsJack Nagel
Previously, instructing Homebrew that all dependencies should be built universal could be accomplished by redefining BuildOptions#universal? in the class body: def build.universal? true end However, the build object is no longer shared by all specs, so this is insufficient. Instead, a new DSL method, "require_universal_deps", can be used. This feature is almost exclusively for wine, which requires universal deps but does not itself have a universal option, since it is always built 32-bit.
2013-09-21Move dependencies to SoftwareSpecJack Nagel
2013-09-21Move options to SoftwareSpecJack Nagel
2013-09-21Give this condition a more revealing nameJack Nagel
2013-09-21bottle: fix --merge with multiple formulae.Mike McQuaid
2013-09-21bottle: improve outputted messages.Mike McQuaid
2013-09-20Add tests to ensure ENV.compiler is correctJack Nagel
2013-09-20At some point this started working againJack Nagel
2013-09-19ENV: Ensure @compiler is setMisty De Meo
If @compiler isn't set/checked by ENV.compiler and the ENV.clang/etc. methods, ENV.compiler may return unexpected results after fails_with picks a fallback compiler. See Homebrew/homebrew#22674.
2013-09-19Homebrew 0.9.50.9.5Adam Vandenberg
Update version due to recent compiler selection fixes.
2013-09-19More precise output for spec auditsJack Nagel
2013-09-19Audit spec resourcesJack Nagel
2013-09-19Extract ResourceAuditor from FormulaAuditorJack Nagel
2013-09-18Bottles: use options hash for install_bottle?Mike McQuaid
2013-09-18formula_installer: don't duplicate bottle warning.Mike McQuaid
Closes Homebrew/homebrew#22569.
2013-09-17Convert brew-aspell-dictionaries to Ruby and output resourcesJack Nagel
This makes the script much more readable, and also allows us to download the language packs into the cache where they can be used when installing aspell.
2013-09-17Allow partial installation of resourcesJack Nagel
2013-09-17create: use resource for checksum detectionJack Nagel
2013-09-17More useful error message for missing checksumsJack Nagel
2013-09-17Reorganize resource download methodsJack Nagel
2013-09-17Download strategies take a resource nowJack Nagel
2013-09-17Make spec-scoped resources override top-level resourcesJack Nagel
2013-09-17Make top-level resources apply to all specsJack Nagel
2013-09-17Track initialized specsJack Nagel
2013-09-17Move formula resources to SoftwareSpecJack Nagel