From owner-svn-ports-all@freebsd.org Mon Nov 23 18:33:00 2015 Return-Path: Delivered-To: svn-ports-all@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 15CF6A35D41; Mon, 23 Nov 2015 18:33:00 +0000 (UTC) (envelope-from sunpoet@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 E2B041B0A; Mon, 23 Nov 2015 18:32:59 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tANIWxrm072455; Mon, 23 Nov 2015 18:32:59 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tANIWw4v072451; Mon, 23 Nov 2015 18:32:58 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201511231832.tANIWw4v072451@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 23 Nov 2015 18:32:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r402309 - in head/mail: . rubygem-mail_room X-SVN-Group: ports-head 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.20 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: Mon, 23 Nov 2015 18:33:00 -0000 Author: sunpoet Date: Mon Nov 23 18:32:58 2015 New Revision: 402309 URL: https://svnweb.freebsd.org/changeset/ports/402309 Log: - Add rubygem-mail_room 0.5.2 - While I'm here: - Add LICENSE_FILE - Add NO_ARCH - Fix PLIST_FILES mail_room is a configuration based process that will idle on IMAP connections and execute a delivery method when a new message is received. Examples of delivery methods include: POST to a delivery URL (Postback) Queue a job to Sidekiq or Que for later processing (Sidekiq or Que) Log the message or open with LetterOpener (Logger or LetterOpener) WWW: https://github.com/tpitale/mail_room PR: 203583 Submitted by: Michael Fausten Added: head/mail/rubygem-mail_room/ head/mail/rubygem-mail_room/Makefile (contents, props changed) head/mail/rubygem-mail_room/distinfo (contents, props changed) head/mail/rubygem-mail_room/pkg-descr (contents, props changed) Modified: head/mail/Makefile Modified: head/mail/Makefile ============================================================================== --- head/mail/Makefile Mon Nov 23 18:31:26 2015 (r402308) +++ head/mail/Makefile Mon Nov 23 18:32:58 2015 (r402309) @@ -584,6 +584,7 @@ SUBDIR += rubygem-exception_notification SUBDIR += rubygem-larch SUBDIR += rubygem-mail + SUBDIR += rubygem-mail_room SUBDIR += rubygem-mail25 SUBDIR += rubygem-mailfactory SUBDIR += rubygem-pony Added: head/mail/rubygem-mail_room/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/rubygem-mail_room/Makefile Mon Nov 23 18:32:58 2015 (r402309) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= mail_room +PORTVERSION= 0.5.2 +CATEGORIES= mail rubygems +MASTER_SITES= RG + +MAINTAINER= ports@michael-fausten.de +COMMENT= This mail_room will proxy email (gmail) from IMAP to a delivery method + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +NO_ARCH= yes +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +PLIST_FILES= bin/mail_room + +.include Added: head/mail/rubygem-mail_room/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/rubygem-mail_room/distinfo Mon Nov 23 18:32:58 2015 (r402309) @@ -0,0 +1,2 @@ +SHA256 (rubygem/mail_room-0.5.2.gem) = 03724ce8d0fe1849815c8293edbaf30feaea4beb6708104fb363c788b96316d1 +SIZE (rubygem/mail_room-0.5.2.gem) = 18944 Added: head/mail/rubygem-mail_room/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/rubygem-mail_room/pkg-descr Mon Nov 23 18:32:58 2015 (r402309) @@ -0,0 +1,9 @@ +mail_room is a configuration based process that will idle on IMAP connections +and execute a delivery method when a new message is received. +Examples of delivery methods include: + +POST to a delivery URL (Postback) +Queue a job to Sidekiq or Que for later processing (Sidekiq or Que) +Log the message or open with LetterOpener (Logger or LetterOpener) + +WWW: https://github.com/tpitale/mail_room