homebrew-core/Formula/groovy.rb

131 lines
4.6 KiB
Ruby

class Groovy < Formula
desc "Java-based scripting language"
homepage "https://www.groovy-lang.org/"
url "https://groovy.jfrog.io/artifactory/dist-release-local/groovy-zips/apache-groovy-binary-4.0.6.zip"
sha256 "e3b541567e65787279f02031206589bcdf3cdaab9328d9e4d72ad23a86aa1053"
license "Apache-2.0"
livecheck do
url "https://groovy.jfrog.io/artifactory/dist-release-local/groovy-zips/"
regex(/href=.*?apache-groovy-binary[._-]v?(\d+(?:\.\d+)+)\.zip/i)
end
bottle do
sha256 cellar: :any_skip_relocation, arm64_monterey: "d502fbbd3b4cc7effc50c204c299ca6ea189a0b96dd6c937b6b819d57b942b76"
sha256 cellar: :any_skip_relocation, arm64_big_sur: "f4310645b741b16c0e8a82551e0ecad438e4a9be466a47c33280148165dda6ef"
sha256 cellar: :any_skip_relocation, monterey: "75205e5119da92a72a72b550f0ed2dc9f1464c03174964eea5e31cee94b2b771"
sha256 cellar: :any_skip_relocation, big_sur: "61dd8ce119b865d87422c0aa9312daa8803aef33a97d9203896419d22b17d34e"
sha256 cellar: :any_skip_relocation, catalina: "bba0c63079a85100d829c0547423cc1bbeba58105d9dc91f1b4b9ab78db37a42"
sha256 cellar: :any_skip_relocation, x86_64_linux: "37603da2a7f352a511828c37f348e03046e21d43857acb8b64dc3c833a06a5c8"
end
depends_on "openjdk"
on_macos do
# Temporary build dependencies for compiling jansi-native
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
depends_on "maven" => :build
# jansi-native is used to build native binary to support Apple Silicon.
# Source version is from jline-2.14.6 -> jansi-1.12 -> jansi-native-1.6
# TODO: Remove once updated to jline-3.x: https://issues.apache.org/jira/browse/GROOVY-8162
resource "jansi-native" do
url "https://github.com/fusesource/jansi-native/archive/refs/tags/jansi-native-1.6.tar.gz"
sha256 "f4075ad012c9ed79eaa8d3240d869e10d94ca8b130f3e7dac2ba3978dce0fb21"
# Update pom.xml to replace unsupported Java 6 source and to disable universal binary
patch :DATA
end
end
conflicts_with "groovysdk", because: "both install the same binaries"
def install
if OS.mac?
jline_jar = buildpath/"lib/jline-2.14.6.jar"
resource("jansi-native").stage do
system "mvn", "-Dplatform=osx", "prepare-package"
system "zip", "-d", jline_jar, "META-INF/native/*"
system "jar", "-uvf", jline_jar,
"-C", "target/generated-sources/hawtjni/lib",
"META-INF/native/osx64/libjansi.jnilib"
end
end
# Don't need Windows files.
rm_f Dir["bin/*.bat"]
libexec.install "bin", "conf", "lib"
bin.install Dir["#{libexec}/bin/*"] - ["#{libexec}/bin/groovy.ico"]
bin.env_script_all_files libexec/"bin", Language::Java.overridable_java_home_env
end
def caveats
<<~EOS
You should set GROOVY_HOME:
export GROOVY_HOME=#{opt_libexec}
EOS
end
test do
output = shell_output("#{bin}/grape install org.activiti activiti-engine 5.16.4")
assert_match "found org.activiti#activiti-engine;5.16.4", output
assert_match "65536\n===> null\n", pipe_output("#{bin}/groovysh", "println 64*1024\n:exit\n")
end
end
__END__
diff --git a/pom.xml b/pom.xml
index 369cc8c..6dbac6f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -151,8 +151,8 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
- <source>1.5</source>
- <target>1.5</target>
+ <source>1.7</source>
+ <target>1.7</target>
</configuration>
</plugin>
@@ -306,35 +306,5 @@
</build>
</profile>
-
- <!-- Profile which enables Universal binaries on OS X -->
- <profile>
- <id>mac</id>
- <activation>
- <os><family>mac</family></os>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.fusesource.hawtjni</groupId>
- <artifactId>maven-hawtjni-plugin</artifactId>
- <configuration>
- <osgiPlatforms>
- <osgiPlatform>osname=MacOS;processor=x86-64</osgiPlatform>
- <osgiPlatform>osname=MacOS;processor=x86</osgiPlatform>
- <osgiPlatform>osname=MacOS;processor=PowerPC</osgiPlatform>
- <osgiPlatform>*</osgiPlatform>
- </osgiPlatforms>
- <configureArgs>
- <arg>--with-universal</arg>
- </configureArgs>
- <platform>osx</platform>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
-
-
</profiles>
</project>