aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/jython.rb
diff options
context:
space:
mode:
authorEd Marshall2013-01-02 21:55:17 -0800
committerAdam Vandenberg2013-01-03 07:51:20 -0800
commitb18479a3e5d6a069e59ba8014ddc00f0e69d661a (patch)
tree14ec7ca6d14c82911847431f6440bafecbfe79bc /Library/Formula/jython.rb
parentd36eea4007e247b4cdb9ca163d4f1852bc4b7486 (diff)
downloadhomebrew-b18479a3e5d6a069e59ba8014ddc00f0e69d661a.tar.bz2
jython 2.5.3
Closes #16859. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/jython.rb')
-rw-r--r--Library/Formula/jython.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/jython.rb b/Library/Formula/jython.rb
index 75a3cc475..1be5c4514 100644
--- a/Library/Formula/jython.rb
+++ b/Library/Formula/jython.rb
@@ -2,8 +2,8 @@ require 'formula'
class Jython < Formula
homepage 'http://www.jython.org'
- url "http://downloads.sourceforge.net/project/jython/jython/2.5.2/jython_installer-2.5.2.jar"
- sha1 'd4534a691edf40aa1d51723dfe3e22db1e39b432'
+ url "http://search.maven.org/remotecontent?filepath=org/python/jython-installer/2.5.3/jython-installer-2.5.3.jar"
+ sha1 '6b6ac4354733b6d68d51acf2f3d5c823a10a4ce4'
devel do
url "http://downloads.sourceforge.net/project/jython/jython-dev/2.7.0a2/jython_installer-2.7a2.jar"
@@ -11,7 +11,7 @@ class Jython < Formula
end
def install
- system "java", "-jar", "jython_installer-#{version}.jar", "-s", "-d", libexec
+ system "java", "-jar", cached_download, "-s", "-d", libexec
bin.install_symlink libexec/'bin/jython'
end
end