From owner-svn-ports-head@freebsd.org Sun Aug 9 17:16:23 2015 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 96091998B27; Sun, 9 Aug 2015 17:16:23 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 79389A4; Sun, 9 Aug 2015 17:16:23 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t79HGN0B036677; Sun, 9 Aug 2015 17:16:23 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t79HGMPL036673; Sun, 9 Aug 2015 17:16:22 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201508091716.t79HGMPL036673@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sun, 9 Aug 2015 17:16:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393811 - in head/mail: . rubygem-actionmailer41 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.20 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: Sun, 09 Aug 2015 17:16:23 -0000 Author: swills Date: Sun Aug 9 17:16:21 2015 New Revision: 393811 URL: https://svnweb.freebsd.org/changeset/ports/393811 Log: mail/rubygem-actionmailer41: create port Add rails 4.1 version of actionmailer PR: 201823 Submitted by: Torsten Zühlsdorff Added: head/mail/rubygem-actionmailer41/ head/mail/rubygem-actionmailer41/Makefile (contents, props changed) head/mail/rubygem-actionmailer41/distinfo (contents, props changed) head/mail/rubygem-actionmailer41/pkg-descr (contents, props changed) Modified: head/mail/Makefile Modified: head/mail/Makefile ============================================================================== --- head/mail/Makefile Sun Aug 9 17:16:13 2015 (r393810) +++ head/mail/Makefile Sun Aug 9 17:16:21 2015 (r393811) @@ -575,6 +575,7 @@ SUBDIR += ruby-rmail SUBDIR += rubygem-actionmailer SUBDIR += rubygem-actionmailer4 + SUBDIR += rubygem-actionmailer41 SUBDIR += rubygem-email_reply_parser-discourse SUBDIR += rubygem-exception_notification SUBDIR += rubygem-larch Added: head/mail/rubygem-actionmailer41/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/rubygem-actionmailer41/Makefile Sun Aug 9 17:16:21 2015 (r393811) @@ -0,0 +1,25 @@ +# Created by: Torsten Zühlsdorff +# $FreeBSD$ + +PORTNAME= actionmailer +PORTVERSION= 4.1.12 +CATEGORIES= mail rubygems +MASTER_SITES= RG +PKGNAMESUFFIX= 41 + +MAINTAINER= ruby@FreeBSD.org +COMMENT= Easy email delivery and testing for Ruby + +LICENSE= MIT + +RUN_DEPENDS= rubygem-actionpack41>=${PORTVERSION}:${PORTSDIR}/www/rubygem-actionpack41 \ + rubygem-actionview41>=${PORTVERSION}:${PORTSDIR}/devel/rubygem-actionview41 \ + rubygem-mail>=2.5.4:${PORTSDIR}/mail/rubygem-mail + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +PORTSCOUT= limit:^4\.1 + +.include Added: head/mail/rubygem-actionmailer41/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/rubygem-actionmailer41/distinfo Sun Aug 9 17:16:21 2015 (r393811) @@ -0,0 +1,2 @@ +SHA256 (rubygem/actionmailer-4.1.12.gem) = 55c44ed99ce8c0e5d4daa2d1bab169033b3b1b3b3b09ed88b264ede264f3305c +SIZE (rubygem/actionmailer-4.1.12.gem) = 25088 Added: head/mail/rubygem-actionmailer41/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/rubygem-actionmailer41/pkg-descr Sun Aug 9 17:16:21 2015 (r393811) @@ -0,0 +1,10 @@ +Action Mailer is framework for designing email-service layers. These layers +are used to consolidate code for sending out forgotten passwords, welcoming +wishes on signup, invoices for billing, and any other use case that requires +a written notification to either a person or another system. + +Additionally, an Action Mailer class can be used to process incoming email, +such as allowing a weblog to accept new posts from an email (which could even +have been sent from a phone) + +WWW: http://www.rubyonrails.org