2011-03-10 18:09:03 +00:00
|
|
|
class Cassandra < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Eventually consistent, distributed key-value store"
|
2015-04-02 17:42:23 +00:00
|
|
|
homepage "https://cassandra.apache.org"
|
2015-06-11 22:58:07 +00:00
|
|
|
url "https://www.apache.org/dyn/closer.cgi?path=/cassandra/2.1.6/apache-cassandra-2.1.6-bin.tar.gz"
|
|
|
|
mirror "https://archive.apache.org/dist/cassandra/2.1.6/apache-cassandra-2.1.6-bin.tar.gz"
|
|
|
|
sha256 "c2123b9d82b57868ad03c57720d9f4c99934fe292d571242a3b51337063409f7"
|
2015-04-02 17:42:23 +00:00
|
|
|
|
2015-05-12 20:50:53 +00:00
|
|
|
bottle do
|
2015-06-12 02:13:30 +00:00
|
|
|
sha256 "c269d7d38965af4413351c296d8573fdd93594a9d4abf02a5c69ede3f6f07565" => :yosemite
|
|
|
|
sha256 "e8cf539dd5ed31edc0c5e174b6b11e5c34e731f48706277ac6d5ff286af16e41" => :mavericks
|
|
|
|
sha256 "f1c022d18a838e037e565584eb1f72780be8128f56b26ebf25ac2ff733b0d503" => :mountain_lion
|
2015-05-12 20:50:53 +00:00
|
|
|
end
|
|
|
|
|
2015-04-02 17:42:23 +00:00
|
|
|
depends_on :python if MacOS.version <= :snow_leopard
|
|
|
|
|
|
|
|
# Only Yosemite has new enough setuptools for successful compile of the below deps.
|
|
|
|
resource "setuptools" do
|
|
|
|
url "https://pypi.python.org/packages/source/s/setuptools/setuptools-12.0.5.tar.gz"
|
|
|
|
sha256 "bda326cad34921060a45004b0dd81f828d471695346e303f4ca53b8ba6f4547f"
|
|
|
|
end
|
|
|
|
|
|
|
|
resource "thrift" do
|
|
|
|
url "https://pypi.python.org/packages/source/t/thrift/thrift-0.9.2.tar.gz"
|
|
|
|
sha256 "08f665e4b033c9d2d0b6174d869273104362c80e77ee4c01054a74141e378afa"
|
|
|
|
end
|
|
|
|
|
|
|
|
resource "futures" do
|
|
|
|
url "https://pypi.python.org/packages/source/f/futures/futures-2.2.0.tar.gz"
|
|
|
|
sha256 "151c057173474a3a40f897165951c0e33ad04f37de65b6de547ddef107fd0ed3"
|
|
|
|
end
|
|
|
|
|
|
|
|
resource "six" do
|
|
|
|
url "https://pypi.python.org/packages/source/s/six/six-1.9.0.tar.gz"
|
|
|
|
sha256 "e24052411fc4fbd1f672635537c3fc2330d9481b18c0317695b46259512c91d5"
|
|
|
|
end
|
|
|
|
|
|
|
|
resource "cql" do
|
|
|
|
url "https://pypi.python.org/packages/source/c/cql/cql-1.4.0.tar.gz"
|
|
|
|
sha256 "7857c16d8aab7b736ab677d1016ef8513dedb64097214ad3a50a6c550cb7d6e0"
|
|
|
|
end
|
|
|
|
|
|
|
|
resource "cassandra-driver" do
|
2015-05-12 20:39:45 +00:00
|
|
|
url "https://pypi.python.org/packages/source/c/cassandra-driver/cassandra-driver-2.5.1.tar.gz"
|
|
|
|
sha256 "98511b51f3565bf5836079ed31b7be681d5a17b5a98d1214aa64eb06e07bc18d"
|
2015-04-02 17:42:23 +00:00
|
|
|
end
|
2010-04-21 08:45:34 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
(var+"lib/cassandra").mkpath
|
|
|
|
(var+"log/cassandra").mkpath
|
2015-04-02 17:42:23 +00:00
|
|
|
|
|
|
|
pypath = libexec/"vendor/lib/python2.7/site-packages"
|
|
|
|
ENV.prepend_create_path "PYTHONPATH", pypath
|
|
|
|
%w[setuptools thrift futures six cql cassandra-driver].each do |r|
|
|
|
|
resource(r).stage do
|
|
|
|
system "python", *Language::Python.setup_install_args(libexec/"vendor")
|
|
|
|
end
|
|
|
|
end
|
2010-04-21 08:45:34 +00:00
|
|
|
|
2011-01-28 15:24:54 +00:00
|
|
|
inreplace "conf/cassandra.yaml", "/var/lib/cassandra", "#{var}/lib/cassandra"
|
2012-09-14 01:29:53 +00:00
|
|
|
inreplace "conf/cassandra-env.sh", "/lib/", "/"
|
2011-06-03 20:03:54 +00:00
|
|
|
|
2014-09-16 20:48:38 +00:00
|
|
|
inreplace "bin/cassandra", "-Dcassandra.logdir\=$CASSANDRA_HOME/logs", "-Dcassandra.logdir\=#{var}/log/cassandra"
|
2010-04-21 08:45:34 +00:00
|
|
|
inreplace "bin/cassandra.in.sh" do |s|
|
2015-04-02 17:42:23 +00:00
|
|
|
s.gsub! "CASSANDRA_HOME=\"`dirname \"$0\"`/..\"", "CASSANDRA_HOME=\"#{libexec}\""
|
2010-04-21 08:45:34 +00:00
|
|
|
# Store configs in etc, outside of keg
|
2013-08-13 15:40:19 +00:00
|
|
|
s.gsub! "CASSANDRA_CONF=\"$CASSANDRA_HOME/conf\"", "CASSANDRA_CONF=\"#{etc}/cassandra\""
|
2010-04-21 08:45:34 +00:00
|
|
|
# Jars installed to prefix, no longer in a lib folder
|
2013-08-13 15:40:19 +00:00
|
|
|
s.gsub! "\"$CASSANDRA_HOME\"/lib/*.jar", "\"$CASSANDRA_HOME\"/*.jar"
|
2014-03-18 07:54:53 +00:00
|
|
|
# The jammm Java agent is not in a lib/ subdir either:
|
|
|
|
s.gsub! "JAVA_AGENT=\"$JAVA_AGENT -javaagent:$CASSANDRA_HOME/lib/jamm-", "JAVA_AGENT=\"$JAVA_AGENT -javaagent:$CASSANDRA_HOME/jamm-"
|
2014-09-16 20:48:38 +00:00
|
|
|
# Storage path
|
|
|
|
s.gsub! "cassandra_storagedir\=\"$CASSANDRA_HOME/data\"", "cassandra_storagedir\=\"#{var}/lib/cassandra\""
|
2010-04-21 08:45:34 +00:00
|
|
|
end
|
|
|
|
|
2014-09-16 20:48:38 +00:00
|
|
|
rm Dir["bin/*.bat", "bin/*.ps1"]
|
2010-04-21 08:45:34 +00:00
|
|
|
|
2015-04-02 17:42:23 +00:00
|
|
|
# This breaks on `brew uninstall cassandra && brew install cassandra`
|
|
|
|
# https://github.com/Homebrew/homebrew/pull/38309
|
2010-04-21 08:45:34 +00:00
|
|
|
(etc+"cassandra").install Dir["conf/*"]
|
2013-09-07 19:09:55 +00:00
|
|
|
|
2015-04-02 17:42:23 +00:00
|
|
|
libexec.install Dir["*.txt", "{bin,interface,javadoc,pylib,lib/licenses}"]
|
|
|
|
libexec.install Dir["lib/*.jar"]
|
|
|
|
|
|
|
|
share.install [libexec+"bin/cassandra.in.sh", libexec+"bin/stop-server"]
|
|
|
|
inreplace Dir["#{libexec}/bin/cassandra*", "#{libexec}/bin/debug-cql", "#{libexec}/bin/nodetool", "#{libexec}/bin/sstable*"],
|
2014-09-16 20:48:38 +00:00
|
|
|
/`dirname "?\$0"?`\/cassandra.in.sh/,
|
|
|
|
"#{share}/cassandra.in.sh"
|
2011-09-15 23:50:17 +00:00
|
|
|
|
2015-04-02 17:42:23 +00:00
|
|
|
bin.write_exec_script Dir["#{libexec}/bin/*"]
|
|
|
|
rm bin/"cqlsh" # Remove existing exec script
|
|
|
|
(bin/"cqlsh").write_env_script libexec/"bin/cqlsh", :PYTHONPATH => pypath
|
2011-09-15 23:50:17 +00:00
|
|
|
end
|
|
|
|
|
2012-11-25 15:06:41 +00:00
|
|
|
def plist; <<-EOS.undent
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
|
|
<plist version="1.0">
|
|
|
|
<dict>
|
|
|
|
<key>KeepAlive</key>
|
|
|
|
<true/>
|
|
|
|
<key>Label</key>
|
|
|
|
<string>#{plist_name}</string>
|
|
|
|
<key>ProgramArguments</key>
|
|
|
|
<array>
|
2014-03-06 05:28:31 +00:00
|
|
|
<string>#{opt_bin}/cassandra</string>
|
2012-11-25 15:06:41 +00:00
|
|
|
<string>-f</string>
|
|
|
|
</array>
|
|
|
|
<key>RunAtLoad</key>
|
|
|
|
<true/>
|
|
|
|
<key>WorkingDirectory</key>
|
|
|
|
<string>#{var}/lib/cassandra</string>
|
|
|
|
</dict>
|
|
|
|
</plist>
|
|
|
|
EOS
|
2010-04-21 08:45:34 +00:00
|
|
|
end
|
2010-08-29 13:49:21 +00:00
|
|
|
end
|