From 55aa5afee3a086bd9a1b2f3078e718ba57f1dce9 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Thu, 6 Sep 2012 15:17:09 +0200 Subject: [PATCH] Fix SHA1 of distribute in pypy formula The SHA1 added in commit 3c5ca25c in the batch conversion from MD5 to SHA1 (see Homebrew/homebrew#14653) did not match the tarball's SHA1 checksum. Closes Homebrew/homebrew#14762. Signed-off-by: Adam Vandenberg --- Formula/pypy.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Formula/pypy.rb b/Formula/pypy.rb index 1ddb7e4538f..411e92bce60 100644 --- a/Formula/pypy.rb +++ b/Formula/pypy.rb @@ -2,7 +2,7 @@ require 'formula' class Distribute < Formula url 'http://pypi.python.org/packages/source/d/distribute/distribute-0.6.28.tar.gz' - sha1 '825e15724419fbdb6fe215eeea044f9181883c90' + sha1 '709bd97d46050d69865d4b588c7707768dfe6711' end class Pypy < Formula