| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-06-12 | Extract query construction | Jack Nagel | |
| 2013-06-12 | Use inspect instead of escaping quotes | Jack Nagel | |
| 2013-06-12 | Move require out of method | Jack Nagel | |
| 2013-06-12 | install: remove overcautious array manipulation | Jack Nagel | |
| 2013-06-11 | Add doctor check for OS X > 10.8 | Jack Nagel | |
| 2013-06-11 | doctor: add check for osx-gcc-installer | Misty De Meo | |
| This might not detect all cases, but should detect the two most common ones. | |||
| 2013-06-09 | info: remove unreachable code | Jack Nagel | |
| 2013-06-09 | Separate formula conflicts from requirements | Jack Nagel | |
| Closes #20357. | |||
| 2013-06-09 | deps: move recursive_deps_tree into Homebrew module | Jack Nagel | |
| 2013-06-09 | Remove adamv-alt references. | Adam Vandenberg | |
| Closes #20364. | |||
| 2013-06-08 | Consolidate sudo checks. | Adam Vandenberg | |
| Closes #20318. | |||
| 2013-06-08 | Make Test::Unit assertions available in formula tests | Jack Nagel | |
| Closes #18753. Closes #20358. | |||
| 2013-06-08 | brew-bottle: merge arg for bottle metadata files. | Mike McQuaid | |
| Closes #20266. | |||
| 2013-06-08 | brew-bottle: split output and use a bottle object. | Mike McQuaid | |
| 2013-06-08 | brew-test: add five minute timeout. | Mike McQuaid | |
| 2013-06-07 | Improved audit of python stuff | Samuel John | |
| 2013-06-06 | Decouple bottle tags from MacOS.cat | Jack Nagel | |
| 2013-06-06 | cleanup: use String#[] instead of "captures.first rescue nil" | Jack Nagel | |
| 2013-06-04 | Remove postgresql and mysql audit noise | Jack Nagel | |
| Closes #20159. | |||
| 2013-06-03 | Python 2.x and 3.x support | Samuel John | |
| New `depends_on :python` Dependency. New `depends_on :python3` Dependency. To avoid having multiple formulae with endings -py2 and -py3, we will handle support for different pythons (2.x vs. 3.x) in the same formula. Further brewed vs. external python will be transparently supported. The formula also gets a new object `python`, which is false if no Python is available or the user has disabled it. Otherwise it is defined and provides several support methods: python.site_packages # the site-packages in the formula's Cellar python.global_site_packages python.binary # the full path to the python binary python.prefix python.version python.version.major python.version.minor python.xy # => e.g. "python2.7" python.incdir # includes of python python.libdir # the python dylib library python.pkg_config_path # used internally by brew python.from_osx? python.framework? python.universal? python.pypy? python.standard_caveats # Text to set PYTHONPATH for python.from_osx? python.if3then3 # => "" for 2.x and to "3" for 3.x. Further, to avoid code duplication, `python` takes an optional block that is run twice if the formula defines depends_on :python AND :python3. python do system python, 'setup.py', "--prefix=#{prefix}" end Read more in the Homebrew wiki. | |||
| 2013-05-27 | Audit url/devel/head for redundant :using | Adam Vandenberg | |
| 2013-05-27 | Add `brew search --debian <f>` | Adam Vandenberg | |
| 2013-05-27 | audit: drop redundant 'each' after 'grep' | Jack Nagel | |
| 2013-05-27 | doctor: check git SSL settings on <= 10.5 | Jack Nagel | |
| 2013-05-26 | doctor: combine git origin checks | Jack Nagel | |
| 2013-05-26 | doctor: combine git existence and version checks | Jack Nagel | |
| 2013-05-24 | doctor: style nits | Jack Nagel | |
| 2013-05-24 | outdated: yield version list rather than recreate it | Jack Nagel | |
| 2013-05-24 | upgrade: fix expansion of options for top-level formula objects | Jack Nagel | |
| Fixes #20045. | |||
| 2013-05-23 | Directory, not folder | Jack Nagel | |
| 2013-05-23 | doctor: reorganize check_for_macgpg2 | Jack Nagel | |
| 2013-05-23 | doctor: simplify trailing slash checks | Jack Nagel | |
| 2013-05-23 | doctor: extract helper from stray file checks | Jack Nagel | |
| 2013-05-23 | doctor: fix check_for_broken_symlinks | Jack Nagel | |
| Fixes #20000. | |||
| 2013-05-23 | Allow brew log on deleted formulae. | Adam Vandenberg | |
| Closes #19995. | |||
| 2013-05-22 | doctor: remove stale OS version check | Jack Nagel | |
| Closes #19959. | |||
| 2013-05-22 | Refactor Xcode/CLT version checks | Jack Nagel | |
| 2013-05-22 | Remove unnecessary rescue-all exception handling | Daniel Lee Harple | |
| Signed-off-by: Jack Nagel <jacknagel@gmail.com> | |||
| 2013-05-22 | Check GitHub API rate limit instead of silently failing | Daniel Lee Harple | |
| Signed-off-by: Jack Nagel <jacknagel@gmail.com> | |||
| 2013-05-22 | Pass a User-Agent when fetching data from the GitHub API | Daniel Lee Harple | |
| See <http://developer.github.com/v3/#user-agent-required>. Signed-off-by: Jack Nagel <jacknagel@gmail.com> | |||
| 2013-05-20 | link: extract keg-only check into a helper method | Jack Nagel | |
| 2013-05-18 | upgrade: fix typo | Jack Nagel | |
| 2013-05-18 | upgrade: use a method rather than a boolean flag | Jack Nagel | |
| 2013-05-18 | upgrade: tighten installed precondition | 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-16 | Formula#fetch: always return the cached path | Jack Nagel | |
| This allows us to remove some type checks that were protecting against potential nils. | |||
| 2013-05-16 | Adjust semantics of Formula#fetch | Jack Nagel | |
| It doesn't really make logical sense that this method returns both the fetched path (or sometimes nil!) and the downloader, so just return the path (again, or nil!) and callers that want the downloader can ask for it separately. | |||
| 2013-05-16 | fetch: rename 'tarball' to 'download' | Jack Nagel | |
| 2013-05-16 | fetch: use concat rather than << and flatten | Jack Nagel | |
| 2013-05-15 | Simplify uninstall --force | Jack Nagel | |
