From owner-svn-ports-head@freebsd.org Tue Aug 14 01:18:56 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0C329105D967; Tue, 14 Aug 2018 01:18:55 +0000 (UTC) (envelope-from loader@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 79C4375F8C; Tue, 14 Aug 2018 01:18:55 +0000 (UTC) (envelope-from loader@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4171214958; Tue, 14 Aug 2018 01:18:55 +0000 (UTC) (envelope-from loader@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w7E1ItBH012941; Tue, 14 Aug 2018 01:18:55 GMT (envelope-from loader@FreeBSD.org) Received: (from loader@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7E1Isj3012937; Tue, 14 Aug 2018 01:18:54 GMT (envelope-from loader@FreeBSD.org) Message-Id: <201808140118.w7E1Isj3012937@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: loader set sender to loader@FreeBSD.org using -f From: Fukang Chen Date: Tue, 14 Aug 2018 01:18:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r477131 - in head/mail: . py-managesieve3 X-SVN-Group: ports-head X-SVN-Commit-Author: loader X-SVN-Commit-Paths: in head/mail: . py-managesieve3 X-SVN-Commit-Revision: 477131 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Aug 2018 01:18:56 -0000 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@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 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