mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-19 08:13:21 +00:00
c3b1e04aaf
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
24 lines
433 B
Makefile
24 lines
433 B
Makefile
# $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>
|