From owner-svn-ports-head@freebsd.org Fri Dec 11 14:29:42 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ECFC99D8B3F; Fri, 11 Dec 2015 14:29:42 +0000 (UTC) (envelope-from miwi@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 mx1.freebsd.org (Postfix) with ESMTPS id A18B91B93; Fri, 11 Dec 2015 14:29:42 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBBETfpn086247; Fri, 11 Dec 2015 14:29:41 GMT (envelope-from miwi@FreeBSD.org) Received: (from miwi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBBETfqq086243; Fri, 11 Dec 2015 14:29:41 GMT (envelope-from miwi@FreeBSD.org) Message-Id: <201512111429.tBBETfqq086243@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: miwi set sender to miwi@FreeBSD.org using -f From: Martin Wilke Date: Fri, 11 Dec 2015 14:29:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r403540 - in head/mail: . py-notmuch X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 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: Fri, 11 Dec 2015 14:29:43 -0000 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 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