pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/mail/neomutt



Module Name:    pkgsrc
Committed By:   wiz
Date:           Fri Oct 15 11:43:54 UTC 2021

Modified Files:
        pkgsrc/mail/neomutt: Makefile PLIST distinfo
Removed Files:
        pkgsrc/mail/neomutt/patches: patch-resize.c

Log Message:
neomutt: update to 20211015.

* Security
  - Fix CVE-2021-32055
* Features
  - threads: implement the `$use_threads` feature
    https://neomutt.org/feature/use-threads
  - hooks: allow a -noregex param to folder and mbox hooks
  - mailing lists: implement list-(un)subscribe using RFC2369 headers
  - mailcap: implement x-neomutt-nowrap flag
  - pager: add `$local_date_header` option
  - imap, smtp: add support for authenticating using XOAUTH2
  - Allow `<sync-mailbox`> to fail quietly
  - imap: speed up server-side searches
  - pager: improve skip-quoted and skip-headers
  - notmuch: open database with user's configuration
  - notmuch: implement `<vfolder-window-reset>`
  - config: allow += modification of my_ variables
  - notmuch: tolerate file renames behind neomutt's back
  - pager: implement `$pager_read_delay`
  - notmuch: validate `nm_query_window_timebase`
  - notmuch: make $nm_record work in non-notmuch mailboxes
  - compose: add `$greeting` - a welcome message on top of emails
  - notmuch: show additional mail in query windows
* Changed Config
- Renamed lots of config, e.g.  `askbcc` to `ask_bcc`.
* Bug Fixes
  - imap: fix crash on external IMAP events
  - notmuch: handle missing libnotmuch version bumps
  - imap: add sanity check for qresync
  - notmuch: allow windows with 0 duration
  - index: fix index selection on `<collapse-all>`
  - imap: fix crash when sync'ing labels
  - search: fix searching by Message-Id in `<mark-message>`
  - threads: fix double sorting of threads
  - stats: don't check mailbox stats unless told
  - alias: fix crash on empty query
  - pager: honor mid-message config changes
  - mailbox: don't propagate read-only state across reopens
  - hcache: fix caching new labels in the header cache
  - crypto: set invalidity flags for gpgme/smime keys
  - notmuch: fix parsing of multiple `type=`
  - notmuch: validate $nm_default_url
  - messages: avoid unnecessary opening of messages
  - imap: fix seqset iterator when it ends in a comma
  - build: refuse to build without pcre2 when pcre2 is linked in ncurses
* Translation updates


To generate a diff of this commit:
cvs rdiff -u -r1.68 -r1.69 pkgsrc/mail/neomutt/Makefile
cvs rdiff -u -r1.22 -r1.23 pkgsrc/mail/neomutt/PLIST
cvs rdiff -u -r1.52 -r1.53 pkgsrc/mail/neomutt/distinfo
cvs rdiff -u -r1.4 -r0 pkgsrc/mail/neomutt/patches/patch-resize.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/mail/neomutt/Makefile
diff -u pkgsrc/mail/neomutt/Makefile:1.68 pkgsrc/mail/neomutt/Makefile:1.69
--- pkgsrc/mail/neomutt/Makefile:1.68   Wed Sep 29 22:11:37 2021
+++ pkgsrc/mail/neomutt/Makefile        Fri Oct 15 11:43:53 2021
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.68 2021/09/29 22:11:37 wiz Exp $
+# $NetBSD: Makefile,v 1.69 2021/10/15 11:43:53 wiz Exp $
 
-DISTNAME=              neomutt-20210205
+DISTNAME=              neomutt-20211015
 CATEGORIES=            mail
 MASTER_SITES=          ${MASTER_SITE_GITHUB:=neomutt/}
 GITHUB_TAG=            ${PKGVERSION_NOREV}

Index: pkgsrc/mail/neomutt/PLIST
diff -u pkgsrc/mail/neomutt/PLIST:1.22 pkgsrc/mail/neomutt/PLIST:1.23
--- pkgsrc/mail/neomutt/PLIST:1.22      Fri Nov 20 16:34:52 2020
+++ pkgsrc/mail/neomutt/PLIST   Fri Oct 15 11:43:53 2021
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.22 2020/11/20 16:34:52 wiz Exp $
+@comment $NetBSD: PLIST,v 1.23 2021/10/15 11:43:53 wiz Exp $
 bin/neomutt
 libexec/neomutt/pgpewrap
 ${PLIST.smime}libexec/neomutt/smime_keys
@@ -51,6 +51,8 @@ share/doc/neomutt/manual.txt
 share/doc/neomutt/mime.types
 share/doc/neomutt/mimesupport.html
 share/doc/neomutt/miscellany.html
+share/doc/neomutt/oauth2/mutt_oauth2.py
+share/doc/neomutt/oauth2/mutt_oauth2.py.README
 share/doc/neomutt/optionalfeatures.html
 share/doc/neomutt/reference.html
 share/doc/neomutt/samples/Mush.rc
@@ -93,11 +95,13 @@ share/locale/it/LC_MESSAGES/neomutt.mo
 share/locale/ja/LC_MESSAGES/neomutt.mo
 share/locale/ko/LC_MESSAGES/neomutt.mo
 share/locale/lt/LC_MESSAGES/neomutt.mo
+share/locale/nb_NO/LC_MESSAGES/neomutt.mo
 share/locale/nl/LC_MESSAGES/neomutt.mo
 share/locale/pl/LC_MESSAGES/neomutt.mo
 share/locale/pt_BR/LC_MESSAGES/neomutt.mo
 share/locale/ru/LC_MESSAGES/neomutt.mo
 share/locale/sk/LC_MESSAGES/neomutt.mo
+share/locale/sr/LC_MESSAGES/neomutt.mo
 share/locale/sv/LC_MESSAGES/neomutt.mo
 share/locale/tr/LC_MESSAGES/neomutt.mo
 share/locale/uk/LC_MESSAGES/neomutt.mo

Index: pkgsrc/mail/neomutt/distinfo
diff -u pkgsrc/mail/neomutt/distinfo:1.52 pkgsrc/mail/neomutt/distinfo:1.53
--- pkgsrc/mail/neomutt/distinfo:1.52   Thu Oct  7 14:25:28 2021
+++ pkgsrc/mail/neomutt/distinfo        Fri Oct 15 11:43:53 2021
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.52 2021/10/07 14:25:28 nia Exp $
+$NetBSD: distinfo,v 1.53 2021/10/15 11:43:53 wiz Exp $
 
-RMD160 (neomutt-20210205-20210205.tar.gz) = 0fbef0ea87a0f57bd58c7d5bb650d009ce1d4b2d
-SHA512 (neomutt-20210205-20210205.tar.gz) = 4e9faaa989eb17d1f65e835d3ad37bbda3307f9a939f351776d4cb4677d856fa998ba0eff04bf0cf344485977077695e07c55e79e0800888f646c46fbfac8554
-Size (neomutt-20210205-20210205.tar.gz) = 3476980 bytes
-SHA1 (patch-resize.c) = cfdfb09776e7604fca29d65dda817d2c28b2107c
+RMD160 (neomutt-20211015-20211015.tar.gz) = 1018ea7ab2e175b3a270a83c70ae5e3eff74d356
+SHA512 (neomutt-20211015-20211015.tar.gz) = b466fa73567b3f97c084133315dc8b35578ca369018a7beccb0e6f18324add262c591671c4fc60defd3c9623db7e95e2f631a6df10b0ef3869cf0e4a6b0eec03
+Size (neomutt-20211015-20211015.tar.gz) = 3727778 bytes



Home | Main Index | Thread Index | Old Index