diff options
| author | Mike McQuaid | 2013-10-11 08:31:29 +0100 | 
|---|---|---|
| committer | Mike McQuaid | 2013-10-11 08:31:34 +0100 | 
| commit | beff883f14df93d8635577d00fdd1be4dcbd4450 (patch) | |
| tree | 4297550ac1820dcea31e4050069f36d8f9f9df48 /Library/Formula/mongodb.rb | |
| parent | bcd853d3c95b3a8748a2dd71e4fbb020d3fccb18 (diff) | |
| download | homebrew-beff883f14df93d8635577d00fdd1be4dcbd4450.tar.bz2 | |
mongodb: update bottles.
Closes #23190.
Diffstat (limited to 'Library/Formula/mongodb.rb')
| -rw-r--r-- | Library/Formula/mongodb.rb | 20 | 
1 files changed, 7 insertions, 13 deletions
diff --git a/Library/Formula/mongodb.rb b/Library/Formula/mongodb.rb index 50bce8021..835cd56af 100644 --- a/Library/Formula/mongodb.rb +++ b/Library/Formula/mongodb.rb @@ -5,6 +5,13 @@ class Mongodb < Formula    url 'http://downloads.mongodb.org/src/mongodb-src-r2.4.6.tar.gz'    sha1 '32066d405f3bed175c9433dc4ac455c2e0091b53' +  bottle do +    revision 2 +    sha1 '346303b785bafeae18228c9ef180b58f052f14e7' => :mountain_lion +    sha1 'be5cb31e61d55fc7df83c25e19c6c9ab6f4e8aed' => :lion +    sha1 'f2eb7be5c35c1e185b5af617829ff96f4307e2b0' => :snow_leopard +  end +    devel do      url 'http://downloads.mongodb.org/src/mongodb-src-r2.5.2.tar.gz'      sha1 'e6b0aa35ea78e6bf9d7791a04810a4db4d69decc' @@ -12,13 +19,6 @@ class Mongodb < Formula    head 'https://github.com/mongodb/mongo.git' -  bottle do -    revision 1 -    sha1 '323566c3738d80a437bae63f294c44e7548ae758' => :mountain_lion -    sha1 'fbe4d599ae992c6b863c96da6da3b45446bdc0cf' => :lion -    sha1 'b4d7e33054b9daef2504bcdb8f26ef43dbea6aaf' => :snow_leopard -  end -    def patches      # Fix Clang v8 build failure.      'https://github.com/mongodb/mongo/commit/be4bc7.patch' @@ -55,12 +55,6 @@ class Mongodb < Formula      (var+'log/mongodb').mkpath    end -  def post_install -    # TODO: can be removed when bottle is updated. -    (var+'mongodb').mkpath -    (var+'log/mongodb').mkpath -  end -    def mongodb_conf; <<-EOS.undent      # Store data in #{var}/mongodb instead of the default /data/db      dbpath = #{var}/mongodb  | 
