Date: Wed, 27 Dec 2017 20:54:21 +0000 (UTC) From: "Danilo G. Baio" <dbaio@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r457423 - in head/mail: . py-alot Message-ID: <201712272054.vBRKsLxV003901@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dbaio Date: Wed Dec 27 20:54:20 2017 New Revision: 457423 URL: https://svnweb.freebsd.org/changeset/ports/457423 Log: Add mail/py-alot: Terminal MUA using Notmuch mail Alot is a terminal-based mail user agent based on the Notmuch mail indexer. It is written in Python using the Urwid toolkit and features a modular and command prompt driven interface to provide a full MUA experience as an alternative to the Emacs mode shipped with Notmuch. WWW: https://github.com/pazz/alot PR: 204982 Submitted by: Dhananjay Balan <mail@dbalan.in> Added: head/mail/py-alot/ head/mail/py-alot/Makefile (contents, props changed) head/mail/py-alot/distinfo (contents, props changed) head/mail/py-alot/pkg-descr (contents, props changed) Modified: head/mail/Makefile Modified: head/mail/Makefile ============================================================================== --- head/mail/Makefile Wed Dec 27 20:39:02 2017 (r457422) +++ head/mail/Makefile Wed Dec 27 20:54:20 2017 (r457423) @@ -531,6 +531,7 @@ SUBDIR += py-Products.SecureMailHost SUBDIR += py-afew SUBDIR += py-aiosmtpd + SUBDIR += py-alot SUBDIR += py-apolicy SUBDIR += py-authres SUBDIR += py-cyruslib Added: head/mail/py-alot/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/py-alot/Makefile Wed Dec 27 20:54:20 2017 (r457423) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= alot +PORTVERSION= 0.6 +CATEGORIES= mail python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= mail@dbalan.in +COMMENT= Terminal MUA using Notmuch mail + +LICENSE= GPLv3+ +LICENSE_FILE= ${WRKSRC}/COPYING + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}notmuch>=0.13:mail/py-notmuch@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}gpgme>0:security/py-gpgme@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}configobj>4.7.0:devel/py-configobj@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}python-magic>0:devel/py-python-magic@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}twisted>10.2.0:devel/py-twisted@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}urwidtrees>1.0:devel/py-urwidtrees@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}service_identity>=0:security/py-service_identity@${FLAVOR} + +USES= python:2.7 +USE_PYTHON= autoplist distutils +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/mail/py-alot/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/py-alot/distinfo Wed Dec 27 20:54:20 2017 (r457423) @@ -0,0 +1,3 @@ +TIMESTAMP = 1514324243 +SHA256 (alot-0.6.tar.gz) = fb5f462a2d28b56d73d3b09078739e15050b4f4ab67f70acdea296e86ddfb043 +SIZE (alot-0.6.tar.gz) = 121147 Added: head/mail/py-alot/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/py-alot/pkg-descr Wed Dec 27 20:54:20 2017 (r457423) @@ -0,0 +1,6 @@ +Alot is a terminal-based mail user agent based on the Notmuch mail indexer. +It is written in Python using the Urwid toolkit and features a modular and +command prompt driven interface to provide a full MUA experience as an +alternative to the Emacs mode shipped with Notmuch. + +WWW: https://github.com/pazz/alot
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201712272054.vBRKsLxV003901>