Index: head/mail/notmuch/Makefile =================================================================== --- head/mail/notmuch/Makefile (revision 494516) +++ head/mail/notmuch/Makefile (revision 494517) @@ -1,84 +1,84 @@ # Created by: DarwinSurvivor # $FreeBSD$ PORTNAME= notmuch -PORTVERSION= 0.28.1 +PORTVERSION= 0.28.2 CATEGORIES?= mail MASTER_SITES= https://notmuchmail.org/releases/ MAINTAINER= seschwar@gmail.com COMMENT?= Thread-based email index, search and tagging application LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/${WRKSRC_SUBDIR:C/[^\/]+/../g}/COPYING-GPL-3 .ifndef MASTERDIR LIB_DEPENDS= libgmime-2.6.so:mail/gmime26 \ libxapian.so:databases/xapian-core \ libtalloc.so:devel/talloc TEST_DEPENDS= bash:shells/bash \ emacs:editors/emacs@nox \ dtach:misc/dtach \ gdate:sysutils/coreutils \ gbase64:sysutils/coreutils \ gsed:textproc/gsed \ gsha256sum:sysutils/coreutils \ gpg:security/gnupg \ gwc:sysutils/coreutils \ ${LOCALBASE}/bin/gdb:devel/gdb USES= compiler:c++11-lang gmake gnome pkgconfig python:build,test USE_GNOME= glib20 USE_LDCONFIG= yes HAS_CONFIGURE= yes CONFIGURE_ARGS= --infodir=${PREFIX}/${INFO_PATH} \ --mandir=${MANPREFIX}/man \ --prefix=${PREFIX} \ --with-bash-completion \ --with-retry-lock \ --with-zsh-completion \ --without-emacs CONFIGURE_ENV+= PYTHON=${PYTHON_CMD} TEST_ENV+= NOTMUCH_SKIP_TESTS="basic.12 count.14 insert.2[89] insert.3[0-9] message-property.6 regexp-query.21" \ TEST_CFLAGS="-g -O0 -I${LOCALBASE}/include -L${LOCALBASE}/lib" \ TEST_GDB=${LOCALBASE}/bin/gdb \ V=1 TEST_TARGET= test .endif PATCH_WRKSRC= ${WRKSRC}/${WRKSRC_SUBDIR:C/[^\/]+/../g} PKGDIR= ${.CURDIR} .ifndef MASTERDIR OPTIONS_DEFINE= DOXYGEN MANPAGES OPTIONS_DEFAULT= MANPAGES OPTIONS_SUB= yes DOXYGEN_BUILD_DEPENDS= doxygen:devel/doxygen DOXYGEN_CONFIGURE_WITH= api-docs MANPAGES_BUILD_DEPENDS= sphinx-build:textproc/py-sphinx MANPAGES_CONFIGURE_WITH= docs # Install bash completions without incurring a dependcy on # shells/bash-completion. Also avoid automatic installation of # info pages on FreeBSD 10. post-configure: ${REINPLACE_CMD} \ -e '/^BASH_ABSOLUTE[[:blank:]]*=/s|=.*|=${LOCALBASE}/bin/bash|' \ -e '/^HAVE_BASH[[:blank:]]*=/s/=.*/=1/' \ -e '/^HAVE_INSTALL_INFO[[:blank:]]*=/s/=.*/=0/' \ -e '/^HAVE_MAKEINFO[[:blank:]]*=/s/=.*/=0/' \ -e '/^WITH_BASH[[:blank:]]*=/s/=.*/=1/' \ ${WRKSRC}/Makefile.config post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/notmuch ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libnotmuch.so.?*.?*.?* # keep poudriere testport happy post-install-MANPAGES-on: @${RM} ${STAGEDIR}${MANPREFIX}/man/man1/notmuch-emacs-mua.1.gz .endif .include Index: head/mail/notmuch/distinfo =================================================================== --- head/mail/notmuch/distinfo (revision 494516) +++ head/mail/notmuch/distinfo (revision 494517) @@ -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 Index: head/mail/notmuch/files/patch-bindings_python_docs_source_conf.py =================================================================== --- head/mail/notmuch/files/patch-bindings_python_docs_source_conf.py (nonexistent) +++ head/mail/notmuch/files/patch-bindings_python_docs_source_conf.py (revision 494517) @@ -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 Property changes on: head/mail/notmuch/files/patch-bindings_python_docs_source_conf.py ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property