2014-07-21 02:24:23 +00:00
|
|
|
require "formula"
|
2010-08-13 16:58:56 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Disco < Formula
|
2014-07-21 02:24:23 +00:00
|
|
|
homepage "http://discoproject.org/"
|
2014-08-21 07:25:10 +00:00
|
|
|
url "https://github.com/discoproject/disco/archive/0.5.3.tar.gz"
|
|
|
|
sha1 "78e1f38d54460f472d2e862988eb8af3b30afb1f"
|
2010-08-13 16:58:56 +00:00
|
|
|
|
2014-04-30 22:37:21 +00:00
|
|
|
depends_on :python if MacOS.version <= :snow_leopard
|
2014-07-21 02:24:23 +00:00
|
|
|
depends_on "erlang"
|
|
|
|
depends_on "simplejson" => :python if MacOS.version <= :leopard
|
|
|
|
depends_on "libcmph"
|
2010-08-13 16:58:56 +00:00
|
|
|
|
2014-03-18 17:13:31 +00:00
|
|
|
# Modifies config for single-node operation
|
|
|
|
patch :DATA
|
2013-04-11 07:17:52 +00:00
|
|
|
|
2010-08-13 16:58:56 +00:00
|
|
|
def install
|
2014-04-30 22:37:21 +00:00
|
|
|
ENV["PYTHONPATH"] = lib+"python2.7/site-packages"
|
|
|
|
|
2011-04-04 23:15:16 +00:00
|
|
|
inreplace "Makefile" do |s|
|
2013-04-11 07:17:52 +00:00
|
|
|
s.change_make_var! "prefix", prefix
|
|
|
|
s.change_make_var! "sysconfdir", etc
|
|
|
|
s.change_make_var! "localstatedir", var
|
2011-04-04 23:15:16 +00:00
|
|
|
end
|
2010-08-13 16:58:56 +00:00
|
|
|
|
2014-01-04 13:04:23 +00:00
|
|
|
# Disco's "rebar" build tool refuses to build unless it's in a git repo, so
|
|
|
|
# make a dummy one
|
|
|
|
system "git init && git add master/rebar && git commit -a -m 'dummy commit'"
|
2013-01-21 09:33:56 +00:00
|
|
|
|
2014-01-04 13:04:23 +00:00
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
prefix.install %w[contrib doc examples]
|
2013-01-21 09:33:56 +00:00
|
|
|
|
2014-01-04 13:04:23 +00:00
|
|
|
# Fix the config file to point at the linked files, not in to cellar
|
|
|
|
# This isn't ideal - if there's a settings.py file left over from a previous disco
|
|
|
|
# installation, it'll issue a Warning
|
|
|
|
inreplace "#{etc}/disco/settings.py" do |s|
|
|
|
|
s.gsub!("Cellar/disco/"+version+"/", "")
|
2013-04-11 07:17:52 +00:00
|
|
|
end
|
2014-04-30 22:37:21 +00:00
|
|
|
|
2014-07-21 02:24:23 +00:00
|
|
|
bin.env_script_all_files(libexec+"bin", :PYTHONPATH => ENV["PYTHONPATH"])
|
2010-08-13 16:58:56 +00:00
|
|
|
end
|
2014-04-30 22:37:30 +00:00
|
|
|
|
|
|
|
test do
|
|
|
|
system "#{bin}/disco"
|
|
|
|
end
|
2010-08-13 16:58:56 +00:00
|
|
|
|
2013-01-21 09:33:56 +00:00
|
|
|
def caveats
|
2014-01-04 13:04:23 +00:00
|
|
|
<<-EOS.undent
|
2013-01-21 09:33:56 +00:00
|
|
|
Please copy #{etc}/disco/settings.py to ~/.disco and edit it if necessary.
|
|
|
|
The DDFS_*_REPLICA settings have been set to 1 assuming a single-machine install.
|
|
|
|
Please see http://discoproject.org/doc/disco/start/install.html for further instructions.
|
2010-08-13 16:58:56 +00:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|
2013-04-11 07:17:52 +00:00
|
|
|
|
|
|
|
__END__
|
|
|
|
diff -rupN disco-0.4.5/conf/gen.settings.sh my-edits/disco-0.4.5/conf/gen.settings.sh
|
|
|
|
--- disco-0.4.5/conf/gen.settings.sh 2013-03-28 12:21:30.000000000 -0400
|
|
|
|
+++ my-edits/disco-0.4.5/conf/gen.settings.sh 2013-04-10 23:10:00.000000000 -0400
|
|
|
|
@@ -23,8 +23,11 @@ DISCO_PORT = 8989
|
|
|
|
# DISCO_PROXY_ENABLED = "on"
|
|
|
|
# DISCO_HTTPD = "/usr/sbin/varnishd -a 0.0.0.0:\$DISCO_PROXY_PORT -f \$DISCO_PROXY_CONFIG -P \$DISCO_PROXY_PID -n/tmp -smalloc"
|
|
|
|
|
|
|
|
-DDFS_TAG_MIN_REPLICAS = 3
|
|
|
|
-DDFS_TAG_REPLICAS = 3
|
|
|
|
-DDFS_BLOB_REPLICAS = 3
|
|
|
|
+# Settings appropriate for single-node operation
|
|
|
|
+DDFS_TAG_MIN_REPLICAS = 1
|
|
|
|
+DDFS_TAG_REPLICAS = 1
|
|
|
|
+DDFS_BLOB_REPLICAS = 1
|
|
|
|
+
|
|
|
|
+DISCO_MASTER_HOST = "localhost"
|
|
|
|
|
|
|
|
EOF
|