homebrew-core/Formula/nsq.rb
2015-09-28 16:06:25 +01:00

118 lines
3.6 KiB
Ruby

require "language/go"
class Nsq < Formula
desc "Realtime distributed messaging platform"
homepage "http://nsq.io"
url "https://github.com/nsqio/nsq/archive/v0.3.6.tar.gz"
sha256 "2cf00ddfd63508ab98d052cb36ac7ec5b591abe1896b92d158c04964e2c6cb97"
head "https://github.com/nsqio/nsq.git"
bottle do
cellar :any_skip_relocation
sha256 "a4c1a6724b3e91d6564b9188b1d099639a26999a36ae71ecb0ca7413703c106c" => :el_capitan
sha256 "3fe3404d2439cb43e16d38ecd5ec384ef95f9660bd789a06959b17a8ff077968" => :yosemite
sha256 "44452e103eb6e5dce242311497c30c905fe9fbf775bec20880fe7277cef5a288" => :mavericks
end
depends_on "go" => :build
go_resource "github.com/BurntSushi/toml" do
url "https://github.com/BurntSushi/toml.git",
:revision => "2dff11163ee667d51dcc066660925a92ce138deb"
end
go_resource "github.com/bitly/go-hostpool" do
url "https://github.com/bitly/go-hostpool.git",
:revision => "58b95b10d6ca26723a7f46017b348653b825a8d6"
end
go_resource "github.com/nsqio/go-nsq" do
url "https://github.com/nsqio/go-nsq.git",
:revision => "cef6982c1150617a77539847950ca63774f0e48c"
end
go_resource "github.com/bitly/go-simplejson" do
url "https://github.com/bitly/go-simplejson.git",
:revision => "fc395a5db941cf38922b1ccbc083640cd76fe4bc"
end
go_resource "github.com/bmizerany/perks" do
url "https://github.com/bmizerany/perks.git",
:revision => "6cb9d9d729303ee2628580d9aec5db968da3a607"
end
go_resource "github.com/mreiferson/go-options" do
url "https://github.com/mreiferson/go-options.git",
:revision => "2cf7eb1fdd83e2bb3375fef6fdadb04c3ad564da"
end
go_resource "github.com/mreiferson/go-snappystream" do
url "https://github.com/mreiferson/go-snappystream.git",
:revision => "028eae7ab5c4c9e2d1cb4c4ca1e53259bbe7e504"
end
go_resource "github.com/bitly/timer_metrics" do
url "https://github.com/bitly/timer_metrics.git",
:revision => "afad1794bb13e2a094720aeb27c088aa64564895"
end
go_resource "github.com/blang/semver" do
url "https://github.com/blang/semver.git",
:revision => "9bf7bff48b0388cb75991e58c6df7d13e982f1f2"
end
go_resource "github.com/julienschmidt/httprouter" do
url "https://github.com/julienschmidt/httprouter.git",
:revision => "6aacfd5ab513e34f7e64ea9627ab9670371b34e7"
end
def install
# build a proper GOPATH tree for local dependencies
(buildpath + "src/github.com/nsqio/nsq").install "Makefile", "apps", "internal", "nsqlookupd", "nsqd", "nsqadmin"
ENV["GOPATH"] = buildpath
Language::Go.stage_deps resources, buildpath/"src"
cd buildpath/"src/github.com/nsqio/nsq" do
system "make"
system "make", "DESTDIR=#{prefix}", "PREFIX=", "install"
end
end
test do
begin
lookupd = fork do
exec bin/"nsqlookupd"
end
sleep 2
d = fork do
exec bin/"nsqd", "--lookupd-tcp-address=127.0.0.1:4160"
end
sleep 2
admin = fork do
exec bin/"nsqadmin", "--lookupd-http-address=127.0.0.1:4161"
end
sleep 2
to_file = fork do
exec bin/"nsq_to_file", "--topic=test", "--output-dir=#{testpath}",
"--lookupd-http-address=127.0.0.1:4161"
end
sleep 2
system "curl", "-d", "hello", "http://127.0.0.1:4151/put?topic=test"
dat = File.read(Dir["*.dat"].first)
assert_match "test", dat
assert_match version.to_s, dat
ensure
Process.kill(9, lookupd)
Process.kill(9, d)
Process.kill(9, admin)
Process.kill(9, to_file)
Process.wait lookupd
Process.wait d
Process.wait admin
Process.wait to_file
end
end
end