svn commit: r319340 - in head/mail: . py-authres
Martin Wilke
miwi at FreeBSD.org
Wed May 29 05:23:14 UTC 2013
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 at 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 at 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 at 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
+ at dirrm %%PYTHON_SITELIBDIR%%/%%PORTNAME%%
More information about the svn-ports-all
mailing list