1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

[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
This commit is contained in:
Fukang Chen 2018-08-14 01:18:54 +00:00
parent f52973261a
commit c3b1e04aaf
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=477131
4 changed files with 31 additions and 0 deletions

View File

@ -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

View File

@ -0,0 +1,23 @@
# $FreeBSD$
PORTNAME= managesieve3
PORTVERSION= 1.1
CATEGORIES= mail python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= loader@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>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1534131565
SHA256 (managesieve3-1.1.tar.gz) = 7c43f23d8d0c83b6aaae93a0f661cef9c4657bbc90cc7c9cf37e775150c021ab
SIZE (managesieve3-1.1.tar.gz) = 15106

View File

@ -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