Date: Fri, 4 Mar 2016 06:19:25 +0000 (UTC) From: Hiroki Sato <hrs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r410085 - in head/mail: . imapdedup Message-ID: <201603040619.u246JPCD048786@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: hrs Date: Fri Mar 4 06:19:25 2016 New Revision: 410085 URL: https://svnweb.freebsd.org/changeset/ports/410085 Log: Add mail/imapdedup, small Python script to remove duplicate emails in IMAP mailboxes. Added: head/mail/imapdedup/ head/mail/imapdedup/Makefile (contents, props changed) head/mail/imapdedup/distinfo (contents, props changed) head/mail/imapdedup/pkg-descr (contents, props changed) Modified: head/mail/Makefile Modified: head/mail/Makefile ============================================================================== --- head/mail/Makefile Fri Mar 4 05:54:53 2016 (r410084) +++ head/mail/Makefile Fri Mar 4 06:19:25 2016 (r410085) @@ -179,6 +179,7 @@ SUBDIR += ifile SUBDIR += im SUBDIR += imap-uw + SUBDIR += imapdedup SUBDIR += imapfilter SUBDIR += imapsync SUBDIR += imaptools Added: head/mail/imapdedup/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/imapdedup/Makefile Fri Mar 4 06:19:25 2016 (r410085) @@ -0,0 +1,31 @@ +# $FreeBSD$ + +PORTNAME= imapdedup +PORTVERSION= 0.0.20150331 +CATEGORIES= mail + +MAINTAINER= hrs@FreeBSD.org +COMMENT= Duplicate email message remover + +LICENSE= GPLv2 + +USES= python:run shebangfix +SHEBANG_FILES= imapdedup.py +USE_GITHUB= yes +GH_PROJECT= IMAPdedup +GH_ACCOUNT= quentinsf +GH_TAGNAME= 711c851 +NO_BUILD= yes +PLIST_FILES= bin/imapdedup.py +PORTDOCS= README.md + +OPTIONS_DEFINE= DOCS + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/imapdedup.py ${STAGEDIR}${PREFIX}/bin + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} + +.include <bsd.port.mk> Added: head/mail/imapdedup/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/imapdedup/distinfo Fri Mar 4 06:19:25 2016 (r410085) @@ -0,0 +1,2 @@ +SHA256 (quentinsf-IMAPdedup-0.0.20150331-711c851_GH0.tar.gz) = 47192abc6d1c89106cf5314ede35afde393f3fc02867f316e5f2ade8984ed6da +SIZE (quentinsf-IMAPdedup-0.0.20150331-711c851_GH0.tar.gz) = 13520 Added: head/mail/imapdedup/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/imapdedup/pkg-descr Fri Mar 4 06:19:25 2016 (r410085) @@ -0,0 +1,5 @@ +IMAPdedup is a Python script (imapdedup.py) that looks for duplicate +messages in a set of IMAP mailboxes and tidies up all but the first +copy of any duplicates found. + +WWW: http://quentinsf.com/software/imapdedup/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201603040619.u246JPCD048786>