From owner-svn-ports-head@freebsd.org Sun Mar 3 21:40:33 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AD189151D59F; Sun, 3 Mar 2019 21:40:33 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 54C636EC93; Sun, 3 Mar 2019 21:40:33 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 323B8226C2; Sun, 3 Mar 2019 21:40:33 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x23LeXAj091796; Sun, 3 Mar 2019 21:40:33 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x23LeWoC091792; Sun, 3 Mar 2019 21:40:32 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201903032140.x23LeWoC091792@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 3 Mar 2019 21:40:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r494517 - in head/mail/notmuch: . files X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/mail/notmuch: . files X-SVN-Commit-Revision: 494517 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 54C636EC93 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.951,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-0.999,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Mar 2019 21:40:33 -0000 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 (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