Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 3 Mar 2019 21:40:32 +0000 (UTC)
From:      Steve Wills <swills@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r494517 - in head/mail/notmuch: . files
Message-ID:  <201903032140.x23LeWoC091792@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: swills
Date: Sun Mar  3 21:40:32 2019
New Revision: 494517
URL: https://svnweb.freebsd.org/changeset/ports/494517

Log:
  mail/notmuch: Update to 0.28.2
  
  PR:		236178
  Submitted by:	Sebastian Schwarz <seschwar@gmail.com> (maintainer)

Added:
  head/mail/notmuch/files/patch-bindings_python_docs_source_conf.py   (contents, props changed)
Modified:
  head/mail/notmuch/Makefile   (contents, props changed)
  head/mail/notmuch/distinfo   (contents, props changed)

Modified: head/mail/notmuch/Makefile
==============================================================================
--- head/mail/notmuch/Makefile	Sun Mar  3 21:38:28 2019	(r494516)
+++ head/mail/notmuch/Makefile	Sun Mar  3 21:40:32 2019	(r494517)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	notmuch
-PORTVERSION=	0.28.1
+PORTVERSION=	0.28.2
 CATEGORIES?=	mail
 MASTER_SITES=	https://notmuchmail.org/releases/
 

Modified: head/mail/notmuch/distinfo
==============================================================================
--- head/mail/notmuch/distinfo	Sun Mar  3 21:38:28 2019	(r494516)
+++ head/mail/notmuch/distinfo	Sun Mar  3 21:40:32 2019	(r494517)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1549122016
-SHA256 (notmuch-0.28.1.tar.gz) = d111e938137d5a465afc2b133d14df1fa356537d9ce752c919fe5673f3749a55
-SIZE (notmuch-0.28.1.tar.gz) = 921529
+TIMESTAMP = 1551537254
+SHA256 (notmuch-0.28.2.tar.gz) = 85a6498033451e188bcebbb3a4841e77c8d07b7fb1db89f17a74d6038f73e931
+SIZE (notmuch-0.28.2.tar.gz) = 921580

Added: head/mail/notmuch/files/patch-bindings_python_docs_source_conf.py
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/notmuch/files/patch-bindings_python_docs_source_conf.py	Sun Mar  3 21:40:32 2019	(r494517)
@@ -0,0 +1,23 @@
+--- bindings/python/docs/source/conf.py.orig	2019-03-02 23:40:44 UTC
++++ bindings/python/docs/source/conf.py
+@@ -13,7 +13,19 @@
+ 
+ import sys, os
+ 
+-from unittest.mock import Mock
++try:
++    from unittest.mock import Mock
++except ImportError:
++    class Mock(object):
++        def __init__(self, *args, **kwargs):
++            pass
++
++        def __call__(self, *args, **kwargs):
++            return Mock()
++
++        @classmethod
++        def __getattr__(self, name):
++            return Mock() if name not in ('__file__', '__path__') else '/dev/null'
+ 
+ # If extensions (or modules to document with autodoc) are in another directory,
+ # add these directories to sys.path here. If the directory is relative to the



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903032140.x23LeWoC091792>