diff options
| author | Jack Nagel | 2013-05-21 23:45:33 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-05-21 23:45:34 -0500 |
| commit | d68524bfd774b6b2fd91f49d914bf18e3ae7c22f (patch) | |
| tree | f08009481d09c5dba9224a265049c3c816d1f5ce /Library/Formula/vim.rb | |
| parent | 6d9d9e703fab5953e55340956c5ca89b7cf8177a (diff) | |
| download | homebrew-d68524bfd774b6b2fd91f49d914bf18e3ae7c22f.tar.bz2 | |
vim: roll back and track debian-unstable
Vim sees patchlevel release every few days (and recently, several times
per day). This is too often to be updating the formula and prompting
upgrades for users who don't care to update that frequently. It is also
a vector for bugs when new development is happening upstream (e.g. the
recent regexp engine switch).
So this package now tracks debian-unstable. People who want to live on
the bleeding edge can still use --HEAD like any other formula.
Diffstat (limited to 'Library/Formula/vim.rb')
| -rw-r--r-- | Library/Formula/vim.rb | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/Library/Formula/vim.rb b/Library/Formula/vim.rb index 495ed3c8c..d3f5ff2bf 100644 --- a/Library/Formula/vim.rb +++ b/Library/Formula/vim.rb @@ -2,16 +2,14 @@ require 'formula' class Vim < Formula homepage 'http://www.vim.org/' - # Get stable versions from hg repo instead of downloading an increasing - # number of separate patches. - url 'https://vim.googlecode.com/hg/', :tag => 'v7-3-976' - version '7.3.976' - + # This package tracks debian-unstable: http://packages.debian.org/unstable/vim + url 'http://ftp.de.debian.org/debian/pool/main/v/vim/vim_7.3.923.orig.tar.gz' + sha1 'f308d219dd9c6b56e84109ace4e7487a101088f5' head 'https://vim.googlecode.com/hg/' env :std # To find interpreters - depends_on :hg => :build + depends_on :hg => :build if build.head? LANGUAGES = %w(lua mzscheme perl python python3 tcl ruby) DEFAULT_LANGUAGES = %w(ruby python) |
