Received: by mail.netbsd.org (Postfix, from userid 605) id 88F8884DC0; Mon, 22 Jun 2020 06:08:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0FB5E84D28 for ; Mon, 22 Jun 2020 06:08:37 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id QrTede09fhu8 for ; Mon, 22 Jun 2020 06:08:36 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 4494084D20 for ; Mon, 22 Jun 2020 06:08:36 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 322CDFB28; Mon, 22 Jun 2020 06:08:36 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1592806116237300" MIME-Version: 1.0 Date: Mon, 22 Jun 2020 06:08:36 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/mail/neomutt To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20200622060836.322CDFB28@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1592806116237300 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Jun 22 06:08:36 UTC 2020 Modified Files: pkgsrc/mail/neomutt: Makefile PLIST distinfo options.mk Log Message: neomutt: update to 20200619. 2020-06-19 Richard Russon * Security - Abort GnuTLS certificate check if a cert in the chain is rejected - TLS: clear data after a starttls acknowledgement - Prevent possible IMAP MITM via PREAUTH response * Features - add config operations +=/-= for number,long - Address book has a comment field - Query menu has a comment field * Contrib - sample.neomuttrc-starter: Do not echo promted password * Bug Fixes - make "news://" and "nntp://" schemes interchangeable - Fix CRLF to LF conversion in base64 decoding - Double comma in query - compose: fix redraw after history - Crash inside empty query menu - mmdf: fix creating new mailbox - mh: fix creating new mailbox - mbox: error out when an mbox/mmdf is a pipe - Fix list-reply by correct parsing of List-Post headers - Decode references according to RFC2047 - fix tagged message count - hcache: fix keylen not being considered when building the full key - sidebar: fix path comparison - Don't mess with the original pattern when running IMAP searches - Handle IMAP "NO" resps by issuing a msg instead of failing badly - imap: use the connection delimiter if provided - Memory leaks * Changed Config - `$alias_format` default changed to include `%c` comment - `$query_format` default changed to include `%e` extra info * Translations - 100% Lithuanian - 84% French - Log the translation in use * Docs - Add missing commands unbind, unmacro to man pages * Build - Check size of long using `LONG_MAX` instead of `__WORDSIZE` - Allow ./configure to not record cflags - fix out-of-tree build - Avoid locating gdbm symbols in qdbm library * Code - Refactor unsafe TAILQ returns - add window notifications - flip negative ifs - Update to latest acutest.h - test: add store tests - test: add compression tests - graphviz: email - make more opcode info available - refactor: `main_change_folder()` - refactor: `mutt_mailbox_next()` - refactor: `generate_body()` - compress: add `{min,max}_level` to ComprOps - emphasise empty loops: "// do nothing" - prex: convert `is_from()` to use regex - Refactor IMAP's search routines 2020-05-01 Richard Russon * Bug Fixes - Make sure buffers are initialized on error - fix(sidebar): use abbreviated path if possible * Translations - 100% Lithuanian * Docs - make header cache config more explicit To generate a diff of this commit: cvs rdiff -u -r1.58 -r1.59 pkgsrc/mail/neomutt/Makefile cvs rdiff -u -r1.20 -r1.21 pkgsrc/mail/neomutt/PLIST cvs rdiff -u -r1.43 -r1.44 pkgsrc/mail/neomutt/distinfo cvs rdiff -u -r1.15 -r1.16 pkgsrc/mail/neomutt/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1592806116237300 Content-Disposition: inline Content-Length: 3395 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mail/neomutt/Makefile diff -u pkgsrc/mail/neomutt/Makefile:1.58 pkgsrc/mail/neomutt/Makefile:1.59 --- pkgsrc/mail/neomutt/Makefile:1.58 Sun Apr 26 20:18:56 2020 +++ pkgsrc/mail/neomutt/Makefile Mon Jun 22 06:08:35 2020 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.58 2020/04/26 20:18:56 wiz Exp $ +# $NetBSD: Makefile,v 1.59 2020/06/22 06:08:35 wiz Exp $ -DISTNAME= neomutt-20200424 +DISTNAME= neomutt-20200619 CATEGORIES= mail MASTER_SITES= ${MASTER_SITE_GITHUB:=neomutt/} GITHUB_TAG= ${PKGVERSION_NOREV} @@ -10,7 +10,7 @@ HOMEPAGE= https://www.neomutt.org/ COMMENT= Fork of mutt with integrated community patches LICENSE= gnu-gpl-v2 OR gnu-gpl-v3 # or newer -USE_TOOLS+= msgfmt gmake +USE_TOOLS+= msgfmt gmake perl:build BUILD_DEPENDS+= gettext-tools-[0-9]*:../../devel/gettext-tools BUILD_DEPENDS+= libxslt-[0-9]*:../../textproc/libxslt Index: pkgsrc/mail/neomutt/PLIST diff -u pkgsrc/mail/neomutt/PLIST:1.20 pkgsrc/mail/neomutt/PLIST:1.21 --- pkgsrc/mail/neomutt/PLIST:1.20 Fri Apr 17 18:01:34 2020 +++ pkgsrc/mail/neomutt/PLIST Mon Jun 22 06:08:35 2020 @@ -1,7 +1,7 @@ -@comment $NetBSD: PLIST,v 1.20 2020/04/17 18:01:34 wiz Exp $ +@comment $NetBSD: PLIST,v 1.21 2020/06/22 06:08:35 wiz Exp $ bin/neomutt libexec/neomutt/pgpewrap -libexec/neomutt/smime_keys +${PLIST.smime}libexec/neomutt/smime_keys man/man1/neomutt.1 man/man1/pgpewrap_neomutt.1 man/man1/smime_keys_neomutt.1 Index: pkgsrc/mail/neomutt/distinfo diff -u pkgsrc/mail/neomutt/distinfo:1.43 pkgsrc/mail/neomutt/distinfo:1.44 --- pkgsrc/mail/neomutt/distinfo:1.43 Sun Apr 26 20:18:56 2020 +++ pkgsrc/mail/neomutt/distinfo Mon Jun 22 06:08:35 2020 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.43 2020/04/26 20:18:56 wiz Exp $ +$NetBSD: distinfo,v 1.44 2020/06/22 06:08:35 wiz Exp $ -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 (neomutt-20200619-20200619.tar.gz) = 0bedb1ff0af1faa676a03c14dc1c2b81a7bf6d3b +RMD160 (neomutt-20200619-20200619.tar.gz) = 3c740c1454c9428ea8254959cd53776207a6a630 +SHA512 (neomutt-20200619-20200619.tar.gz) = 75d8f878776c57551f7b5fbbaaeb6bb671afe79f7f02a2e44deae40d4bb8a2db4520ae1b18f8e137ad574f401b591fdee5a1e8b2d78cfb71fa428c49418360f4 +Size (neomutt-20200619-20200619.tar.gz) = 3347610 bytes SHA1 (patch-resize.c) = b747f878459950462d56e01bada2d01b49fca088 Index: pkgsrc/mail/neomutt/options.mk diff -u pkgsrc/mail/neomutt/options.mk:1.15 pkgsrc/mail/neomutt/options.mk:1.16 --- pkgsrc/mail/neomutt/options.mk:1.15 Mon Nov 11 16:26:43 2019 +++ pkgsrc/mail/neomutt/options.mk Mon Jun 22 06:08:35 2020 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.15 2019/11/11 16:26:43 ng0 Exp $ +# $NetBSD: options.mk,v 1.16 2020/06/22 06:08:35 wiz Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.neomutt PKG_OPTIONS_REQUIRED_GROUPS= display @@ -157,7 +157,6 @@ CONFIGURE_ARGS+= --disable-notmuch .if !empty(PKG_OPTIONS:Mlua) .include "../../lang/lua/buildlink3.mk" .include "../../lang/lua/tool.mk" -USE_TOOLS+= lua CONFIGURE_ARGS+= --lua CONFIGURE_ARGS+= --with-lua=${BUILDLINK_PREFIX.lua} .else --_----------=_1592806116237300--