From owner-svn-ports-head@freebsd.org Sun Nov 19 21:48:21 2017 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 779B7DBF407; Sun, 19 Nov 2017 21:48:21 +0000 (UTC) (envelope-from yuri@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 4F74C6503E; Sun, 19 Nov 2017 21:48:21 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vAJLmKvr075475; Sun, 19 Nov 2017 21:48:20 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAJLmJJn075471; Sun, 19 Nov 2017 21:48:19 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201711192148.vAJLmJJn075471@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 19 Nov 2017 21:48:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r454503 - in head/mail: . py-pyzmail X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/mail: . py-pyzmail X-SVN-Commit-Revision: 454503 X-SVN-Commit-Repository: ports 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.25 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: Sun, 19 Nov 2017 21:48:21 -0000 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 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