Update to couchdb 1.0.1 and remove .ini file fix from brew

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Lee Packham 2010-08-17 09:21:53 +01:00 committed by Adam Vandenberg
parent 2b2568cb86
commit 182250ded7
1 changed files with 2 additions and 10 deletions

View File

@ -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