diff options
| author | Adam Vandenberg | 2013-03-29 06:34:47 -0700 | 
|---|---|---|
| committer | Adam Vandenberg | 2013-03-29 06:34:47 -0700 | 
| commit | 75acc49c550918776413f1fe77a3471cd41b773c (patch) | |
| tree | da908e1fa953ec76f42447706e2851cff697bd62 /Library/Formula/jython.rb | |
| parent | 7b3e7c25ea9ec7f0f271c625957a6a1d49ef5c21 (diff) | |
| download | homebrew-75acc49c550918776413f1fe77a3471cd41b773c.tar.bz2 | |
Jython: fix --devel version
Closes #18820.
Diffstat (limited to 'Library/Formula/jython.rb')
| -rw-r--r-- | Library/Formula/jython.rb | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/Library/Formula/jython.rb b/Library/Formula/jython.rb index 135d54522..0c21cd538 100644 --- a/Library/Formula/jython.rb +++ b/Library/Formula/jython.rb @@ -2,11 +2,12 @@ require 'formula'  class Jython < Formula    homepage 'http://www.jython.org' -  url "http://search.maven.org/remotecontent?filepath=org/python/jython-installer/2.5.3/jython-installer-2.5.3.jar" +  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://search.maven.org/remotecontent?filepath=org/python/jython-installer/2.7-b1/jython-installer-2.7-b1.jar" +    url 'http://search.maven.org/remotecontent?filepath=org/python/jython-installer/2.7-b1/jython-installer-2.7-b1.jar' +    version '2.7-b1'      sha1 '385a52a8a3c5d941d61a7b2ed76e8a351b3658f2'    end | 
