aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
AgeCommit message (Collapse)Author
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 #24566.
2013-12-06Help autoconf find m4 on Xcode-only systemsJack Nagel
Closes #24904.
2013-12-05SoftwareSpec: compact array that may contain nilMisty De Meo
2013-12-05bottle_filename: remove unused revision defaultMisty De Meo
2013-12-05Bottles: fix bottle_filename revisionMisty De Meo
Fixes #24981.
2013-12-05fix typo in this noticeAdam Vandenberg
2013-12-05Fix typoJack Nagel
2013-12-05Only coerce to Option when neededJack Nagel
Fixes #24833.
2013-12-05Move jsl to homebrew-binaryAdam Vandenberg
Closes #24826.
2013-12-05Use BottleCollector in Bottle SoftwareSpecMisty De Meo
2013-12-05Add BottleCollectorMisty De Meo
The BottleCollector collects bottle tags and sha1s, and allows tags to be fetched using more advanced logic than just fetching identical tags. Closes #23434.
2013-12-05bottle: always perform a full relocation checkJack Nagel
Even if the prefix check fails, it is useful to see the results from the cellar check.
2013-12-05bottle: String is not Enumerable in 1.9+Jack Nagel
2013-12-05bottle: fix reporting matches with spaces in themJack Nagel
2013-12-05bottle: fix false-positives from static libs when checking relocatabilityJack Nagel
2013-12-05bottle: only split on newlinesJack Nagel
2013-12-05String isn't Enumerable in 1.9+Jack Nagel
2013-12-05Run post_install after linking and relocationJack Nagel
Closes #24962.
2013-12-04Relocate libtool (.la) files as well as pkgconfig (.pc)Elliot Saba
Ignore quotes, just do a global substitution on cellar and prefix. Closes #24894. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-12-04Run relocation machinery on local bottlesJack Nagel
Since we now use placeholders for the prefix and cellar, we need to run the relocation machinery on all bottles.
2013-12-04relocate_install_names: only one substitution is neededJack Nagel
2013-12-04relocate_install_names: use a single ensure_writable blockJack Nagel
2013-12-04relocate_install_names: yielded names are already stringsJack Nagel
2013-12-04Let fix_install_names fix up placeholders tooJack Nagel
2013-12-04Teach installer about prefix and cellar placeholdersJack Nagel
2013-12-04Remove special handling for relocatable pkgconfig filesJack Nagel
2013-12-04Do relocation check while preparing bottleJack Nagel
2013-12-04Insert placeholders for prefix and cellar in relocatable bottlesJack Nagel
2013-12-04relocate_install_names: rewrite cellar names before prefix namesJack Nagel
The cellar may overlap with the prefix, so if we replace the prefix first, we will end up with paths like "@@HOMEBREW_PREFIX@@/Cellar" instead of "@@HOMEBREW_CELLAR@@", which will break on installations where the cellar and prefix are disjoint.
2013-12-04fix_install_names: extract change_dylib_idJack Nagel
2013-12-04fix_install_names: extract change_install_nameJack Nagel
2013-12-04loosen FileUtils auditAdam Vandenberg
2013-12-04Homebrew CVS is required for Xcode 5+Jack Nagel
2013-12-03Adjust fails_with syntax for non-Apple compilersMisty De Meo
The old version worked like this: fails_with :gcc => '4.8.1' That wasn't really flexible enough, and made it harder to distinguish different releases in the same GCC series. Since no one was really using it yet, this adjusts the syntax to be more similar to the Apple compilers: fails_with :gcc => '4.8' do release '4.8.1' end Like with Apple compilers, omitting `release` blacklists the entire series. This also unifies the `build` and `version` attributes and accessors, and exposes them under both names.
2013-12-03Adjust tests for ac1fd380759ebe9aa3fe42465cd5d38b209c32b5Jack Nagel
2013-12-03Make CompilerSelectionError an InstallationErrorJack Nagel
Fixes #19962.
2013-12-03SubversionDownloadStrategy: handle changed repository URLJack Nagel
Fixes #22159.
2013-12-03SubversionDownloadStrategy: no need to escape 'svn'Jack Nagel
2013-12-03download_strategy: use clear_cache where appropriateJack Nagel
2013-12-02Move jscoverage to the boneyardJack Nagel
2013-12-02Fix tap migrationsJack Nagel
When a `brew update` pulls down additions to tap_migrations.rb and the removed formulae in the same update, the migrations will never run, because tap_migrations.rb is loaded before the update takes place. Fix this by loading it after the update.
2013-12-02Extract compute_and_install_dependenciesJack Nagel
2013-12-02Re-check requirements if a bottle installation failsJack Nagel
2013-12-02Don't mutate deps collection when expanding requirementsJack Nagel
Fixes Homebrew/homebrew-science#213.
2013-12-02Always clear unsatisfied_deps after installationJack Nagel
2013-12-02unsatisfied_deps cannot be nilJack Nagel
2013-12-02Rename effective_deps to unsatisfied_depsJack Nagel
2013-12-02Emit deprecation warning for --use-{gcc,llvm,clang}Jack Nagel
Closes #24864.