neo4j 3.0.0

* Change the JDK dependency to 1.8.
* Set NEO4J_HOME env in executables.

Closes #648.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
This commit is contained in:
Dan Murphy 2016-04-27 12:19:02 +01:00 committed by Dominyk Tiller
parent a80d733cc0
commit 0b661e3a0a

View file

@ -1,33 +1,25 @@
class Neo4j < Formula
desc "Robust (fully ACID) transactional property graph database"
homepage "http://neo4j.com"
url "http://dist.neo4j.org/neo4j-community-2.3.3-unix.tar.gz"
version "2.3.3"
sha256 "01559c55055516a42ee2dd100137b6b55d63f02959a3c6c6db7a152e045828d9"
devel do
url "http://dist.neo4j.org/neo4j-community-3.0.0-M05-unix.tar.gz"
sha256 "2b7878f424859de6951e86f9abb71701d8d45ab22e1157410504fe6a6bb17a95"
version "3.0.0-M05"
end
url "http://dist.neo4j.org/neo4j-community-3.0.0-unix.tar.gz"
version "3.0.0"
sha256 "1f1aeb3c748d5b05c263b7dab8b195df788507f59228e80534ed8e506a80c517"
bottle :unneeded
depends_on :java => "1.7+"
depends_on :java => "1.8+"
def install
ENV["NEO4J_HOME"] = libexec
# Remove windows files
rm_f Dir["bin/*.bat"]
# Fix Java detection to work with 1.8
# https://github.com/neo4j/neo4j/issues/6895
inreplace "bin/utils", "java_home -v 1.7", "java_home -v 1.7+" if build.stable?
# Install jars in libexec to avoid conflicts
libexec.install Dir["*"]
# Symlink binaries
bin.install_symlink Dir["#{libexec}/bin/neo4j{,-shell,-import}"]
bin.install Dir["#{libexec}/bin/neo4j{,-shell,-import,-shared.sh, -admin}"]
bin.env_script_all_files(libexec/"bin", :NEO4J_HOME => ENV["NEO4J_HOME"])
# Adjust UDC props
# Suppress the empty, focus-stealing java gui.
@ -38,6 +30,7 @@ class Neo4j < Formula
end
test do
ENV["NEO4J_HOME"] = libexec
ENV.java_cache
ENV["NEO4J_LOG"] = testpath/"libexec/data/log/neo4j.log"
ENV["NEO4J_PIDFILE"] = testpath/"libexec/data/neo4j-service.pid"