| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-04-17 | Move can_cleanup? off of the formula instance | Jack Nagel | |
| 2015-04-17 | Ask the formula if it can be cleaned up once | Jack Nagel | |
| 2015-04-17 | Simplify cleanup eligibility check | Jack Nagel | |
| 2015-04-16 | cleanup: add --prune to delete old cache files. | Mike McQuaid | |
| 2015-04-07 | Remove duplication from cleanup methods | Jack Nagel | |
| 2015-04-07 | cleanup: display file-sizes | Dominyk Tiller | |
| Closes #38404 | |||
| 2015-04-01 | Use pkg_version when comparing against keg versions | Jack Nagel | |
| 2015-03-07 | cleanup: optimize perfermance | Xu Cheng | |
| Only remove .DS_Store files from whitelisted directories. Closes #37409. Signed-off-by: Xu Cheng <xucheng@me.com> | |||
| 2014-12-27 | Use version attribute directly in cache comparisons | Jack Nagel | |
| The bug that prompted the two relevant commits has since been addressed. Squashed commit of the following: commit ecca17ede8324efd1175a42300ace8e1e2df30fa Author: Jack Nagel <jacknagel@gmail.com> Date: Sat Dec 27 16:16:12 2014 -0500 Revert "Don't use pkg_version when cleaning the cache" This reverts commit 4d511b5169d78a5d44bbf6c36c17f0c28014a614. commit e8935de08f6440ae1874ce523f93b19da6b68df3 Author: Jack Nagel <jacknagel@gmail.com> Date: Sat Dec 27 16:16:12 2014 -0500 Revert "Fix cleanup for head-only formulae" This reverts commit 510267ffd314c296c0b0969dd27d130a249f16e2. | |||
| 2014-12-16 | Use quiet_system to avoid the shell | Jack Nagel | |
| 2014-10-19 | cleanup: only clean cache if it exists. | Mike McQuaid | |
| Closes #33297. | |||
| 2014-06-24 | Use Keg#uninstall to clean up kegs | Jack Nagel | |
| 2014-06-22 | Move deprecated Formula class methods to compat | Jack Nagel | |
| These have all been moved to Formulary. | |||
| 2014-06-19 | Only "extend self" once on the Homebrew module | Jack Nagel | |
| 2014-05-17 | only clean logs if logs exist | Adam Vandenberg | |
| Closes #29355. | |||
| 2014-05-14 | cleanup: prune old build logs | Jack Nagel | |
| Closes #29231. | |||
| 2014-03-22 | Don't send, just call the method directly | Jack Nagel | |
| 2014-03-06 | Fix cleanup for head-only formulae | Jack Nagel | |
| Fixes #27265. | |||
| 2014-03-05 | Don't use pkg_version when cleaning the cache | Jack Nagel | |
| Fixes #27245. | |||
| 2014-03-05 | Teach commands to work with revisions | Jack Nagel | |
| 2013-06-21 | Don't clean up lockfiles if the directory doesn't exist | Jack Nagel | |
| Fixes #20673. | |||
| 2013-06-21 | Clean up lockfiles | Jack Nagel | |
| 2013-06-06 | cleanup: use String#[] instead of "captures.first rescue nil" | Jack Nagel | |
| 2013-05-18 | Stop running "prune" as part of "cleanup" | Jack Nagel | |
| Rationale: "prune" is slow, does not need to be run as often as "cleanup", and is potentially destructive to things like empty directories that Homebrew did not create. Thus we should let users run `brew prune` only when they wish to, while still being able to use `brew cleanup`. Closes #19863. | |||
| 2013-05-15 | cleanup: enable prune during dry-run mode | Jack Nagel | |
| Closes #19826. | |||
| 2013-05-15 | cleanup: cleanup_all => cleanup_cellar | Jack Nagel | |
| 2013-05-15 | cleanup: refactor cleanup_cache | Jack Nagel | |
| 2013-05-15 | cleanup: rename variable | Jack Nagel | |
| 2013-05-15 | cleanup: refactor cleanup_formula | Jack Nagel | |
| 2013-05-15 | cleanup: only map dirs to kegs once | Jack Nagel | |
| 2013-05-15 | cleanup: use Pathname#rmtree instead of FileUtils | Jack Nagel | |
| 2013-05-15 | cleanup: use subdirs, avoid .directory? checks | Jack Nagel | |
| 2013-05-15 | cleanup: remove redundant condition | Jack Nagel | |
| If f.installed? is true, f.rack.directory? will always be true as well. | |||
| 2013-05-15 | cleanup: rename method for consistency | Jack Nagel | |
| 2013-05-15 | cleanup: use early return rather than method-spanning conditional | Jack Nagel | |
| 2013-05-15 | cleanup: factor out unqualified cleanup code | Jack Nagel | |
| 2013-05-15 | Methods that end in _formula should only accept a formula | Jack Nagel | |
| 2013-03-02 | cleanup: don't remove old incomplete files twice. | Mike McQuaid | |
| 2013-02-18 | Remove unused variables | Jack Nagel | |
| 2013-02-02 | Make `CurlDownloadStrategy` resume aborted downloads | Simon 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 #13953. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2013-01-26 | brew-cleanup: don't whine about permission denied. | Mike McQuaid | |
| Closes #14359. | |||
| 2013-01-08 | Don't remove linked formulas when doing a 'cleanup' | Mike Lapinsky | |
| Closes #16947. Signed-off-by: Adam Vandenberg <flangy@gmail.com> | |||
| 2012-12-19 | cleanup: fix 1.8.6 compatibilty issue | Jack Nagel | |
| Fixes #16655. | |||
| 2012-12-16 | Check if Cellar and Cache exist before cleaning. | Mike McQuaid | |
| 2012-12-04 | brew-cleanup: check whether keg is a directory. | Xiyue Deng | |
| * Avoid problem when encountering `.DS_Store' in Cellar. Closes #16356. Closes #16388. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2012-11-30 | brew cleanup: don't remove higher version kegs. | Xiyue Deng | |
| * Use version compare to only remove kegs with lower version than the current one, not higher version which might be from someone's branch. * Do the same for cache cleanup. - Be conservative so that if a name detected from cache file is not the same as its formula then don't clean it. Closes #15914. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com> | |||
| 2012-09-22 | brew cleanup -n: less scary | Max Howell | |
| 2012-09-20 | cleanup: look for "HEAD", not "sha" in receipt | Jack Nagel | |
| Signed-off-by: Jack Nagel <jacknagel@gmail.com> | |||
| 2012-09-11 | cleanup: skip rm_DS_Store during a dry run | Jack Nagel | |
| Signed-off-by: Jack Nagel <jacknagel@gmail.com> | |||
| 2012-09-11 | cleanup: allow --force to remove keg-only brews again | Jack Nagel | |
| Fixes #14840. Signed-off-by: Jack Nagel <jacknagel@gmail.com> | |||
