pkgsrc-Changes archive

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

CVS commit: pkgsrc/mail/notmuch



Module Name:    pkgsrc
Committed By:   wiz
Date:           Mon Aug 14 20:17:00 UTC 2017

Modified Files:
        pkgsrc/mail/notmuch: Makefile PLIST buildlink3.mk distinfo
Removed Files:
        pkgsrc/mail/notmuch/patches: patch-Makefile.global patch-Makefile.local
            patch-aa patch-lib_Makefile.local patch-lib_notmuch-private.h
            patch-util_Makefile.local

Log Message:
Updated notmuch to 0.25.

Notmuch 0.25 (2017-07-25)
=========================

General
-------

Add regexp searching for mid, paths, and tags.

Skip HTML tags when indexing

  In particular this avoids indexing large inline images.

Command Line Interface
----------------------

Bash completion is now installed to /usr/share by default.

Allow space as separator for keyword arguments.

Emacs
-----

Support for stashing message timestamp in show and tree views

  Invoking `notmuch-show-stash-date` with a prefix argument
  stashes the unix timestamp of the current message instead of
  the date string.

Don't use 'function' as variable name, workaround emacs bug 26406.

Library Changes
---------------

Add workaround for date parsing of bad input in older GMime

  In certain circumstances, older GMime libraries could return
  negative numbers when parsing syntactically invalid dates.

Replace deprecated functions with status returning versions

  API of notmuch_query_{search,count}_{messages,threads} has
  changed.  notmuch_query_add_tag_exclude now returns a status
  value.

Add support for building against GMime 3.0.

Rename libutil.a to libnotmuch_util.a.

libnotmuch SONAME is incremented to libnotmuch.so.5.


To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.31 pkgsrc/mail/notmuch/Makefile
cvs rdiff -u -r1.7 -r1.8 pkgsrc/mail/notmuch/PLIST
cvs rdiff -u -r1.6 -r1.7 pkgsrc/mail/notmuch/buildlink3.mk
cvs rdiff -u -r1.24 -r1.25 pkgsrc/mail/notmuch/distinfo
cvs rdiff -u -r1.1 -r0 pkgsrc/mail/notmuch/patches/patch-Makefile.global \
    pkgsrc/mail/notmuch/patches/patch-lib_notmuch-private.h \
    pkgsrc/mail/notmuch/patches/patch-util_Makefile.local
cvs rdiff -u -r1.4 -r0 pkgsrc/mail/notmuch/patches/patch-Makefile.local \
    pkgsrc/mail/notmuch/patches/patch-lib_Makefile.local
cvs rdiff -u -r1.7 -r0 pkgsrc/mail/notmuch/patches/patch-aa

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

Modified files:

Index: pkgsrc/mail/notmuch/Makefile
diff -u pkgsrc/mail/notmuch/Makefile:1.30 pkgsrc/mail/notmuch/Makefile:1.31
--- pkgsrc/mail/notmuch/Makefile:1.30   Wed Jun 14 20:24:51 2017
+++ pkgsrc/mail/notmuch/Makefile        Mon Aug 14 20:17:00 2017
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.30 2017/06/14 20:24:51 wiz Exp $
+# $NetBSD: Makefile,v 1.31 2017/08/14 20:17:00 wiz Exp $
 
-DISTNAME=      notmuch-0.24.2
+DISTNAME=      notmuch-0.25
 CATEGORIES=    mail
 MASTER_SITES=  http://notmuchmail.org/releases/
 

Index: pkgsrc/mail/notmuch/PLIST
diff -u pkgsrc/mail/notmuch/PLIST:1.7 pkgsrc/mail/notmuch/PLIST:1.8
--- pkgsrc/mail/notmuch/PLIST:1.7       Sun Oct  9 21:20:44 2016
+++ pkgsrc/mail/notmuch/PLIST   Mon Aug 14 20:17:00 2017
@@ -1,9 +1,9 @@
-@comment $NetBSD: PLIST,v 1.7 2016/10/09 21:20:44 wiz Exp $
+@comment $NetBSD: PLIST,v 1.8 2017/08/14 20:17:00 wiz Exp $
 bin/notmuch
 include/notmuch.h
 lib/libnotmuch.so
-lib/libnotmuch.so.4
-lib/libnotmuch.so.4.4.0
+lib/libnotmuch.so.5
+lib/libnotmuch.so.5.0.0
 man/man1/notmuch-address.1
 man/man1/notmuch-compact.1
 man/man1/notmuch-config.1
@@ -58,4 +58,4 @@ ${PLIST.emacs}share/emacs/site-lisp/notm
 ${PLIST.emacs}share/emacs/site-lisp/notmuch-wash.elc
 ${PLIST.emacs}share/emacs/site-lisp/notmuch.el
 ${PLIST.emacs}share/emacs/site-lisp/notmuch.elc
-share/examples/notmuch/zsh/functions/Completion/Unix/_notmuch
+share/zsh/functions/Completion/Unix/_notmuch

Index: pkgsrc/mail/notmuch/buildlink3.mk
diff -u pkgsrc/mail/notmuch/buildlink3.mk:1.6 pkgsrc/mail/notmuch/buildlink3.mk:1.7
--- pkgsrc/mail/notmuch/buildlink3.mk:1.6       Fri Mar 31 10:32:15 2017
+++ pkgsrc/mail/notmuch/buildlink3.mk   Mon Aug 14 20:17:00 2017
@@ -1,4 +1,4 @@
-# $NetBSD: buildlink3.mk,v 1.6 2017/03/31 10:32:15 wiz Exp $
+# $NetBSD: buildlink3.mk,v 1.7 2017/08/14 20:17:00 wiz Exp $
 
 BUILDLINK_TREE+=       notmuch
 
@@ -6,7 +6,7 @@ BUILDLINK_TREE+=        notmuch
 NOTMUCH_BUILDLINK3_MK:=
 
 BUILDLINK_API_DEPENDS.notmuch+=        notmuch>=0.16
-BUILDLINK_ABI_DEPENDS.notmuch+=        notmuch>=0.24nb1
+BUILDLINK_ABI_DEPENDS.notmuch+=        notmuch>=0.25
 BUILDLINK_PKGSRCDIR.notmuch?=  ../../mail/notmuch
 
 .include "../../mail/gmime/buildlink3.mk"

Index: pkgsrc/mail/notmuch/distinfo
diff -u pkgsrc/mail/notmuch/distinfo:1.24 pkgsrc/mail/notmuch/distinfo:1.25
--- pkgsrc/mail/notmuch/distinfo:1.24   Wed Jun 14 20:24:51 2017
+++ pkgsrc/mail/notmuch/distinfo        Mon Aug 14 20:17:00 2017
@@ -1,12 +1,6 @@
-$NetBSD: distinfo,v 1.24 2017/06/14 20:24:51 wiz Exp $
+$NetBSD: distinfo,v 1.25 2017/08/14 20:17:00 wiz Exp $
 
-SHA1 (notmuch-0.24.2.tar.gz) = 4adbc4dc6f2b20c3afd400a9168f1dc6887ef0f5
-RMD160 (notmuch-0.24.2.tar.gz) = fe851236764b3d933446d65b8facb45c58c54cef
-SHA512 (notmuch-0.24.2.tar.gz) = fcdc4ad5a65c57dd3077d93aeb384378f8dee105362fa8c2755daf14bbeb5376f8d1580fd79c8bd8e8d2d88cd44846ca9972b2f942133a447eb99d08ef9056dc
-Size (notmuch-0.24.2.tar.gz) = 709272 bytes
-SHA1 (patch-Makefile.global) = 848213d8914c59d2786c74eee71df5c7599c17ec
-SHA1 (patch-Makefile.local) = e5a11e3fd7470f745fccb3086fb864c2068f55a7
-SHA1 (patch-aa) = 90414224b80703587d211c8b56bfba0cbe1377b6
-SHA1 (patch-lib_Makefile.local) = 84ebfe1a57647e590f923d727d206b5f4687e1ce
-SHA1 (patch-lib_notmuch-private.h) = 24e608eb28c682e5f47c98c74f1bb3c2d62ac092
-SHA1 (patch-util_Makefile.local) = 1dcf152c0aba329e5e309c98042bd14f9a733714
+SHA1 (notmuch-0.25.tar.gz) = ea56f3f9ec2ab2f00b114d61fe8573c75ca52661
+RMD160 (notmuch-0.25.tar.gz) = 75a3c6e42a89c9f575799f4319f485377a659901
+SHA512 (notmuch-0.25.tar.gz) = 5f4961818c8c0350e3fbbedd86f407a55fecf211971003a770d99ea2db89bb6b98c2294e114d6abff4d40985f506b7f4b52736a7ee5c78390eb4f2363a65c6f5
+Size (notmuch-0.25.tar.gz) = 882093 bytes



Home | Main Index | Thread Index | Old Index