| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-09-12 | commands: better output | Xu Cheng | |
| 2015-09-12 | test-bot: run update-test | Xu Cheng | |
| Closes Homebrew/homebrew#43648. Signed-off-by: Xu Cheng <xucheng@me.com> | |||
| 2015-09-12 | test-bot: only run necessary test for tap | Xu Cheng | |
| 2015-09-12 | add dev-cmd folder | Xu Cheng | |
| 2015-09-12 | add update-test | Xu Cheng | |
| 2015-09-12 | bottle: allow updating :any to :any_skip_relocation when keep old | Xu Cheng | |
| Closes Homebrew/homebrew#43849. Signed-off-by: Xu Cheng <xucheng@me.com> | |||
| 2015-09-12 | bottle: only set prefix if un-relocatable | Xu Cheng | |
| Closes Homebrew/homebrew#43819. Signed-off-by: Xu Cheng <xucheng@me.com> | |||
| 2015-09-12 | bottle: auto detect any_skip_relocation | Xu Cheng | |
| 2015-09-12 | keg_relocate: split relocate_install_names and relocate_text_files | Xu Cheng | |
| For bottle with `:any_skip_relocation`, relocating text files is required. | |||
| 2015-09-11 | test-bot: check ARGV.include?("--skip-homebrew") once | Xu Cheng | |
| 2015-09-11 | test-bot: fix syntax error | Xu Cheng | |
| 2015-09-11 | test-bot: skip some unnecessary tests. | Mike McQuaid | |
| 2015-09-11 | test-bot: support uploading keep-old bottles. | Mike McQuaid | |
| 2015-09-11 | pull: allow pulling all testing jobs. | Mike McQuaid | |
| 2015-09-11 | bottle: improve --keep-old error message for merge as well | Xu Cheng | |
| 2015-09-11 | bottle: fix output for absolute symlinks | Xu Cheng | |
| Closes Homebrew/homebrew#43816. Signed-off-by: Xu Cheng <xucheng@me.com> | |||
| 2015-09-11 | keg_relocate: fix absolute symlink | Xu Cheng | |
| 2015-09-11 | bottle: improve --keep-old error message. | Mike McQuaid | |
| 2015-09-11 | update: fix when `HEAD` doesn't exist. | Mike McQuaid | |
| e.g. when it's a detached `HEAD` through checking out a commit rather than a branch. | |||
| 2015-09-11 | test-bot: add keep-old argument. | Mike McQuaid | |
| Will be useful for creating El Capitan bottles. | |||
| 2015-09-11 | bottle: allow to keep old bottle specification | Xu Cheng | |
| Closes Homebrew/homebrew#43766. Signed-off-by: Xu Cheng <xucheng@me.com> | |||
| 2015-09-11 | bottle: use if-else branch instead of exit | Xu Cheng | |
| 2015-09-10 | env block is not inherited | Tim D. Smith | |
| 2015-09-10 | Revert "python_requirement: fix ENV for python3" | Tim D. Smith | |
| This reverts commit 85271644b0083cbc0fd6fea71120d1ad859fbc2a. Alex noticed that setting PYTHONPATH causes weirdness if we depend_on something which may be optionally built --with-python3; PYTHONPATH unexpectedly contains python3 modules in the depending formula if the formula upon which it depends was built --with-python3 even though the depending formula may only use python2. Closes Homebrew/homebrew#43724. Closes Homebrew/homebrew#43744. | |||
| 2015-09-10 | config: fix ruby path for ruby 1.8 | Xu Cheng | |
| 2015-09-10 | descriptions: use each instead of map | Xu Cheng | |
| 2015-09-10 | desc: print descriptions directly by formulae instead of cache | Xu Cheng | |
| We allow passing formulae by URL, file path, etc whose descriptions won't be cached Closes Homebrew/homebrew#43726. Signed-off-by: Xu Cheng <xucheng@me.com> | |||
| 2015-09-10 | use json to cache descriptions | Xu Cheng | |
| We need to use `atomic_write` when saving the cache. And it seems that CSV module doesn't support dump, so let's use JSON instead. | |||
| 2015-09-10 | Descriptions.cache_formulae: secure formulae loading | Xu Cheng | |
| 2015-09-10 | Descriptions.cache_fresh?: return early | Xu Cheng | |
| 2015-09-10 | desc: better way to handle options | Xu Cheng | |
| We allow to use options like --verbose and --debug for all commands. And we should support switch format options, e.g. `brew desc -vs foo` | |||
| 2015-09-10 | config: read ruby/python interpreter directly | Xu Cheng | |
| Closes Homebrew/homebrew#43750. Signed-off-by: Xu Cheng <xucheng@me.com> | |||
| 2015-09-09 | style: update rubocop | Dominyk Tiller | |
| 2015-09-09 | config: show all installed JDK | Xu Cheng | |
| Closes Homebrew/homebrew#43730. Signed-off-by: Xu Cheng <xucheng@me.com> | |||
| 2015-09-09 | rubocop: allow consistent trailing commas. | Mike McQuaid | |
| Makes diffs nicer. Could maybe be changed to `comma` to be stricter. | |||
| 2015-09-09 | test-bot: don't output bottle output on success. | Mike McQuaid | |
| This can be extremely verbose and destroys the log. Instead look for this in the Jenkins build test results. | |||
| 2015-09-09 | FormulaInstaller: reset git_available? when installing git | Xu Cheng | |
| Closes Homebrew/homebrew#43693 Signed-off-by: Xu Cheng <xucheng@me.com> | |||
| 2015-09-09 | info: improve github_info | Xu Cheng | |
| * use Homebrew.git_origin * Handle the case git is unavailable or `.git` doesn't exist * Handle the case origin isn't github repo | |||
| 2015-09-09 | doctor: use Utils.git_available? instead of git? | Xu Cheng | |
| 2015-09-09 | doctor: use Homebrew.git_origin | Xu Cheng | |
| 2015-09-09 | Homebrew.git_*: check git available | Xu Cheng | |
| 2015-09-09 | config: use Homebrew.git_origin | Xu Cheng | |
| 2015-09-09 | git_available?: cache the result | Xu Cheng | |
| 2015-09-09 | utils: add Homebrew.git_origin | Xu Cheng | |
| 2015-09-08 | Use system tar for bottle TOC inspection | chdiza | |
| Closes Homebrew/homebrew#43717. Signed-off-by: Misty De Meo <mistydemeo@gmail.com> | |||
| 2015-09-08 | formula_support: add Pre El Capitan keg_only | Dominyk Tiller | |
| 2015-09-08 | Improve description searching and add a cache. | Dan Martinez | |
| Closes Homebrew/homebrew#42281. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2015-09-08 | style: update to rubocop 0.34.0. | Tomasz Pajor | |
| Closes Homebrew/homebrew#43650. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2015-09-08 | config: use quiet_system | Xu Cheng | |
| Closes Homebrew/homebrew#43691. Signed-off-by: Xu Cheng <xucheng@me.com> | |||
| 2015-09-08 | quiet_system: don't print cmd even when verbose mode | Xu Cheng | |
| It's kinda annoying that quiet_system wasn't really quiet. This commit fixes that. | |||
