95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
40 lines
1.4 KiB
Ruby
40 lines
1.4 KiB
Ruby
class Libvbucket < Formula
|
|
desc "Utility library providing mapping to virtual buckets"
|
|
homepage "https://couchbase.com/develop/c/current"
|
|
url "https://s3.amazonaws.com/packages.couchbase.com/clients/c/libvbucket-1.8.0.4.tar.gz"
|
|
sha256 "398ba491d434fc109fd64f38678916e1aa19c522abc8c090dbe4e74a2a2ea38d"
|
|
|
|
bottle do
|
|
cellar :any
|
|
revision 1
|
|
sha1 "49e1c03cd079d33ce4d2d8e02a7478b9a27ba208" => :yosemite
|
|
sha1 "1d90ee40664832cab081daac8ed557cff3074bd6" => :mavericks
|
|
sha1 "4de710a362522b6e87a19f7d1d57146b5a9712ce" => :mountain_lion
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--without-docs"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
require "utils/json"
|
|
json = Utils::JSON.dump(
|
|
"hashAlgorithm" => "CRC",
|
|
"numReplicas" => 2,
|
|
"serverList" => ["server1:11211", "server2:11210", "server3:11211"],
|
|
"vBucketMap" => [[0, 1, 2], [1, 2, 0], [2, 1, -1], [1, 2, 0]]
|
|
)
|
|
|
|
expected = <<-EOS.undent
|
|
key: hello master: server1:11211 vBucketId: 0 couchApiBase: (null) replicas: server2:11210 server3:11211
|
|
key: world master: server2:11210 vBucketId: 3 couchApiBase: (null) replicas: server3:11211 server1:11211
|
|
EOS
|
|
|
|
output = pipe_output("#{bin}/vbuckettool - hello world", json)
|
|
assert_equal expected, output
|
|
end
|
|
end
|