aboutsummaryrefslogtreecommitdiffstats
path: root/Library
AgeCommit message (Collapse)Author
2013-02-02Make `CurlDownloadStrategy` resume aborted downloadsSimon Sigurdhsson
* `CurlDownloadStrategy#_fetch` (and the same methods in its subclasses) now fetches the file to a temporary path, and `CurlDownloadStrategy#fetch` moves it to the correct location. * `Homebrew#cleanup` cleans the temporary files `CurlDownloadStrategy` creates if they're left in the cache. Closes Homebrew/homebrew#13953. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-02-02FormulaInstaller#check_requirements: fix inverted conditionalJack Nagel
2013-02-02Move ruby methods to FileUtils extensionJack Nagel
2013-02-02Fix args to ruby methodJack Nagel
2013-02-02audit: inspect dep name, not dep objectJack Nagel
2013-02-02Ensure :cairo and :pixman resolve to standard formula depsJack Nagel
We do not use X11 to satisfy these deps for consistency reasons, but we should continue to support the symbols for compatibility.
2013-02-01Mark symbol-style autotools deps as build deps by defaultJack Nagel
2013-02-01Refactor fetchJack Nagel
Remove direct references to checksum types, access them through the Checksum::TYPES constant instead.
2013-02-01Move MD5 deprecation warning into Pathname#md5Jack Nagel
This way it will print when the verification takes place, making it a bit more obvious which formula it refers to.
2013-02-01Update `tap --repair` function to ignore non-directory files in Library/Taps/Elliot Saba
Closes Homebrew/homebrew#17518. Closes Homebrew/homebrew#17511. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-02-01audit: wrap patches in ENV.with_build_environment blockJack Nagel
2013-02-01Don't call methods on xcrun_path if it's nilJack Nagel
2013-02-01Add md5 support to compatibility, with deprecation warningJack Nagel
2013-02-01Formula is not a formula.Adam Vandenberg
Closes Homebrew/homebrew#17492.
2013-01-31Don't let xcrun find superenv tools.Mike McQuaid
Causes an infinite loop when trying to find e.g. missing gcc. Closes Homebrew/homebrew#17426 References Homebrew/homebrew#17455
2013-01-31brew doctor: Check for CaSe SeNsItIvE fsSamuel John
Closes Homebrew/homebrew#16658. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-01-31build: accept X11 proxies as X11 depsJack Nagel
2013-01-31Update documentation for Dependency.expandJack Nagel
2013-01-31Proper recursive expansion of requirements with filteringJack Nagel
Expand requirements recursively while applying the same optional? and recommended? filters that dependencies are run through. Options generated by requirements are now checked against the correct list of requirements, eliminating the temporary "best guess" logic in the installer.
2013-01-31Create proxy classes for "partial" X11 dependenciesJack Nagel
When a formula's dependency tree contains more than one X11 dependency, they are de-duplicated by comparing the min_version attribute. However, this can result in broken dependency trees if one of the X11Dependency objects was actually specified as e.g. `:libpng`. In practice, this only matters when one or more of the dependencies has additional metadata that makes it distinct from the rest, i.e. an :optional or :recommended tag. To combat this, make these special, "partial" X11 dependencies instances of different classes so that they are not de-duped. It will still be necessary, at the time when requirements are expanded by the installer, to de-duplicate any remaining X11 dependencies after applying the optional/recommended filters in order to avoid duplicated modifications to the environment (as ENV.x11 is not idempotent). c.f. Homebrew/homebrew#17369.
2013-01-30Remove MD5 support.Mike McQuaid
Closes Homebrew/homebrew#17317.
2013-01-30brew-search: search homebrew/apache tap.Mike McQuaid
2013-01-30Make local bottle installation more robust.Mike McQuaid
Use versions to better get hold of the filename.
2013-01-30jpeg: support version format.Mike McQuaid
2013-01-30Add ruby/rake functions to use system framework version.Mike McQuaid
2013-01-30Add bash and zsh completion directory functions.Mike McQuaid
2013-01-30Add SourceForge bottle mirror selection.Mike McQuaid
Use ENV['HOMEBREW_SOURCEFORGE_MIRROR']. Closes Homebrew/homebrew#15642. Closes Homebrew/homebrew#17368.
2013-01-30Improve brew doctor autocrlf message.Mike McQuaid
Better version of ed357d. References Homebrew/homebrew#15711. References Homebrew/homebrew#17361. References Homebrew/homebrew#17437.
2013-01-30Pass tag to class name style requirement declarationsJack Nagel
2013-01-30brew-help: Add options to example usageCharlie Sharpsteen
Also, move the line containing `info`, `home` and `options` to the top of the list as users should be running these before installation. Ref. Homebrew/homebrew#13224.
2013-01-30Fix passing multiple switches as a single word to the buildJack Nagel
Fixes Homebrew/homebrew#17434.
2013-01-30doctor: core.autocrlf can be emptyJack Nagel
c.f. Homebrew/homebrew#17361.
2013-01-29FormulaInstaller: actually select unsatisfied requirementsJack Nagel
Fixes Homebrew/homebrew#17422.
2013-01-29Only check keg-only if we map to a formulaAdam Vandenberg
2013-01-29Require --force to link keg-only.Adam Vandenberg
Closes Homebrew/homebrew#13349.
2013-01-29Improve the explanation of the verbose flags.Mike McQuaid
Closes Homebrew/homebrew#17181.
2013-01-29Add pour_bottle? method to Formula.Mike McQuaid
Allows a formula to selectively disable bottle pouring. e.g. the default Boost bottle does not work with a brewed Python. Fixes Homebrew/homebrew#17142
2013-01-29Don't use underscores in (new) bottle filenames.Mike McQuaid
Closes Homebrew/homebrew#14270
2013-01-29Cleanup old bottle syntax.Mike McQuaid
2013-01-29Improve `brew doctor` autocrlf check.Mike McQuaid
Closes Homebrew/homebrew#15711.
2013-01-29Only print launchctl tmux warning conditionally.Mike McQuaid
2013-01-29Remove gmock.Adam Vandenberg
Gmock and GTest should not be installed system-wide. Closes Homebrew/homebrew#17358.
2013-01-29brew-linkapps creates symlinks againAdam Vandenberg
Revert "Prevent linkapps from creating duplicate aliases" Revert "linkapp: create Finder aliases" This reverts commit e1a68f1ffbac9dc8209cc9ac2c8f2e34d11867af. This reverts commit bf2e6023d1bac08739b4562e19e07db448f0aba3. Closes Homebrew/homebrew#15308.
2013-01-290.9.4: optional/recommended support0.9.4Adam Vandenberg
2013-01-29Add 'instal' to completionsAdam Vandenberg
2013-01-29Keg#lock: guard against nil in ensureJack Nagel
Fixes Homebrew/homebrew#17403.
2013-01-29Update Xcode.version for 4.6Jack Nagel
2013-01-29Don't print git origin check without git repoMisty De Meo
2013-01-29Update clang version regexp in CLT checkJack Nagel
2013-01-28remove vim from the blacklistJack Nagel