aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mutt.rb
diff options
context:
space:
mode:
authorDmitry Nedospasov2011-03-14 16:47:30 +0100
committerAdam Vandenberg2011-06-09 10:09:04 -0700
commitbb341ab2d69be22b357f92bf2c01db12aa34ff84 (patch)
tree0b26a48ec3510a6f2099d7afd2d03e6818cd5999 /Library/Formula/mutt.rb
parentc4edb457d8c9dba13d68e4719b9cf736c09eeec2 (diff)
downloadhomebrew-bb341ab2d69be22b357f92bf2c01db12aa34ff84.tar.bz2
mutt: update patches for 1.5.21
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/mutt.rb')
-rw-r--r--Library/Formula/mutt.rb9
1 files changed, 4 insertions, 5 deletions
diff --git a/Library/Formula/mutt.rb b/Library/Formula/mutt.rb
index 5667b20d9..ebb589bf1 100644
--- a/Library/Formula/mutt.rb
+++ b/Library/Formula/mutt.rb
@@ -9,23 +9,22 @@ class Mutt < Formula
def options
[
- ['--sidebar-patch', "Apply sidebar (folder list) patch"],
['--enable-debug', "Build with debug option enabled"],
+ ['--sidebar-patch', "Apply sidebar (folder list) patch"],
['--trash-patch', "Apply trash folder patch"]
]
end
def patches
# Fix unsubscribe malformed folder
- # See: http://dev.mutt.org/trac/ticket/3389
- p = [ 'http://dev.mutt.org/hg/mutt/raw-rev/25e46aad362b' ]
+ p = Array.new
if ARGV.include? '--sidebar-patch'
- p << 'http://lunar-linux.org/~tchan/mutt/patch-1.5.20.sidebar.20090619.txt'
+ p << 'https://raw.github.com/nedos/mutt-sidebar-patch/master/mutt-sidebar.patch'
end
if ARGV.include? '--trash-patch'
- p << 'http://trac.macports.org/export/69644/trunk/dports/mail/mutt-devel/files/patch-1.5.20.bk.trash_folder-purge_message.1'
+ p << 'http://patch-tracker.debian.org/patch/series/dl/mutt/1.5.21-5/features/trash-folder'
end
return p