svn commit: r438172 - in head/mail/mutt: . files
Adam Weinberger
adamw at FreeBSD.org
Mon Apr 10 14:51:52 UTC 2017
Author: adamw
Date: Mon Apr 10 14:51:50 2017
New Revision: 438172
URL: https://svnweb.freebsd.org/changeset/ports/438172
Log:
Regenerate the maildir-mtime-nntp patch. It was being fuzzy applied
in the wrong place previously. PORTREVISION bump for this.
Submitted by: dereks lifeofadishwasher com (maintainer)
Differential Revision: https://reviews.freebsd.org/D10334
Modified:
head/mail/mutt/Makefile
head/mail/mutt/files/extra-patch-maildir-mtime-nntp
Modified: head/mail/mutt/Makefile
==============================================================================
--- head/mail/mutt/Makefile Mon Apr 10 14:41:32 2017 (r438171)
+++ head/mail/mutt/Makefile Mon Apr 10 14:51:50 2017 (r438172)
@@ -3,7 +3,7 @@
PORTNAME= mutt
PORTVERSION= 1.8.0
-PORTREVISION?= 1
+PORTREVISION?= 2
CATEGORIES+= mail ipv6
MASTER_SITES= ftp://ftp.mutt.org/pub/mutt/ \
ftp://ftp.fu-berlin.de/pub/unix/mail/mutt/ \
Modified: head/mail/mutt/files/extra-patch-maildir-mtime-nntp
==============================================================================
--- head/mail/mutt/files/extra-patch-maildir-mtime-nntp Mon Apr 10 14:41:32 2017 (r438171)
+++ head/mail/mutt/files/extra-patch-maildir-mtime-nntp Mon Apr 10 14:51:50 2017 (r438172)
@@ -1,16 +1,19 @@
---- PATCHES Dec 2002 17:44:54 -0000 3.6
-+++ PATCHES Feb 2004 13:19:42 -0000
+--- PATCHES.orig 2017-04-09 21:00:46 UTC
++++ PATCHES
@@ -0,0 +1 @@
+patch-1.5.7.ust.maildir-mtime.2
---- browser.c.orig Tue Feb 8 10:29:57 2005
-+++ browser.c Tue Feb 8 10:29:58 2005
-@@ -31,4 +31,5 @@
+--- browser.c.orig 2017-04-09 20:49:44 UTC
++++ browser.c
+@@ -35,6 +35,7 @@
+ #ifdef USE_NNTP
#include "nntp.h"
#endif
+#include "mx.h"
#include <stdlib.h>
-@@ -473,4 +474,19 @@
+ #include <dirent.h>
+@@ -545,6 +546,21 @@ static void init_state (struct browser_s
+ menu->data = state->entry;
}
+static void check_maildir_times (BUFFY *buf, struct stat *st)
@@ -30,15 +33,20 @@
+
/* get list of all files/newsgroups with mask */
static int examine_directory (MUTTMENU *menu, struct browser_state *state,
-@@ -562,4 +578,5 @@
+ char *d, const char *prefix)
+@@ -634,6 +650,7 @@ static int examine_directory (MUTTMENU *
+ tmp = Incoming;
while (tmp && mutt_strcmp (buffer, tmp->path))
tmp = tmp->next;
+ check_maildir_times (tmp, &s);
- add_folder (menu, state, de->d_name, &s, NULL, (tmp) ? tmp->new : 0);
- }
-@@ -637,4 +654,5 @@
- mutt_pretty_mailbox (buffer);
+ if (tmp && Context &&
+ !mutt_strcmp (tmp->realpath, Context->realpath))
+ {
+@@ -737,6 +754,7 @@ static int examine_mailboxes (MUTTMENU *
+ strfcpy (buffer, NONULL(tmp->path), sizeof (buffer));
+ mutt_pretty_mailbox (buffer, sizeof (buffer));
+ check_maildir_times (tmp, &s);
- add_folder (menu, state, buffer, &s, NULL, tmp->new);
+ add_folder (menu, state, buffer, &s, tmp, NULL);
}
+ while ((tmp = tmp->next));
More information about the svn-ports-all
mailing list