Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 29 May 2013 05:23:13 +0000 (UTC)
From:      Martin Wilke <miwi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r319340 - in head/mail: . py-authres
Message-ID:  <201305290523.r4T5NDjH021002@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: miwi
Date: Wed May 29 05:23:13 2013
New Revision: 319340
URL: http://svnweb.freebsd.org/changeset/ports/319340

Log:
  This is python module for RFC 5451 Authentication-Results Headers
  generation and parsing.
  It also supports Authentication Results extensions:
  
  RFC 5617 DKIM/ADSP
  RFC 6008 DKIM signature identification (header.b)
  RFC 6212 Vouch By Reference (VBR)
  draft-kucherawy-dmarc-base-00 DMARC
  
  WWW: https://launchpad.net/authentication-results-python/
  
  PR:		ports/177824
  Submitted by:	Yasuhiro KIMURA <yasu@utahime.org>

Added:
  head/mail/py-authres/
  head/mail/py-authres/Makefile   (contents, props changed)
  head/mail/py-authres/distinfo   (contents, props changed)
  head/mail/py-authres/pkg-descr   (contents, props changed)
  head/mail/py-authres/pkg-plist   (contents, props changed)
Modified:
  head/mail/Makefile

Modified: head/mail/Makefile
==============================================================================
--- head/mail/Makefile	Wed May 29 04:46:28 2013	(r319339)
+++ head/mail/Makefile	Wed May 29 05:23:13 2013	(r319340)
@@ -536,6 +536,7 @@
     SUBDIR += py-Products.MailHost
     SUBDIR += py-Products.SecureMailHost
     SUBDIR += py-apolicy
+    SUBDIR += py-authres
     SUBDIR += py-cyruslib
     SUBDIR += py-libgmail
     SUBDIR += py-milter

Added: head/mail/py-authres/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/py-authres/Makefile	Wed May 29 05:23:13 2013	(r319340)
@@ -0,0 +1,32 @@
+# Created by: Yasuhiro KIMURA <yasu@utahime.org>
+# $FreeBSD$
+
+PORTNAME=	authres
+PORTVERSION=	0.600
+CATEGORIES=	mail python
+MASTER_SITES=	http://launchpad.net/authentication-results-python/trunk/0.6/+download/
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	yasu@utahime.org
+COMMENT=	Python module for RFC 5451 Authentication-Results headers
+
+LICENSE=	AL2
+
+USE_PYTHON=	2.6+
+USE_PYDISTUTILS=	yes
+
+PLIST_SUB+=	PORTNAME=${PORTNAME}
+
+FETCH_ARGS=	-pRr
+
+PORTDOCS=	CHANGES README
+
+.include <bsd.port.options.mk>
+
+post-install:
+.if ${PORT_OPTIONS:MDOCS}
+	${MKDIR} ${DOCSDIR}/
+	cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}/
+.endif
+
+.include <bsd.port.mk>

Added: head/mail/py-authres/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/py-authres/distinfo	Wed May 29 05:23:13 2013	(r319340)
@@ -0,0 +1,2 @@
+SHA256 (authres-0.600.tar.gz) = 4bfdff4a51d217c54f611edba14a63417e8563ee15a7cf3e1df9b01e32ebb48a
+SIZE (authres-0.600.tar.gz) = 16614

Added: head/mail/py-authres/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/py-authres/pkg-descr	Wed May 29 05:23:13 2013	(r319340)
@@ -0,0 +1,10 @@
+This is python module for RFC 5451 Authentication-Results Headers
+generation and parsing.
+It also supports Authentication Results extensions:
+
+RFC 5617 DKIM/ADSP
+RFC 6008 DKIM signature identification (header.b)
+RFC 6212 Vouch By Reference (VBR)
+draft-kucherawy-dmarc-base-00 DMARC
+
+WWW: https://launchpad.net/authentication-results-python/

Added: head/mail/py-authres/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/py-authres/pkg-plist	Wed May 29 05:23:13 2013	(r319340)
@@ -0,0 +1,23 @@
+%%PYTHON_SITELIBDIR%%/%%PORTNAME%%/__init__.py
+%%PYTHON_SITELIBDIR%%/%%PORTNAME%%/__init__.pyc
+%%PYTHON_SITELIBDIR%%/%%PORTNAME%%/__init__.pyo
+%%PYTHON_SITELIBDIR%%/%%PORTNAME%%/__main__.py
+%%PYTHON_SITELIBDIR%%/%%PORTNAME%%/__main__.pyc
+%%PYTHON_SITELIBDIR%%/%%PORTNAME%%/__main__.pyo
+%%PYTHON_SITELIBDIR%%/%%PORTNAME%%/core.py
+%%PYTHON_SITELIBDIR%%/%%PORTNAME%%/core.pyc
+%%PYTHON_SITELIBDIR%%/%%PORTNAME%%/core.pyo
+%%PYTHON_SITELIBDIR%%/%%PORTNAME%%/dkim_adsp.py
+%%PYTHON_SITELIBDIR%%/%%PORTNAME%%/dkim_adsp.pyc
+%%PYTHON_SITELIBDIR%%/%%PORTNAME%%/dkim_adsp.pyo
+%%PYTHON_SITELIBDIR%%/%%PORTNAME%%/dkim_b.py
+%%PYTHON_SITELIBDIR%%/%%PORTNAME%%/dkim_b.pyc
+%%PYTHON_SITELIBDIR%%/%%PORTNAME%%/dkim_b.pyo
+%%PYTHON_SITELIBDIR%%/%%PORTNAME%%/dmarc.py
+%%PYTHON_SITELIBDIR%%/%%PORTNAME%%/dmarc.pyc
+%%PYTHON_SITELIBDIR%%/%%PORTNAME%%/dmarc.pyo
+%%PYTHON_SITELIBDIR%%/%%PORTNAME%%/tests
+%%PYTHON_SITELIBDIR%%/%%PORTNAME%%/vbr.py
+%%PYTHON_SITELIBDIR%%/%%PORTNAME%%/vbr.pyc
+%%PYTHON_SITELIBDIR%%/%%PORTNAME%%/vbr.pyo
+@dirrm %%PYTHON_SITELIBDIR%%/%%PORTNAME%%



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201305290523.r4T5NDjH021002>