From owner-svn-ports-all@freebsd.org Tue Aug 18 19:10:45 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id E35283C436C; Tue, 18 Aug 2020 19:10:45 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BWL915pjYz4WBg; Tue, 18 Aug 2020 19:10:45 +0000 (UTC) (envelope-from jrm@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 AC336165EA; Tue, 18 Aug 2020 19:10:45 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 07IJAjDg078777; Tue, 18 Aug 2020 19:10:45 GMT (envelope-from jrm@FreeBSD.org) Received: (from jrm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 07IJAihp078771; Tue, 18 Aug 2020 19:10:44 GMT (envelope-from jrm@FreeBSD.org) Message-Id: <202008181910.07IJAihp078771@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jrm set sender to jrm@FreeBSD.org using -f From: Joseph Mingrone Date: Tue, 18 Aug 2020 19:10:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r545250 - in head/mail: . getmail6 getmail6/files X-SVN-Group: ports-head X-SVN-Commit-Author: jrm X-SVN-Commit-Paths: in head/mail: . getmail6 getmail6/files X-SVN-Commit-Revision: 545250 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Aug 2020 19:10:46 -0000 Author: jrm Date: Tue Aug 18 19:10:44 2020 New Revision: 545250 URL: https://svnweb.freebsd.org/changeset/ports/545250 Log: New port, mail/getmail6: A python3 fork of mail/getmail PR: 248633 Submitted by: Michael Bueker (maintainer) Reviewed by: koobs Differential Revision: https://reviews.freebsd.org/D26057 Added: head/mail/getmail6/ head/mail/getmail6/Makefile (contents, props changed) head/mail/getmail6/distinfo (contents, props changed) head/mail/getmail6/files/ head/mail/getmail6/files/patch-setup.py (contents, props changed) head/mail/getmail6/pkg-descr (contents, props changed) head/mail/getmail6/pkg-message (contents, props changed) Modified: head/mail/Makefile (contents, props changed) Modified: head/mail/Makefile ============================================================================== --- head/mail/Makefile Tue Aug 18 19:09:36 2020 (r545249) +++ head/mail/Makefile Tue Aug 18 19:10:44 2020 (r545250) @@ -138,6 +138,7 @@ SUBDIR += geary SUBDIR += gensig SUBDIR += getmail + SUBDIR += getmail6 SUBDIR += gmime2 SUBDIR += gmime2-sharp SUBDIR += gmime24 Added: head/mail/getmail6/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/getmail6/Makefile Tue Aug 18 19:10:44 2020 (r545250) @@ -0,0 +1,41 @@ +# $FreeBSD$ + +PORTNAME= getmail6 +DISTVERSIONPREFIX= v +DISTVERSION= 6.03 +CATEGORIES= mail python +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= m.bueker@berlin.de +COMMENT= POP3/IMAP4 mail retriever (Python3 fork) + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/docs/COPYING + +USES= python +USE_GITHUB= yes +USE_PYTHON= autoplist concurrent distutils + +CONFLICTS= getmail + +NO_ARCH= yes +NO_BUILD= yes + +PORTDOCS= *.css *.html *.txt BUGS CHANGELOG README THANKS +PORTEXAMPLES= getmailrc-examples + +OPTIONS_DEFINE= DOCS EXAMPLES + +post-install: + @${CHMOD} -R 644 ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/getmailcore/* + +post-install-DOCS-on: + @${CP} ${WRKSRC}/README ${WRKSRC}/docs/ + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/docs/,} ${STAGEDIR}${DOCSDIR} + +post-install-EXAMPLES-on: + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${INSTALL_DATA} ${WRKSRC}/docs/getmailrc-examples ${STAGEDIR}${EXAMPLESDIR} + +.include Added: head/mail/getmail6/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/getmail6/distinfo Tue Aug 18 19:10:44 2020 (r545250) @@ -0,0 +1,3 @@ +TIMESTAMP = 1597771268 +SHA256 (getmail6-getmail6-v6.03_GH0.tar.gz) = 4333592d32c89009e5ef50f538402b4b32a2fd14faca72fc01dd65b6cce34549 +SIZE (getmail6-getmail6-v6.03_GH0.tar.gz) = 182699 Added: head/mail/getmail6/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/getmail6/files/patch-setup.py Tue Aug 18 19:10:44 2020 (r545250) @@ -0,0 +1,40 @@ +--- setup.py.orig 2020-08-18 15:00:41 UTC ++++ setup.py +@@ -35,12 +35,11 @@ GETMAILDOCDIR = os.path.join( + datadir or prefix, + 'share', + 'doc', +- 'getmail-%s' % __version__ ++ 'getmail' + ) + + GETMAILMANDIR = os.path.join( + datadir or prefix, +- 'share', + 'man', + 'man1' + ) +@@ -96,23 +95,6 @@ setup( + 'getmail-gmail-xoauth-tokens', + ], + data_files=[ +- (GETMAILDOCDIR, [ +- './README', +- 'docs/BUGS', +- 'docs/COPYING', +- 'docs/CHANGELOG', +- 'docs/THANKS', +- 'docs/configuration.html', +- 'docs/configuration.txt', +- 'docs/documentation.html', +- 'docs/documentation.txt', +- 'docs/faq.html', +- 'docs/faq.txt', +- 'docs/getmaildocs.css', +- 'docs/getmailrc-examples', +- 'docs/troubleshooting.html', +- 'docs/troubleshooting.txt', +- ]), + (GETMAILMANDIR, [ + 'docs/getmail.1', + 'docs/getmail_fetch.1', Added: head/mail/getmail6/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/getmail6/pkg-descr Tue Aug 18 19:10:44 2020 (r545250) @@ -0,0 +1,20 @@ +POP3/IMAP4 mail retriever with Maildir and command delivery (python3 fork). + +Summary of features: +- Retrieve mail from an unlimited number of POP3/IMAP4 mailboxes and servers. +- Support for POP3-over-SSL and IMAP-over-SSL, as well as SDPS + WARNING: even with SSL, "no certificate or key validation is done." so + that getmail does not detect or protect from man-in-the-middle attacks. +- Support for multidrop or domain mailboxes. +- Safe and reliable delivery to qmail-style Maildirs, as well as program + (pipe) delivery for use with arbitrary external MDAs. Includes an MDA + for mbox files that supports mboxrd format and fcntl-type flock locking. +- Does not destroy information by rewriting mail headers. +- Does not cause mail loops by doing SMTP injection, and therefore does + not require that you run an MTA (like qmail or sendmail) on your host. +- Can remember which mail it has already retrieved, and can be set to + only download new messages. +- Written in Python, and therefore easy to extend or customize. +- Simple to install, configure, and use. + +WWW: https://github.com/getmail6/getmail6/ Added: head/mail/getmail6/pkg-message ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/getmail6/pkg-message Tue Aug 18 19:10:44 2020 (r545250) @@ -0,0 +1,9 @@ +[ +{ type: install + message: <