svn commit: r477131 - in head/mail: . py-managesieve3

Fukang Chen loader at FreeBSD.org
Tue Aug 14 01:18:56 UTC 2018


Author: loader (doc committer)
Date: Tue Aug 14 01:18:54 2018
New Revision: 477131
URL: https://svnweb.freebsd.org/changeset/ports/477131

Log:
  [NEW PORT]: mail/managesieve3: Implements an RFC-5804 Manage Sieve client
  
  A pure Python client implementation of "A Protocol for Remotely
  Managing Sieve Scripts", as defined in RFC-5804.
  
  WWW: https://bitbucket.org/ericvsmith/managesieve3
  
  Reviewed by:	koobs, mat
  Approved by:	koobs (mentor)
  Differential Revision:	https://reviews.freebsd.org/D16699

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

Modified: head/mail/Makefile
==============================================================================
--- head/mail/Makefile	Tue Aug 14 01:16:31 2018	(r477130)
+++ head/mail/Makefile	Tue Aug 14 01:18:54 2018	(r477131)
@@ -540,6 +540,7 @@
     SUBDIR += py-flufl.bounce
     SUBDIR += py-fuglu
     SUBDIR += py-libgmail
+    SUBDIR += py-managesieve3
     SUBDIR += py-milter
     SUBDIR += py-notmuch
     SUBDIR += py-ppolicy

Added: head/mail/py-managesieve3/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/py-managesieve3/Makefile	Tue Aug 14 01:18:54 2018	(r477131)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME=	managesieve3
+PORTVERSION=	1.1
+CATEGORIES=	mail python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	loader at FreeBSD.org
+COMMENT=	Implements an RFC-5804 Manage Sieve client
+
+LICENSE=	APACHE20
+LICENSE_FILE=	${WRKSRC}/LICENSE.txt
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+NO_ARCH=	yes
+
+do-test:
+	@cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test
+
+.include <bsd.port.mk>

Added: head/mail/py-managesieve3/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/py-managesieve3/distinfo	Tue Aug 14 01:18:54 2018	(r477131)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1534131565
+SHA256 (managesieve3-1.1.tar.gz) = 7c43f23d8d0c83b6aaae93a0f661cef9c4657bbc90cc7c9cf37e775150c021ab
+SIZE (managesieve3-1.1.tar.gz) = 15106

Added: head/mail/py-managesieve3/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/py-managesieve3/pkg-descr	Tue Aug 14 01:18:54 2018	(r477131)
@@ -0,0 +1,4 @@
+A pure Python client implementation of "A Protocol for Remotely
+Managing Sieve Scripts", as defined in RFC-5804.
+
+WWW: https://bitbucket.org/ericvsmith/managesieve3


More information about the svn-ports-head mailing list