From owner-svn-ports-head@FreeBSD.ORG Thu May 7 00:52:24 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EE4A2A74; Thu, 7 May 2015 00:52:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 C3DC117F7; Thu, 7 May 2015 00:52:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t470qOH5051351; Thu, 7 May 2015 00:52:24 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t470qN5w051344; Thu, 7 May 2015 00:52:23 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201505070052.t470qN5w051344@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Thu, 7 May 2015 00:52:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r385586 - in head/mail: . py-dkimpy 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: Thu, 07 May 2015 00:52:25 -0000 Author: wen Date: Thu May 7 00:52:23 2015 New Revision: 385586 URL: https://svnweb.freebsd.org/changeset/ports/385586 Log: Python module that implements DKIM (DomainKeys Identified Mail) email signing and verification. It also provides helper scripts for command line signing and verification. WWW: https://launchpad.net/dkimpy PR: 198982 Submitted by: ports@caomhin.org Added: head/mail/py-dkimpy/ head/mail/py-dkimpy/Makefile (contents, props changed) head/mail/py-dkimpy/distinfo (contents, props changed) head/mail/py-dkimpy/pkg-descr (contents, props changed) Modified: head/mail/Makefile Modified: head/mail/Makefile ============================================================================== --- head/mail/Makefile Thu May 7 00:51:31 2015 (r385585) +++ head/mail/Makefile Thu May 7 00:52:23 2015 (r385586) @@ -501,6 +501,7 @@ SUBDIR += py-apolicy SUBDIR += py-authres SUBDIR += py-cyruslib + SUBDIR += py-dkimpy SUBDIR += py-libgmail SUBDIR += py-milter SUBDIR += py-ppolicy Added: head/mail/py-dkimpy/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/py-dkimpy/Makefile Thu May 7 00:52:23 2015 (r385586) @@ -0,0 +1,18 @@ +# Created by: Kevin Golding +# $FreeBSD$ + +PORTNAME= dkimpy +PORTVERSION= 0.5.4 +CATEGORIES= mail python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= ports@caomhin.org +COMMENT= Python library for DKIM email signing and verification + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dns>=0:${PORTSDIR}/dns/py-dns + +USES= python:2 +USE_PYTHON= autoplist distutils + +.include Added: head/mail/py-dkimpy/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/py-dkimpy/distinfo Thu May 7 00:52:23 2015 (r385586) @@ -0,0 +1,2 @@ +SHA256 (dkimpy-0.5.4.tar.gz) = 973b043d9b7993a15468dbef0a4c0e8d16db95a68144473d8cd141de9e6cf5a8 +SIZE (dkimpy-0.5.4.tar.gz) = 62879 Added: head/mail/py-dkimpy/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/py-dkimpy/pkg-descr Thu May 7 00:52:23 2015 (r385586) @@ -0,0 +1,5 @@ +Python module that implements DKIM (DomainKeys Identified Mail) email +signing and verification. It also provides helper scripts for command +line signing and verification. + +WWW: https://launchpad.net/dkimpy