diff options
| author | Lee Packham | 2010-08-17 09:21:53 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2010-08-17 07:45:26 -0700 |
| commit | a0284cd775b4c0c995b4b8337877a763159a16a2 (patch) | |
| tree | 5fbd6643163c60fa3fdef245497a861003accf78 /Library/Formula | |
| parent | f46bdadaaa4f67350a012a8734ba87d824dd4e40 (diff) | |
| download | homebrew-a0284cd775b4c0c995b4b8337877a763159a16a2.tar.bz2 | |
Update to couchdb 1.0.1 and remove .ini file fix from brew
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/couchdb.rb | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/Library/Formula/couchdb.rb b/Library/Formula/couchdb.rb index 1fd31d1f2..094b21776 100644 --- a/Library/Formula/couchdb.rb +++ b/Library/Formula/couchdb.rb @@ -1,9 +1,9 @@ require 'formula' class Couchdb <Formula - url 'git://github.com/apache/couchdb.git', :tag => "origin/tags/1.0.0" + url 'git://github.com/apache/couchdb.git', :tag => "origin/tags/1.0.1" homepage "http://couchdb.apache.org/" - version "1.0.0" + version "1.0.1" depends_on 'spidermonkey' depends_on 'icu4c' @@ -23,15 +23,7 @@ class Couchdb <Formula (lib+'couchdb/bin/couchjs').chmod 0755 (var+'lib/couchdb').mkpath (var+'log/couchdb').mkpath - (etc + "couchdb/local.d/delayed_commits.ini").write ini_file end - def ini_file - return <<-EOS -[couchdb] - delayed_commits = false ; See http://couchdb.apache.org/notice/1.0.1.html for details. -EOS - end - end |
