Date: Sun, 19 Nov 2017 21:48:19 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r454503 - in head/mail: . py-pyzmail Message-ID: <201711192148.vAJLmJJn075471@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Sun Nov 19 21:48:19 2017 New Revision: 454503 URL: https://svnweb.freebsd.org/changeset/ports/454503 Log: New port: mail/py-pyzmail: Easy mail library to parse, compose and send emails Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D13151 Added: head/mail/py-pyzmail/ head/mail/py-pyzmail/Makefile (contents, props changed) head/mail/py-pyzmail/distinfo (contents, props changed) head/mail/py-pyzmail/pkg-descr (contents, props changed) Modified: head/mail/Makefile Modified: head/mail/Makefile ============================================================================== --- head/mail/Makefile Sun Nov 19 21:34:09 2017 (r454502) +++ head/mail/Makefile Sun Nov 19 21:48:19 2017 (r454503) @@ -545,6 +545,7 @@ SUBDIR += py-pymailq SUBDIR += py-pyspf SUBDIR += py-spambayes + SUBDIR += py-pyzmail SUBDIR += py-zope.sendmail SUBDIR += pymsgauth SUBDIR += pysieved Added: head/mail/py-pyzmail/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/py-pyzmail/Makefile Sun Nov 19 21:48:19 2017 (r454503) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= pyzmail +DISTVERSION= 1.0.3 +CATEGORIES= mail python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Easy mail library to parse, compose and send emails + +LICENSE= LGPL3 +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +USES= python +USE_PYTHON= autoplist distutils + +NO_BUILD= yes +NO_ARCH= yes + +.include <bsd.port.mk> Added: head/mail/py-pyzmail/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/py-pyzmail/distinfo Sun Nov 19 21:48:19 2017 (r454503) @@ -0,0 +1,3 @@ +TIMESTAMP = 1511056643 +SHA256 (pyzmail-1.0.3.tar.gz) = a74e0df4cfdfa20307dedb795be149f55982d9db0c2e80ceeb16f2ccd16a6587 +SIZE (pyzmail-1.0.3.tar.gz) = 57647 Added: head/mail/py-pyzmail/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/py-pyzmail/pkg-descr Sun Nov 19 21:48:19 2017 (r454503) @@ -0,0 +1,7 @@ +pyzmail is a high level mail library for Python 2.x & 3.x. It provides functions +and classes that help to parse, compose and send emails. pyzmail exists because +their is no reasons that handling mails with Python would be more difficult than +with Outlook or Thunderbird. pyzmail hides the difficulties of managing the MIME +structure and of the encoding/decoding for internationalized emails. + +WWW: http://www.magiksys.net/pyzmail
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201711192148.vAJLmJJn075471>