Date: Fri, 11 Dec 2015 14:29:41 +0000 (UTC) From: Martin Wilke <miwi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r403540 - in head/mail: . py-notmuch Message-ID: <201512111429.tBBETfqq086243@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: miwi Date: Fri Dec 11 14:29:41 2015 New Revision: 403540 URL: https://svnweb.freebsd.org/changeset/ports/403540 Log: Python binding of the notmuch mail search and indexing library. WWW: http://notmuchmail.org PR: 204981 Submitted by: geier@lostpackets.de Approved by: mat (mentor) Differential Revision: D4510 Added: head/mail/py-notmuch/ head/mail/py-notmuch/Makefile (contents, props changed) head/mail/py-notmuch/distinfo (contents, props changed) head/mail/py-notmuch/pkg-descr (contents, props changed) Modified: head/mail/Makefile Modified: head/mail/Makefile ============================================================================== --- head/mail/Makefile Fri Dec 11 14:26:16 2015 (r403539) +++ head/mail/Makefile Fri Dec 11 14:29:41 2015 (r403540) @@ -509,6 +509,7 @@ SUBDIR += py-dkimpy SUBDIR += py-libgmail SUBDIR += py-milter + SUBDIR += py-notmuch SUBDIR += py-ppolicy SUBDIR += py-spambayes SUBDIR += py-spf Added: head/mail/py-notmuch/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/py-notmuch/Makefile Fri Dec 11 14:29:41 2015 (r403540) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= notmuch +PORTVERSION= 0.20.2 +CATEGORIES= mail python +MASTER_SITES= http://notmuchmail.org/releases/ +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= geier@lostpackets.de +COMMENT= Python binding of the notmuch mail search and indexing library + +LICENSE= GPLv3 # or later +LICENSE_FILE= ${WRKSRC}/../../COPYING-GPL-3 + +LIB_DEPENDS= libnotmuch.so:${PORTSDIR}/mail/notmuch + +WRKSRC_SUBDIR= bindings/python + +USES= python +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +MAKE_ENV+= PYTHONCMD=${PYTHON_CMD} + +.include <bsd.port.mk> Added: head/mail/py-notmuch/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/py-notmuch/distinfo Fri Dec 11 14:29:41 2015 (r403540) @@ -0,0 +1,2 @@ +SHA256 (notmuch-0.20.2.tar.gz) = f741a26345bff389fd8a4a119c4174c6585730f71844809583a54ef2a865adec +SIZE (notmuch-0.20.2.tar.gz) = 652945 Added: head/mail/py-notmuch/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/py-notmuch/pkg-descr Fri Dec 11 14:29:41 2015 (r403540) @@ -0,0 +1,3 @@ +Python binding of the notmuch mail search and indexing library. + +WWW: http://notmuchmail.org
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512111429.tBBETfqq086243>