From owner-svn-ports-head@freebsd.org Fri Mar 4 06:19:27 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3C2479DA5B1; Fri, 4 Mar 2016 06:19:27 +0000 (UTC) (envelope-from hrs@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 mx1.freebsd.org (Postfix) with ESMTPS id E9810A7B; Fri, 4 Mar 2016 06:19:26 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u246JPPu048790; Fri, 4 Mar 2016 06:19:25 GMT (envelope-from hrs@FreeBSD.org) Received: (from hrs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u246JPCD048786; Fri, 4 Mar 2016 06:19:25 GMT (envelope-from hrs@FreeBSD.org) Message-Id: <201603040619.u246JPCD048786@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: hrs set sender to hrs@FreeBSD.org using -f From: Hiroki Sato Date: Fri, 4 Mar 2016 06:19:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r410085 - in head/mail: . imapdedup X-SVN-Group: ports-head 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.21 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: Fri, 04 Mar 2016 06:19:27 -0000 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 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/