aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorPeter Aronoff2013-10-25 11:53:39 -0400
committerAdam Vandenberg2013-10-25 09:20:42 -0700
commitf56a3bd86c9d35014fff080bee82b42024532510 (patch)
treed939704f764084ea92be80251a132bc87ed4dce3 /Library/Formula
parentdde0fbd8349594b036666eea02a075b6668003dc (diff)
downloadhomebrew-f56a3bd86c9d35014fff080bee82b42024532510.tar.bz2
mutt 1.5.22
The update required a few changes: + Two Debian patches had moved, so I updated their URLs. + The sidebar patch no longer applies. Until it's updated, if it ever is, I removed the option. That means the formula no longer needs to check if sidebar and ignore-thread are installed together, so I removed the block of code that checks for that edge condition. Closes #23590. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/mutt.rb16
1 files changed, 4 insertions, 12 deletions
diff --git a/Library/Formula/mutt.rb b/Library/Formula/mutt.rb
index d4999f997..de35be98b 100644
--- a/Library/Formula/mutt.rb
+++ b/Library/Formula/mutt.rb
@@ -2,8 +2,8 @@ require 'formula'
class Mutt < Formula
homepage 'http://www.mutt.org/'
- url 'ftp://ftp.mutt.org/mutt/devel/mutt-1.5.21.tar.gz'
- sha1 'a8475f2618ce5d5d33bff85c0affdf21ab1d76b9'
+ url 'ftp://ftp.mutt.org/mutt/devel/mutt-1.5.22.tar.gz'
+ sha1 '728a114cb3a44df373dbf1292fc34dd8321057dc'
head do
url 'http://dev.mutt.org/hg/mutt#HEAD', :using => :hg
@@ -17,7 +17,6 @@ class Mutt < Formula
end
option "with-debug", "Build with debug option enabled"
- option "with-sidebar-patch", "Apply sidebar (folder list) patch" unless build.head?
option "with-trash-patch", "Apply trash folder patch"
option "with-slang", "Build against slang instead of ncurses"
option "with-ignore-thread-patch", "Apply ignore-thread patch"
@@ -29,22 +28,15 @@ class Mutt < Formula
def patches
urls = [
- ['with-sidebar-patch', 'http://lunar-linux.org/~tchan/mutt/patch-1.5.21.sidebar.20130219.txt'],
- ['with-trash-patch', 'http://patch-tracker.debian.org/patch/series/dl/mutt/1.5.21-6.2/features/trash-folder'],
+ ['with-trash-patch', 'http://patch-tracker.debian.org/patch/series/dl/mutt/1.5.21-6.4/features/trash-folder'],
# original source for this went missing, patch sourced from Arch at
# https://aur.archlinux.org/packages/mutt-ignore-thread/
['with-ignore-thread-patch', 'https://gist.github.com/mistydemeo/5522742/raw/1439cc157ab673dc8061784829eea267cd736624/ignore-thread-1.5.21.patch'],
['with-pgp-verbose-mime-patch',
- 'http://patch-tracker.debian.org/patch/series/dl/mutt/1.5.21-6.2/features-old/patch-1.5.4.vk.pgp_verbose_mime'],
+ 'http://patch-tracker.debian.org/patch/series/dl/mutt/1.5.21-6.4/features-old/patch-1.5.4.vk.pgp_verbose_mime'],
['with-confirm-attachment-patch', 'https://gist.github.com/tlvince/5741641/raw/c926ca307dc97727c2bd88a84dcb0d7ac3bb4bf5/mutt-attach.patch'],
]
- if build.with? "ignore-thread-patch" and build.with? "sidebar-patch"
- puts "\n"
- onoe "The ignore-thread-patch and sidebar-patch options are mutually exlusive. Please pick one"
- exit 1
- end
-
p = []
urls.each do |u|
p << u[1] if build.include? u[0]