homebrew-core/Formula/geocouch.rb

137 lines
5.3 KiB
Ruby
Raw Normal View History

New Formula: GeoCouch Couchbase GeoCouch augments CouchDB 1.2 to create GeoCouch 1.2. This GeoCouch formula depends directly on the CouchDB formula and its Cellar. For convenience, this formula provides launchctl support file (geocouch.plist). For simplicity's sake, RunAtLoad and KeepAlive are set to 'false'. For always-on server operation, set them to 'true'. Support for 'git checkout develop' for installation of latest branch. All tests work (except rev_stemming which seems flakey, and can eventually work with retries). -=- Latest Revision: Reworked to avoid/minimize uninstall surprises. Many small improvements, and several "big" ones, including the move of geocouch build files from couchdb Cellar into geocouch Cellar. This change reduces the mixing of geocouch into couchdb, helps meet homebrew standards, and eases uninstallation. The caveat documentation reflects this change in an update to the ERL_FLAGS instructions. The geocouch.ini file still hooks into couchdb initialization directory by necessity. The uninstall caveat documentation now specifies how to remove the geocouch.ini file for uninstall. The tests still hook into the couchdb test directory by necessity. The uninstall caveat documentation now recommends uninstalling both geocouch and couchdb (to remove any dangling geocouch tests from couchdb's couch_tests.js file) and then reinstall couchdb fresh. A variety of cleanups were applied along the way. In sum, as mentioned before, since geocouch is a superset of couchdb, uninstalling geocouch should be rare and unnecessary. But in the interests of least surprise, these changes minimize uninstall complications in the rare case someone chooses to keep couchdb while uninstalling geocouch. Perhaps some changes to couchdb will make a modular approach possible in the future, but for now I believe this approach is practical and avoids unpleasant surprises. Simplified head command. Cleanup, and organize geocouch tests into subfolder of couchdb tests. Closes Homebrew/homebrew#11659. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2012-04-15 02:17:42 +00:00
require 'formula'
class Geocouch < Formula
homepage 'https://github.com/couchbase/geocouch'
url 'https://github.com/couchbase/geocouch/archive/couchdb1.3.x.tar.gz'
sha1 '73f5586c06cdec2fb6c5ab88da1ff99ef76beeb7'
version '1.3.0'
New Formula: GeoCouch Couchbase GeoCouch augments CouchDB 1.2 to create GeoCouch 1.2. This GeoCouch formula depends directly on the CouchDB formula and its Cellar. For convenience, this formula provides launchctl support file (geocouch.plist). For simplicity's sake, RunAtLoad and KeepAlive are set to 'false'. For always-on server operation, set them to 'true'. Support for 'git checkout develop' for installation of latest branch. All tests work (except rev_stemming which seems flakey, and can eventually work with retries). -=- Latest Revision: Reworked to avoid/minimize uninstall surprises. Many small improvements, and several "big" ones, including the move of geocouch build files from couchdb Cellar into geocouch Cellar. This change reduces the mixing of geocouch into couchdb, helps meet homebrew standards, and eases uninstallation. The caveat documentation reflects this change in an update to the ERL_FLAGS instructions. The geocouch.ini file still hooks into couchdb initialization directory by necessity. The uninstall caveat documentation now specifies how to remove the geocouch.ini file for uninstall. The tests still hook into the couchdb test directory by necessity. The uninstall caveat documentation now recommends uninstalling both geocouch and couchdb (to remove any dangling geocouch tests from couchdb's couch_tests.js file) and then reinstall couchdb fresh. A variety of cleanups were applied along the way. In sum, as mentioned before, since geocouch is a superset of couchdb, uninstalling geocouch should be rare and unnecessary. But in the interests of least surprise, these changes minimize uninstall complications in the rare case someone chooses to keep couchdb while uninstalling geocouch. Perhaps some changes to couchdb will make a modular approach possible in the future, but for now I believe this approach is practical and avoids unpleasant surprises. Simplified head command. Cleanup, and organize geocouch tests into subfolder of couchdb tests. Closes Homebrew/homebrew#11659. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2012-04-15 02:17:42 +00:00
head 'https://github.com/couchbase/geocouch.git'
New Formula: GeoCouch Couchbase GeoCouch augments CouchDB 1.2 to create GeoCouch 1.2. This GeoCouch formula depends directly on the CouchDB formula and its Cellar. For convenience, this formula provides launchctl support file (geocouch.plist). For simplicity's sake, RunAtLoad and KeepAlive are set to 'false'. For always-on server operation, set them to 'true'. Support for 'git checkout develop' for installation of latest branch. All tests work (except rev_stemming which seems flakey, and can eventually work with retries). -=- Latest Revision: Reworked to avoid/minimize uninstall surprises. Many small improvements, and several "big" ones, including the move of geocouch build files from couchdb Cellar into geocouch Cellar. This change reduces the mixing of geocouch into couchdb, helps meet homebrew standards, and eases uninstallation. The caveat documentation reflects this change in an update to the ERL_FLAGS instructions. The geocouch.ini file still hooks into couchdb initialization directory by necessity. The uninstall caveat documentation now specifies how to remove the geocouch.ini file for uninstall. The tests still hook into the couchdb test directory by necessity. The uninstall caveat documentation now recommends uninstalling both geocouch and couchdb (to remove any dangling geocouch tests from couchdb's couch_tests.js file) and then reinstall couchdb fresh. A variety of cleanups were applied along the way. In sum, as mentioned before, since geocouch is a superset of couchdb, uninstalling geocouch should be rare and unnecessary. But in the interests of least surprise, these changes minimize uninstall complications in the rare case someone chooses to keep couchdb while uninstalling geocouch. Perhaps some changes to couchdb will make a modular approach possible in the future, but for now I believe this approach is practical and avoids unpleasant surprises. Simplified head command. Cleanup, and organize geocouch tests into subfolder of couchdb tests. Closes Homebrew/homebrew#11659. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2012-04-15 02:17:42 +00:00
def couchdb_share
HOMEBREW_PREFIX/'share/couchdb'
end
def geocouch_share
HOMEBREW_PREFIX/'share/geocouch'
end
# Leverage generic couchdb.rb formula for couchdb (and therefore geocouch)
# dependencies.
depends_on 'couchdb'
# GeoCouch currently supports couch_version(s) 1.1.x and 1.2.x (other
# versions at your own risk). This formula supports GeoCouch 1.3.0 on top
# of Apache couchdb 1.3.0.
New Formula: GeoCouch Couchbase GeoCouch augments CouchDB 1.2 to create GeoCouch 1.2. This GeoCouch formula depends directly on the CouchDB formula and its Cellar. For convenience, this formula provides launchctl support file (geocouch.plist). For simplicity's sake, RunAtLoad and KeepAlive are set to 'false'. For always-on server operation, set them to 'true'. Support for 'git checkout develop' for installation of latest branch. All tests work (except rev_stemming which seems flakey, and can eventually work with retries). -=- Latest Revision: Reworked to avoid/minimize uninstall surprises. Many small improvements, and several "big" ones, including the move of geocouch build files from couchdb Cellar into geocouch Cellar. This change reduces the mixing of geocouch into couchdb, helps meet homebrew standards, and eases uninstallation. The caveat documentation reflects this change in an update to the ERL_FLAGS instructions. The geocouch.ini file still hooks into couchdb initialization directory by necessity. The uninstall caveat documentation now specifies how to remove the geocouch.ini file for uninstall. The tests still hook into the couchdb test directory by necessity. The uninstall caveat documentation now recommends uninstalling both geocouch and couchdb (to remove any dangling geocouch tests from couchdb's couch_tests.js file) and then reinstall couchdb fresh. A variety of cleanups were applied along the way. In sum, as mentioned before, since geocouch is a superset of couchdb, uninstalling geocouch should be rare and unnecessary. But in the interests of least surprise, these changes minimize uninstall complications in the rare case someone chooses to keep couchdb while uninstalling geocouch. Perhaps some changes to couchdb will make a modular approach possible in the future, but for now I believe this approach is practical and avoids unpleasant surprises. Simplified head command. Cleanup, and organize geocouch tests into subfolder of couchdb tests. Closes Homebrew/homebrew#11659. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2012-04-15 02:17:42 +00:00
def install
# Grab couchdb 1.3.x.
New Formula: GeoCouch Couchbase GeoCouch augments CouchDB 1.2 to create GeoCouch 1.2. This GeoCouch formula depends directly on the CouchDB formula and its Cellar. For convenience, this formula provides launchctl support file (geocouch.plist). For simplicity's sake, RunAtLoad and KeepAlive are set to 'false'. For always-on server operation, set them to 'true'. Support for 'git checkout develop' for installation of latest branch. All tests work (except rev_stemming which seems flakey, and can eventually work with retries). -=- Latest Revision: Reworked to avoid/minimize uninstall surprises. Many small improvements, and several "big" ones, including the move of geocouch build files from couchdb Cellar into geocouch Cellar. This change reduces the mixing of geocouch into couchdb, helps meet homebrew standards, and eases uninstallation. The caveat documentation reflects this change in an update to the ERL_FLAGS instructions. The geocouch.ini file still hooks into couchdb initialization directory by necessity. The uninstall caveat documentation now specifies how to remove the geocouch.ini file for uninstall. The tests still hook into the couchdb test directory by necessity. The uninstall caveat documentation now recommends uninstalling both geocouch and couchdb (to remove any dangling geocouch tests from couchdb's couch_tests.js file) and then reinstall couchdb fresh. A variety of cleanups were applied along the way. In sum, as mentioned before, since geocouch is a superset of couchdb, uninstalling geocouch should be rare and unnecessary. But in the interests of least surprise, these changes minimize uninstall complications in the rare case someone chooses to keep couchdb while uninstalling geocouch. Perhaps some changes to couchdb will make a modular approach possible in the future, but for now I believe this approach is practical and avoids unpleasant surprises. Simplified head command. Cleanup, and organize geocouch tests into subfolder of couchdb tests. Closes Homebrew/homebrew#11659. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2012-04-15 02:17:42 +00:00
couchdb_dir = buildpath/'couchdb-src'
couchdb = Formula.factory 'couchdb'
couchdb.brew { couchdb_dir.install Dir['*'] }
ENV['COUCH_SRC'] = couchdb_dir/"src/couchdb"
New Formula: GeoCouch Couchbase GeoCouch augments CouchDB 1.2 to create GeoCouch 1.2. This GeoCouch formula depends directly on the CouchDB formula and its Cellar. For convenience, this formula provides launchctl support file (geocouch.plist). For simplicity's sake, RunAtLoad and KeepAlive are set to 'false'. For always-on server operation, set them to 'true'. Support for 'git checkout develop' for installation of latest branch. All tests work (except rev_stemming which seems flakey, and can eventually work with retries). -=- Latest Revision: Reworked to avoid/minimize uninstall surprises. Many small improvements, and several "big" ones, including the move of geocouch build files from couchdb Cellar into geocouch Cellar. This change reduces the mixing of geocouch into couchdb, helps meet homebrew standards, and eases uninstallation. The caveat documentation reflects this change in an update to the ERL_FLAGS instructions. The geocouch.ini file still hooks into couchdb initialization directory by necessity. The uninstall caveat documentation now specifies how to remove the geocouch.ini file for uninstall. The tests still hook into the couchdb test directory by necessity. The uninstall caveat documentation now recommends uninstalling both geocouch and couchdb (to remove any dangling geocouch tests from couchdb's couch_tests.js file) and then reinstall couchdb fresh. A variety of cleanups were applied along the way. In sum, as mentioned before, since geocouch is a superset of couchdb, uninstalling geocouch should be rare and unnecessary. But in the interests of least surprise, these changes minimize uninstall complications in the rare case someone chooses to keep couchdb while uninstalling geocouch. Perhaps some changes to couchdb will make a modular approach possible in the future, but for now I believe this approach is practical and avoids unpleasant surprises. Simplified head command. Cleanup, and organize geocouch tests into subfolder of couchdb tests. Closes Homebrew/homebrew#11659. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2012-04-15 02:17:42 +00:00
# Build geocouch.
system "make"
# Install geocouch build files.
(share/'geocouch').mkpath
rm_rf share/'geocouch/ebin/'
(share/'geocouch').install Dir['ebin']
New Formula: GeoCouch Couchbase GeoCouch augments CouchDB 1.2 to create GeoCouch 1.2. This GeoCouch formula depends directly on the CouchDB formula and its Cellar. For convenience, this formula provides launchctl support file (geocouch.plist). For simplicity's sake, RunAtLoad and KeepAlive are set to 'false'. For always-on server operation, set them to 'true'. Support for 'git checkout develop' for installation of latest branch. All tests work (except rev_stemming which seems flakey, and can eventually work with retries). -=- Latest Revision: Reworked to avoid/minimize uninstall surprises. Many small improvements, and several "big" ones, including the move of geocouch build files from couchdb Cellar into geocouch Cellar. This change reduces the mixing of geocouch into couchdb, helps meet homebrew standards, and eases uninstallation. The caveat documentation reflects this change in an update to the ERL_FLAGS instructions. The geocouch.ini file still hooks into couchdb initialization directory by necessity. The uninstall caveat documentation now specifies how to remove the geocouch.ini file for uninstall. The tests still hook into the couchdb test directory by necessity. The uninstall caveat documentation now recommends uninstalling both geocouch and couchdb (to remove any dangling geocouch tests from couchdb's couch_tests.js file) and then reinstall couchdb fresh. A variety of cleanups were applied along the way. In sum, as mentioned before, since geocouch is a superset of couchdb, uninstalling geocouch should be rare and unnecessary. But in the interests of least surprise, these changes minimize uninstall complications in the rare case someone chooses to keep couchdb while uninstalling geocouch. Perhaps some changes to couchdb will make a modular approach possible in the future, but for now I believe this approach is practical and avoids unpleasant surprises. Simplified head command. Cleanup, and organize geocouch tests into subfolder of couchdb tests. Closes Homebrew/homebrew#11659. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2012-04-15 02:17:42 +00:00
# Install geocouch.plist for launchctl support.
(share/'geocouch').install Dir[couchdb_dir/'etc/launchd/org.apache.couchdb.plist.tpl.in']
New Formula: GeoCouch Couchbase GeoCouch augments CouchDB 1.2 to create GeoCouch 1.2. This GeoCouch formula depends directly on the CouchDB formula and its Cellar. For convenience, this formula provides launchctl support file (geocouch.plist). For simplicity's sake, RunAtLoad and KeepAlive are set to 'false'. For always-on server operation, set them to 'true'. Support for 'git checkout develop' for installation of latest branch. All tests work (except rev_stemming which seems flakey, and can eventually work with retries). -=- Latest Revision: Reworked to avoid/minimize uninstall surprises. Many small improvements, and several "big" ones, including the move of geocouch build files from couchdb Cellar into geocouch Cellar. This change reduces the mixing of geocouch into couchdb, helps meet homebrew standards, and eases uninstallation. The caveat documentation reflects this change in an update to the ERL_FLAGS instructions. The geocouch.ini file still hooks into couchdb initialization directory by necessity. The uninstall caveat documentation now specifies how to remove the geocouch.ini file for uninstall. The tests still hook into the couchdb test directory by necessity. The uninstall caveat documentation now recommends uninstalling both geocouch and couchdb (to remove any dangling geocouch tests from couchdb's couch_tests.js file) and then reinstall couchdb fresh. A variety of cleanups were applied along the way. In sum, as mentioned before, since geocouch is a superset of couchdb, uninstalling geocouch should be rare and unnecessary. But in the interests of least surprise, these changes minimize uninstall complications in the rare case someone chooses to keep couchdb while uninstalling geocouch. Perhaps some changes to couchdb will make a modular approach possible in the future, but for now I believe this approach is practical and avoids unpleasant surprises. Simplified head command. Cleanup, and organize geocouch tests into subfolder of couchdb tests. Closes Homebrew/homebrew#11659. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2012-04-15 02:17:42 +00:00
mv share/'geocouch/org.apache.couchdb.plist.tpl.in', share/'geocouch/geocouch.plist'
inreplace (share/'geocouch/geocouch.plist'), '<string>org.apache.couchdb</string>', \
'<string>geocouch</string>'
inreplace (share/'geocouch/geocouch.plist'), '<key>HOME</key>', <<-EOS.lstrip.chop
<key>ERL_FLAGS</key>
<string>-pa #{geocouch_share}/ebin</string>
New Formula: GeoCouch Couchbase GeoCouch augments CouchDB 1.2 to create GeoCouch 1.2. This GeoCouch formula depends directly on the CouchDB formula and its Cellar. For convenience, this formula provides launchctl support file (geocouch.plist). For simplicity's sake, RunAtLoad and KeepAlive are set to 'false'. For always-on server operation, set them to 'true'. Support for 'git checkout develop' for installation of latest branch. All tests work (except rev_stemming which seems flakey, and can eventually work with retries). -=- Latest Revision: Reworked to avoid/minimize uninstall surprises. Many small improvements, and several "big" ones, including the move of geocouch build files from couchdb Cellar into geocouch Cellar. This change reduces the mixing of geocouch into couchdb, helps meet homebrew standards, and eases uninstallation. The caveat documentation reflects this change in an update to the ERL_FLAGS instructions. The geocouch.ini file still hooks into couchdb initialization directory by necessity. The uninstall caveat documentation now specifies how to remove the geocouch.ini file for uninstall. The tests still hook into the couchdb test directory by necessity. The uninstall caveat documentation now recommends uninstalling both geocouch and couchdb (to remove any dangling geocouch tests from couchdb's couch_tests.js file) and then reinstall couchdb fresh. A variety of cleanups were applied along the way. In sum, as mentioned before, since geocouch is a superset of couchdb, uninstalling geocouch should be rare and unnecessary. But in the interests of least surprise, these changes minimize uninstall complications in the rare case someone chooses to keep couchdb while uninstalling geocouch. Perhaps some changes to couchdb will make a modular approach possible in the future, but for now I believe this approach is practical and avoids unpleasant surprises. Simplified head command. Cleanup, and organize geocouch tests into subfolder of couchdb tests. Closes Homebrew/homebrew#11659. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2012-04-15 02:17:42 +00:00
<key>HOME</key>
EOS
inreplace (share/'geocouch/geocouch.plist'), '%bindir%/%couchdb_command_name%', \
HOMEBREW_PREFIX/'bin/couchdb'
# Turn off RunAtLoad and KeepAlive (to simplify experience for first-timers).
inreplace (share/'geocouch/geocouch.plist'), '<true/>', \
'<false/>'
(share/'geocouch/geocouch.plist').chmod 0644
# Install geocouch.ini into couchdb.
(etc/'couchdb/default.d').install Dir['etc/couchdb/default.d/geocouch.ini']
New Formula: GeoCouch Couchbase GeoCouch augments CouchDB 1.2 to create GeoCouch 1.2. This GeoCouch formula depends directly on the CouchDB formula and its Cellar. For convenience, this formula provides launchctl support file (geocouch.plist). For simplicity's sake, RunAtLoad and KeepAlive are set to 'false'. For always-on server operation, set them to 'true'. Support for 'git checkout develop' for installation of latest branch. All tests work (except rev_stemming which seems flakey, and can eventually work with retries). -=- Latest Revision: Reworked to avoid/minimize uninstall surprises. Many small improvements, and several "big" ones, including the move of geocouch build files from couchdb Cellar into geocouch Cellar. This change reduces the mixing of geocouch into couchdb, helps meet homebrew standards, and eases uninstallation. The caveat documentation reflects this change in an update to the ERL_FLAGS instructions. The geocouch.ini file still hooks into couchdb initialization directory by necessity. The uninstall caveat documentation now specifies how to remove the geocouch.ini file for uninstall. The tests still hook into the couchdb test directory by necessity. The uninstall caveat documentation now recommends uninstalling both geocouch and couchdb (to remove any dangling geocouch tests from couchdb's couch_tests.js file) and then reinstall couchdb fresh. A variety of cleanups were applied along the way. In sum, as mentioned before, since geocouch is a superset of couchdb, uninstalling geocouch should be rare and unnecessary. But in the interests of least surprise, these changes minimize uninstall complications in the rare case someone chooses to keep couchdb while uninstalling geocouch. Perhaps some changes to couchdb will make a modular approach possible in the future, but for now I believe this approach is practical and avoids unpleasant surprises. Simplified head command. Cleanup, and organize geocouch tests into subfolder of couchdb tests. Closes Homebrew/homebrew#11659. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2012-04-15 02:17:42 +00:00
# Install tests into couchdb.
test_files = Dir['share/www/script/test/*.js']
New Formula: GeoCouch Couchbase GeoCouch augments CouchDB 1.2 to create GeoCouch 1.2. This GeoCouch formula depends directly on the CouchDB formula and its Cellar. For convenience, this formula provides launchctl support file (geocouch.plist). For simplicity's sake, RunAtLoad and KeepAlive are set to 'false'. For always-on server operation, set them to 'true'. Support for 'git checkout develop' for installation of latest branch. All tests work (except rev_stemming which seems flakey, and can eventually work with retries). -=- Latest Revision: Reworked to avoid/minimize uninstall surprises. Many small improvements, and several "big" ones, including the move of geocouch build files from couchdb Cellar into geocouch Cellar. This change reduces the mixing of geocouch into couchdb, helps meet homebrew standards, and eases uninstallation. The caveat documentation reflects this change in an update to the ERL_FLAGS instructions. The geocouch.ini file still hooks into couchdb initialization directory by necessity. The uninstall caveat documentation now specifies how to remove the geocouch.ini file for uninstall. The tests still hook into the couchdb test directory by necessity. The uninstall caveat documentation now recommends uninstalling both geocouch and couchdb (to remove any dangling geocouch tests from couchdb's couch_tests.js file) and then reinstall couchdb fresh. A variety of cleanups were applied along the way. In sum, as mentioned before, since geocouch is a superset of couchdb, uninstalling geocouch should be rare and unnecessary. But in the interests of least surprise, these changes minimize uninstall complications in the rare case someone chooses to keep couchdb while uninstalling geocouch. Perhaps some changes to couchdb will make a modular approach possible in the future, but for now I believe this approach is practical and avoids unpleasant surprises. Simplified head command. Cleanup, and organize geocouch tests into subfolder of couchdb tests. Closes Homebrew/homebrew#11659. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2012-04-15 02:17:42 +00:00
# Normal recipe "should" read:
# (share/'couchdb/www/script/test/').install test_files
# which would symlink geocouch tests into the couchdb share. But couchdb
# seems to sandbox its web-readable files to the share/couchdb/www branch,
# and symlinks outside of that folder seem to violate couchdb's
# requirements. Consequently, we have to install geocouch tests directly
# inside the share/couchdb/www branch and not symlink them from the
# geocouch share branch (i.e., outside the couchdb sandbox). So for
# clarity sake, install/partition all the geocouch tests together into a
# tidy subfolder, and symlink them into place in the normal couchdb tests
# folder.
rm_rf (couchdb_share/'www/script/test/geocouch')
(couchdb_share/'www/script/test/geocouch').mkpath
(couchdb_share/'www/script/test/geocouch').install test_files
Dir[(couchdb_share/'www/script/test/geocouch/*.js')].each \
New Formula: GeoCouch Couchbase GeoCouch augments CouchDB 1.2 to create GeoCouch 1.2. This GeoCouch formula depends directly on the CouchDB formula and its Cellar. For convenience, this formula provides launchctl support file (geocouch.plist). For simplicity's sake, RunAtLoad and KeepAlive are set to 'false'. For always-on server operation, set them to 'true'. Support for 'git checkout develop' for installation of latest branch. All tests work (except rev_stemming which seems flakey, and can eventually work with retries). -=- Latest Revision: Reworked to avoid/minimize uninstall surprises. Many small improvements, and several "big" ones, including the move of geocouch build files from couchdb Cellar into geocouch Cellar. This change reduces the mixing of geocouch into couchdb, helps meet homebrew standards, and eases uninstallation. The caveat documentation reflects this change in an update to the ERL_FLAGS instructions. The geocouch.ini file still hooks into couchdb initialization directory by necessity. The uninstall caveat documentation now specifies how to remove the geocouch.ini file for uninstall. The tests still hook into the couchdb test directory by necessity. The uninstall caveat documentation now recommends uninstalling both geocouch and couchdb (to remove any dangling geocouch tests from couchdb's couch_tests.js file) and then reinstall couchdb fresh. A variety of cleanups were applied along the way. In sum, as mentioned before, since geocouch is a superset of couchdb, uninstalling geocouch should be rare and unnecessary. But in the interests of least surprise, these changes minimize uninstall complications in the rare case someone chooses to keep couchdb while uninstalling geocouch. Perhaps some changes to couchdb will make a modular approach possible in the future, but for now I believe this approach is practical and avoids unpleasant surprises. Simplified head command. Cleanup, and organize geocouch tests into subfolder of couchdb tests. Closes Homebrew/homebrew#11659. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2012-04-15 02:17:42 +00:00
{ |geotest| system "cd #{couchdb_share/'www/script/test'}; ln -s geocouch/#{File.basename( geotest)} ."}
# Complete the install by referencing the geocouch tests in couch_tests.js
# (which runs the tests).
test_lines = test_files.map { |testline| testline.gsub(/^.*\/(.*)$/, 'loadTest("\1");' + "\n") }
system "(echo; echo '//REPLACE_ME') >> '#{couchdb_share}/www/script/couch_tests.js'"
inreplace (couchdb_share/'www/script/couch_tests.js'), /^\/\/REPLACE_ME$/, \
"// GeoCouch Tests...\n#{test_lines}// ...GeoCouch Tests\n"
end
def caveats; <<-EOS.undent
FYI: geocouch installs as an extension of couchdb, so couchdb effectively
becomes geocouch. However, you can use couchdb normally (using geocouch
extensions optionally). NB: one exception: the couchdb test suite now
includes several geocouch tests.
To start geocouch manually and verify any geocouch version information (-V),
ERL_FLAGS="-pa #{geocouch_share}/ebin" couchdb -V
New Formula: GeoCouch Couchbase GeoCouch augments CouchDB 1.2 to create GeoCouch 1.2. This GeoCouch formula depends directly on the CouchDB formula and its Cellar. For convenience, this formula provides launchctl support file (geocouch.plist). For simplicity's sake, RunAtLoad and KeepAlive are set to 'false'. For always-on server operation, set them to 'true'. Support for 'git checkout develop' for installation of latest branch. All tests work (except rev_stemming which seems flakey, and can eventually work with retries). -=- Latest Revision: Reworked to avoid/minimize uninstall surprises. Many small improvements, and several "big" ones, including the move of geocouch build files from couchdb Cellar into geocouch Cellar. This change reduces the mixing of geocouch into couchdb, helps meet homebrew standards, and eases uninstallation. The caveat documentation reflects this change in an update to the ERL_FLAGS instructions. The geocouch.ini file still hooks into couchdb initialization directory by necessity. The uninstall caveat documentation now specifies how to remove the geocouch.ini file for uninstall. The tests still hook into the couchdb test directory by necessity. The uninstall caveat documentation now recommends uninstalling both geocouch and couchdb (to remove any dangling geocouch tests from couchdb's couch_tests.js file) and then reinstall couchdb fresh. A variety of cleanups were applied along the way. In sum, as mentioned before, since geocouch is a superset of couchdb, uninstalling geocouch should be rare and unnecessary. But in the interests of least surprise, these changes minimize uninstall complications in the rare case someone chooses to keep couchdb while uninstalling geocouch. Perhaps some changes to couchdb will make a modular approach possible in the future, but for now I believe this approach is practical and avoids unpleasant surprises. Simplified head command. Cleanup, and organize geocouch tests into subfolder of couchdb tests. Closes Homebrew/homebrew#11659. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2012-04-15 02:17:42 +00:00
For general convenience, export your ERL_FLAGS (erlang flags, above) in
your login shell, and then start geocouch:
export ERL_FLAGS="-pa #{geocouch_share}/ebin"
New Formula: GeoCouch Couchbase GeoCouch augments CouchDB 1.2 to create GeoCouch 1.2. This GeoCouch formula depends directly on the CouchDB formula and its Cellar. For convenience, this formula provides launchctl support file (geocouch.plist). For simplicity's sake, RunAtLoad and KeepAlive are set to 'false'. For always-on server operation, set them to 'true'. Support for 'git checkout develop' for installation of latest branch. All tests work (except rev_stemming which seems flakey, and can eventually work with retries). -=- Latest Revision: Reworked to avoid/minimize uninstall surprises. Many small improvements, and several "big" ones, including the move of geocouch build files from couchdb Cellar into geocouch Cellar. This change reduces the mixing of geocouch into couchdb, helps meet homebrew standards, and eases uninstallation. The caveat documentation reflects this change in an update to the ERL_FLAGS instructions. The geocouch.ini file still hooks into couchdb initialization directory by necessity. The uninstall caveat documentation now specifies how to remove the geocouch.ini file for uninstall. The tests still hook into the couchdb test directory by necessity. The uninstall caveat documentation now recommends uninstalling both geocouch and couchdb (to remove any dangling geocouch tests from couchdb's couch_tests.js file) and then reinstall couchdb fresh. A variety of cleanups were applied along the way. In sum, as mentioned before, since geocouch is a superset of couchdb, uninstalling geocouch should be rare and unnecessary. But in the interests of least surprise, these changes minimize uninstall complications in the rare case someone chooses to keep couchdb while uninstalling geocouch. Perhaps some changes to couchdb will make a modular approach possible in the future, but for now I believe this approach is practical and avoids unpleasant surprises. Simplified head command. Cleanup, and organize geocouch tests into subfolder of couchdb tests. Closes Homebrew/homebrew#11659. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2012-04-15 02:17:42 +00:00
couchdb
Alternately, prepare launchctl to start/stop geocouch as follows:
2012-06-23 00:54:16 +00:00
cp #{geocouch_share}/geocouch.plist ~/Library/LaunchAgents
New Formula: GeoCouch Couchbase GeoCouch augments CouchDB 1.2 to create GeoCouch 1.2. This GeoCouch formula depends directly on the CouchDB formula and its Cellar. For convenience, this formula provides launchctl support file (geocouch.plist). For simplicity's sake, RunAtLoad and KeepAlive are set to 'false'. For always-on server operation, set them to 'true'. Support for 'git checkout develop' for installation of latest branch. All tests work (except rev_stemming which seems flakey, and can eventually work with retries). -=- Latest Revision: Reworked to avoid/minimize uninstall surprises. Many small improvements, and several "big" ones, including the move of geocouch build files from couchdb Cellar into geocouch Cellar. This change reduces the mixing of geocouch into couchdb, helps meet homebrew standards, and eases uninstallation. The caveat documentation reflects this change in an update to the ERL_FLAGS instructions. The geocouch.ini file still hooks into couchdb initialization directory by necessity. The uninstall caveat documentation now specifies how to remove the geocouch.ini file for uninstall. The tests still hook into the couchdb test directory by necessity. The uninstall caveat documentation now recommends uninstalling both geocouch and couchdb (to remove any dangling geocouch tests from couchdb's couch_tests.js file) and then reinstall couchdb fresh. A variety of cleanups were applied along the way. In sum, as mentioned before, since geocouch is a superset of couchdb, uninstalling geocouch should be rare and unnecessary. But in the interests of least surprise, these changes minimize uninstall complications in the rare case someone chooses to keep couchdb while uninstalling geocouch. Perhaps some changes to couchdb will make a modular approach possible in the future, but for now I believe this approach is practical and avoids unpleasant surprises. Simplified head command. Cleanup, and organize geocouch tests into subfolder of couchdb tests. Closes Homebrew/homebrew#11659. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2012-04-15 02:17:42 +00:00
chmod 0644 ~/Library/LaunchAgents/geocouch.plist
launchctl load ~/Library/LaunchAgents/geocouch.plist
Then start, check status of, and stop geocouch with the following three
commands.
launchctl start geocouch
launchctl list geocouch
launchctl stop geocouch
Finally, access, test, and configure your new geocouch with:
http://127.0.0.1:5984
http://127.0.0.1:5984/_utils/couch_tests.html?script/couch_tests.js
http://127.0.0.1:5984/_utils
And... relax.
-=-
One last thing: to uninstall geocouch from your couchdb installation:
2012-06-23 00:54:16 +00:00
rm #{HOMEBREW_PREFIX}/etc/couchdb/default.d/geocouch.ini
New Formula: GeoCouch Couchbase GeoCouch augments CouchDB 1.2 to create GeoCouch 1.2. This GeoCouch formula depends directly on the CouchDB formula and its Cellar. For convenience, this formula provides launchctl support file (geocouch.plist). For simplicity's sake, RunAtLoad and KeepAlive are set to 'false'. For always-on server operation, set them to 'true'. Support for 'git checkout develop' for installation of latest branch. All tests work (except rev_stemming which seems flakey, and can eventually work with retries). -=- Latest Revision: Reworked to avoid/minimize uninstall surprises. Many small improvements, and several "big" ones, including the move of geocouch build files from couchdb Cellar into geocouch Cellar. This change reduces the mixing of geocouch into couchdb, helps meet homebrew standards, and eases uninstallation. The caveat documentation reflects this change in an update to the ERL_FLAGS instructions. The geocouch.ini file still hooks into couchdb initialization directory by necessity. The uninstall caveat documentation now specifies how to remove the geocouch.ini file for uninstall. The tests still hook into the couchdb test directory by necessity. The uninstall caveat documentation now recommends uninstalling both geocouch and couchdb (to remove any dangling geocouch tests from couchdb's couch_tests.js file) and then reinstall couchdb fresh. A variety of cleanups were applied along the way. In sum, as mentioned before, since geocouch is a superset of couchdb, uninstalling geocouch should be rare and unnecessary. But in the interests of least surprise, these changes minimize uninstall complications in the rare case someone chooses to keep couchdb while uninstalling geocouch. Perhaps some changes to couchdb will make a modular approach possible in the future, but for now I believe this approach is practical and avoids unpleasant surprises. Simplified head command. Cleanup, and organize geocouch tests into subfolder of couchdb tests. Closes Homebrew/homebrew#11659. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2012-04-15 02:17:42 +00:00
unset ERL_FLAGS
brew uninstall geocouch couchdb; brew install couchdb
and restart your couchdb. (To see the uninstall instructions again, just
run 'brew info geocouch'.)
EOS
end
end