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: Tue Mar 7 16:06:14 UTC 2017
Modified Files:
pkgsrc/mail/neomutt: Makefile distinfo
Log Message:
Updated neomutt to 20170306.
2017-03-06 Richard Russon <rich%flatcap.org@localhost>
* Bug Fixes
- Get the correct buffer size under fmemopen/torify (#441)
- Use static inlines to make gcc 4.2.1 happy
- getdnsdomainname: cancel getaddrinfo_a if needed
- imap: remove useless code (#434) (origin/master)
- Fixes missing semi-colon compilation issue (#433)
* Docs
- github: added template for Pull Requests, issues and a CONTRIBUTION.md (#339)
- editorconfig: support for new files, fix whitespace (#439)
- add blocking fmemopen bug on debian to manual (#422)
* Upstream
- Increase ACCOUNT.pass field size. (closes #3921)
- SSL: Fix memory leak in subject alternative name code. (closes #3920)
- Prevent segv if open-appending to an mbox fails. (closes #3918)
- Clear out extraneous errors before SSL_connect() (see #3916)
2017-02-25 Richard Russon <rich%flatcap.org@localhost>
* Features
- Add option $show_multipart_alternative
- notmuch: Allow to use untransformed tag for color
- Use getaddrinfo_a if possible (#420)
* Bug Fixes
- handle sigint within socket operations (#411)
- Avoid browsing the remote spoolfile by setting MUTT_SELECT_MULTI attach
- notmuch: fix crash when completing tags (#395)
- Fixes missing failure return of notmuch msg open (#401)
- Fix latest Coverity issues (#387)
- Advance by the correct number of position even for unknown characters (#368)
- Release KyotoCabinet data with kcfree() (#384)
- 22 resource leaks
* Translations
- Update translations
- Update the german translation (#397)
* Docs
- fix typo in notmuch example
- remove duplicate "default" in the sidebar intro
- fix confusing description of notmuch operators (#371)
- correct spelling mistakes (#412)
* Website
- link to clang-format config in main repo (#28)
- updated list of useful programs
- update/improve list of useful programs
- sidebar_format has a single default value
- fix name of GNU Guix
- added guix distro
- added link to new afew maintainers
- add code of conduct
- add mutt-addressbook to useful
- remove unnecessary unicode non-breaking spaces
- github merging
* Build
- Enable and run unit-tests on the feature/unit-test branch
- add notmuch to default, feature
- new dbs for mutt
- master is now the main branch
- streamline builds
- fix doc generator
- add a few includes (prelude to clang-format)
- slcurses.h defines its own bool type
- travis: use container build
- add clang-format file
- Remove ugly macros and casts from crypt-gpgme.c
- fix minor reflow issues in some comments
- editorconfig: use spaces to indent in *.[ch] files
- added comment-blocks for clang-format to ignore
- fix 80 column limit, align statements
- Remove snprintf.c from EXTRA_DIST (#406)
- Kill homebrew (v)snprintf implementations, as they are C99 (#402)
- Display charset + small refactoring
- Do not cast or check returns from safe_calloc (#396)
- refactor: create a generic base64 encode/decode
- debug: remove dprint in favor of mutt_debug (#375)
- Fix dubious use macro for _() / gettext() (#376)
- Use mutt_buffer_init instead of memset
- Make the heap method and datatype a plain list
- Reverts making AliasFile into a list_t (#379)
- Turn mutt_new_* macros into inline functions
- Do not cast return values from malloc (et similia)
* Upstream
- Simplify mutt_label_complete().
- Permit tab completion of pattern expressions with ~y (labels).
- Fix the mutt_label_complete() pos parameter.
- Fix the x-label update code check location.
- Improve the label completion hash table usage.
- Adds label completion.
- Add hash_find_elem to get the hash element.
- Minor fixes to the x-label patch from David.
- Adds capability to edit x-labels inside mutt, and to sort by label.
- Allow "unsubjectrc *" to remove all patterns.
- Add subjectrx command to replace matching subjects with something else.
- Abstract the SPAM_LIST as a generic REPLACE_LIST
- Improve Reply-to vs From comparison when replying. (closes #3909)
- Fix sidebar references to the "new count" to be "unread". (closes #3908)
- Fix several alias hashtable issues.
- Add casecmp and strdup_key flags to hash_create()
- Improve error handling in mbox magic detection.
- Allow initial blank lines in local mailboxes.
- Fix minor documentation issues.
- Convert cmd_parse_search to use the uid hash. (closes #3905)
- Create a uid hash for imap. (see #3905)
- Convert HASH to be indexable by unsigned int. (see #3905)
- Fix imap server-side search to call uid2msgno() only once. (see #3905)
- Add a pattern_cache_t to speed up a few repeated matches.
- Canonicalize line endings for GPGME S/MIME encryption. (closes #3904)
- Fix build for bdb.
- Create function to free header cache data.
- Add Kyoto Cabinet support to the header cache.
- Prevent null pointer exception for h->ai_canonname
- Show SHA1 fp in interactive cert check menu.
- Fix potential cert memory leak in check_certificate_by_digest().
- Plug memory leak in weed-expired-certs code.
- Filter expired local certs for OpenSSL verification.
- Change "allow_dups" into a flag at hash creation.
To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 pkgsrc/mail/neomutt/Makefile
cvs rdiff -u -r1.17 -r1.18 pkgsrc/mail/neomutt/distinfo
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.23 pkgsrc/mail/neomutt/Makefile:1.24
--- pkgsrc/mail/neomutt/Makefile:1.23 Fri Feb 17 14:03:30 2017
+++ pkgsrc/mail/neomutt/Makefile Tue Mar 7 16:06:14 2017
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.23 2017/02/17 14:03:30 wiz Exp $
+# $NetBSD: Makefile,v 1.24 2017/03/07 16:06:14 wiz Exp $
-DISTNAME= neomutt-20170206
+DISTNAME= neomutt-20170306
CATEGORIES= mail
MASTER_SITES= ${MASTER_SITE_GITHUB:=neomutt/}
GITHUB_TAG= ${DISTNAME}
Index: pkgsrc/mail/neomutt/distinfo
diff -u pkgsrc/mail/neomutt/distinfo:1.17 pkgsrc/mail/neomutt/distinfo:1.18
--- pkgsrc/mail/neomutt/distinfo:1.17 Fri Feb 17 14:03:30 2017
+++ pkgsrc/mail/neomutt/distinfo Tue Mar 7 16:06:14 2017
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.17 2017/02/17 14:03:30 wiz Exp $
+$NetBSD: distinfo,v 1.18 2017/03/07 16:06:14 wiz Exp $
-SHA1 (neomutt-20170206.tar.gz) = ca8b1aa7e63f93b7ad08a85def88154b13e16d07
-RMD160 (neomutt-20170206.tar.gz) = e169ff3996c2d732dde34f26badf7a670546dfd1
-SHA512 (neomutt-20170206.tar.gz) = 1b00eb7c631cc639b0c325b273d792ae3ce6e8fa1aa22ad2be2ea1802594216657dfdd585417597f939e1da274353cc3a274cd4ed5007cdbd59b093dd257b4e1
-Size (neomutt-20170206.tar.gz) = 2765042 bytes
+SHA1 (neomutt-20170306.tar.gz) = e1f82bc671606650a4eaba7e2407ea3d6836507e
+RMD160 (neomutt-20170306.tar.gz) = c284f4587f8c2945f24ee086c7d2c38a1337fce2
+SHA512 (neomutt-20170306.tar.gz) = 26becf31751d9bc8fe8e856dbf68dd74a256d1bf3bce9c2a833ebd378c96259ddb43223195c30ab6a1cb4c12f6ef21d11f3cbb959bc8e1eee9d3df47a306576f
+Size (neomutt-20170306.tar.gz) = 2809932 bytes
Home |
Main Index |
Thread Index |
Old Index