diff options
| author | Andreas Lappe | 2012-07-05 20:25:47 +0200 | 
|---|---|---|
| committer | Charlie Sharpsteen | 2012-07-06 08:47:39 -0800 | 
| commit | 8efdea2994d311b414cfec29ef7c84e08bfbbe8c (patch) | |
| tree | b1c01df128e91e29c7af8d3a2473e26b3bf6607e | |
| parent | 13a53bfbe4a89bf76cd150badfafe64abd21756c (diff) | |
| download | homebrew-8efdea2994d311b414cfec29ef7c84e08bfbbe8c.tar.bz2 | |
geocouch: Uuse tagged version
This adds the hard commit hash to the URL instead of using the master
branch which ensures that the hash stays valid and the code works with
1.2.0.
Fixes #13228.
Closes #13137.
Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
| -rw-r--r-- | Library/Formula/geocouch.rb | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/Library/Formula/geocouch.rb b/Library/Formula/geocouch.rb index 0a7062661..0ee753174 100644 --- a/Library/Formula/geocouch.rb +++ b/Library/Formula/geocouch.rb @@ -3,8 +3,9 @@ require 'formula'  class Geocouch < Formula    homepage 'https://github.com/couchbase/geocouch'    head 'https://github.com/couchbase/geocouch.git', :tag => 'couchdb1.2.x' -  url 'https://github.com/couchbase/geocouch/zipball/couchdb1.2.x' -  sha1 'ec9d912f39710b69115b6d0dae6277e387215377' +  url 'https://github.com/couchbase/geocouch/tarball/couchdb1.2.x_v0.3.0' +  sha1 'f8e9ba7b330550bd09531f70eb2d16c88e95f4d7' +  version '1.2.0'    devel do      url 'https://github.com/couchbase/geocouch.git', :tag => 'master'  | 
