summaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2020-04-26 20:18:56 +0000
committerwiz <wiz@pkgsrc.org>2020-04-26 20:18:56 +0000
commitc6a2a2ec2dba8e1b0fa9fc841a80001340bcb7c1 (patch)
tree44b7f111bc556dd65d29526bd4068189cb400408 /mail
parent4a6d1fe0f5c2362dfc603dab99e7dc219ad8532d (diff)
downloadpkgsrc-c6a2a2ec2dba8e1b0fa9fc841a80001340bcb7c1.tar.gz
neomutt: update to 20200424.
2020-04-24 Richard Russon <rich@flatcap.org> * Bug Fixes -Fix history corruption -Handle pretty much anything in a URL query part -Correctly parse escaped characters in header phrases -Fix crash reading received header -Fix sidebar indentation -Avoid crashing on failure to parse an IMAP mailbox -Maildir: handle deleted emails correctly -Ensure OP_NULL is always first * Translations -100% Czech * Build -cirrus: enable pcre2, make pkgconf a special case -Fix finding pcre2 w/o pkgconf -build: tdb.h needs size_t, bring it in with stddef.h
Diffstat (limited to 'mail')
-rw-r--r--mail/neomutt/Makefile4
-rw-r--r--mail/neomutt/distinfo11
-rw-r--r--mail/neomutt/patches/patch-opcodes.h29
3 files changed, 7 insertions, 37 deletions
diff --git a/mail/neomutt/Makefile b/mail/neomutt/Makefile
index 82088231bcf..47cde5edffb 100644
--- a/mail/neomutt/Makefile
+++ b/mail/neomutt/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.57 2020/04/17 18:01:34 wiz Exp $
+# $NetBSD: Makefile,v 1.58 2020/04/26 20:18:56 wiz Exp $
-DISTNAME= neomutt-20200417
+DISTNAME= neomutt-20200424
CATEGORIES= mail
MASTER_SITES= ${MASTER_SITE_GITHUB:=neomutt/}
GITHUB_TAG= ${PKGVERSION_NOREV}
diff --git a/mail/neomutt/distinfo b/mail/neomutt/distinfo
index b55fcd04c46..f31581171ba 100644
--- a/mail/neomutt/distinfo
+++ b/mail/neomutt/distinfo
@@ -1,8 +1,7 @@
-$NetBSD: distinfo,v 1.42 2020/04/17 18:01:34 wiz Exp $
+$NetBSD: distinfo,v 1.43 2020/04/26 20:18:56 wiz Exp $
-SHA1 (neomutt-20200417-20200417.tar.gz) = cefa7bdcacce0f38674f92c5f6aa3faad18f34c8
-RMD160 (neomutt-20200417-20200417.tar.gz) = 2fdd21070f63fa3f5b1e8e1ea392562cc6faba31
-SHA512 (neomutt-20200417-20200417.tar.gz) = d23c2d72b6c783246e799fb14f9d2c6484580123766a33784fee065bdb23066a1178fd1ab0e1cc8d7f90d39a2a04950dcc70ed1a1d405676472fdc6e819dac17
-Size (neomutt-20200417-20200417.tar.gz) = 3322435 bytes
-SHA1 (patch-opcodes.h) = 06299d4cfe14ea370cd3d18f1ae597e3e195da56
+SHA1 (neomutt-20200424-20200424.tar.gz) = c22cdd0361c628b42809d651883692c7c783665e
+RMD160 (neomutt-20200424-20200424.tar.gz) = e7ea0488858b0809f7b69c7f63dcc8c2ee08302a
+SHA512 (neomutt-20200424-20200424.tar.gz) = 83569b304faf851a2efff332d237b0a35dc11b204740dbf828bfa662e157850b975536f25fd2a25057f16c128e9c9f0ca883df9c1d26e45c0608b424ec8d2ef9
+Size (neomutt-20200424-20200424.tar.gz) = 3323821 bytes
SHA1 (patch-resize.c) = b747f878459950462d56e01bada2d01b49fca088
diff --git a/mail/neomutt/patches/patch-opcodes.h b/mail/neomutt/patches/patch-opcodes.h
deleted file mode 100644
index 3e0a1e288bf..00000000000
--- a/mail/neomutt/patches/patch-opcodes.h
+++ /dev/null
@@ -1,29 +0,0 @@
-$NetBSD: patch-opcodes.h,v 1.1 2020/04/17 18:01:34 wiz Exp $
-
-ensure OP_NULL is always first
-
-A recent refactoring altered the ordering of the OPs when autocrypt was
-enabled. This mean that OP_NULL wasn't 0 any more.
-
-Fixes: #2268
-
-https://github.com/neomutt/neomutt/commit/9e7537caddb9c6adc720bb3322a7512cf51ab025
-
---- opcodes.h.orig 2020-04-17 11:53:50.000000000 +0000
-+++ opcodes.h
-@@ -37,7 +37,6 @@
- #endif
-
- #define OPS_CORE(_fmt) \
-- _fmt(OP_NULL, N_("null operation")) \
- _fmt(OP_ATTACH_COLLAPSE, N_("toggle display of subparts")) \
- _fmt(OP_ATTACH_VIEW_MAILCAP, N_("force viewing of attachment using mailcap")) \
- _fmt(OP_ATTACH_VIEW_TEXT, N_("view attachment as text")) \
-@@ -317,6 +316,7 @@
- _fmt(OP_COMPOSE_SMIME_MENU, N_("show S/MIME options")) \
-
- #define OPS(_fmt) \
-+ _fmt(OP_NULL, N_("null operation")) \
- OPS_AUTOCRYPT(_fmt) \
- OPS_CORE(_fmt) \
- OPS_SIDEBAR(_fmt) \