diff options
| author | Stefan | 2013-08-26 22:59:02 +0200 | 
|---|---|---|
| committer | Samuel John | 2013-08-27 11:44:41 +0200 | 
| commit | 08de5da8e7586bd85c799357f501120b7cba08d1 (patch) | |
| tree | 84e39188ae53bfb24f427ed31c027e08fbe1227f /Library/Formula/sqlite.rb | |
| parent | 08cd419b034f50e354cbce10b683552f04d5eda6 (diff) | |
| download | homebrew-08de5da8e7586bd85c799357f501120b7cba08d1.tar.bz2 | |
sqlite 3.8.0
Fixed version for extension_functions.c to match
what is on the official homepage. The sha1 remains
the same.
Closes #22132
Fixes #22134
Signed-off-by: Samuel John <github@SamuelJohn.de>
Diffstat (limited to 'Library/Formula/sqlite.rb')
| -rw-r--r-- | Library/Formula/sqlite.rb | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/Library/Formula/sqlite.rb b/Library/Formula/sqlite.rb index eb6b3e3be..08c5d9d4e 100644 --- a/Library/Formula/sqlite.rb +++ b/Library/Formula/sqlite.rb @@ -3,20 +3,20 @@ require 'formula'  class SqliteFunctions < Formula    url 'http://www.sqlite.org/contrib/download/extension-functions.c?get=25', :using  => :nounzip    sha1 'c68fa706d6d9ff98608044c00212473f9c14892f' -  version '2010-01-06' +  version '2010-02-06'  end  class SqliteDocs < Formula -  url 'http://www.sqlite.org/2013/sqlite-doc-3071700.zip' -  version '3.7.17' -  sha1 '6b533b0a9a21eb2c2d1c9f278b8defbeb5a432a7' +  url 'http://www.sqlite.org/2013/sqlite-doc-3080000.zip' +  version '3.8.0' +  sha1 'db535a6b86a20192f66146911893aa3b19d4b393'  end  class Sqlite < Formula    homepage 'http://sqlite.org/' -  url 'http://sqlite.org/2013/sqlite-autoconf-3071700.tar.gz' -  version '3.7.17' -  sha1 'e31958e56b1d7bef9433b1ff2e875c8c290d37f4' +  url 'http://www.sqlite.org/2013/sqlite-autoconf-3080000.tar.gz' +  version '3.8.0' +  sha1 '610d01764c2fc6c6220ab88a57ac4de86515ebc8'    option :universal    option 'with-docs', 'Install HTML documentation' | 
