Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 5 Feb 2020 18:40:27 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r525320 - in head/mail: . rubygem-actionmailbox60
Message-ID:  <202002051840.015IeRID022818@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Wed Feb  5 18:40:27 2020
New Revision: 525320
URL: https://svnweb.freebsd.org/changeset/ports/525320

Log:
  Add rubygem-actionmailbox60 6.0.2.1
  
  Action Mailbox routes incoming emails to controller-like mailboxes for
  processing in Rails. It ships with ingresses for Mailgun, Mandrill, Postmark,
  and SendGrid. You can also handle inbound mails directly via the built-in Exim,
  Postfix, and Qmail ingresses.
  
  The inbound emails are turned into InboundEmail records using Active Record and
  feature lifecycle tracking, storage of the original email on cloud storage via
  Active Storage, and responsible data handling with on-by-default incineration.
  
  These inbound emails are routed asynchronously using Active Job to one or
  several dedicated mailboxes, which are capable of interacting directly with the
  rest of your domain model.
  
  WWW: https://rubyonrails.org/
  WWW: https://github.com/rails/rails/tree/master/actionmailbox

Added:
  head/mail/rubygem-actionmailbox60/
  head/mail/rubygem-actionmailbox60/Makefile   (contents, props changed)
  head/mail/rubygem-actionmailbox60/distinfo   (contents, props changed)
  head/mail/rubygem-actionmailbox60/pkg-descr   (contents, props changed)
Modified:
  head/mail/Makefile

Modified: head/mail/Makefile
==============================================================================
--- head/mail/Makefile	Wed Feb  5 18:40:21 2020	(r525319)
+++ head/mail/Makefile	Wed Feb  5 18:40:27 2020	(r525320)
@@ -582,6 +582,7 @@
     SUBDIR += rspamd
     SUBDIR += rspamd-devel
     SUBDIR += rss2email3
+    SUBDIR += rubygem-actionmailbox60
     SUBDIR += rubygem-actionmailer4
     SUBDIR += rubygem-actionmailer5
     SUBDIR += rubygem-actionmailer50

Added: head/mail/rubygem-actionmailbox60/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/rubygem-actionmailbox60/Makefile	Wed Feb  5 18:40:27 2020	(r525320)
@@ -0,0 +1,30 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	actionmailbox
+PORTVERSION=	6.0.2.1
+CATEGORIES=	mail rubygems
+MASTER_SITES=	RG
+PKGNAMESUFFIX=	60
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Receive and process incoming emails in Rails applications
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/MIT-LICENSE
+
+BROKEN_RUBY24=	yes
+
+RUN_DEPENDS=	rubygem-actionpack60>=${PORTVERSION}:www/rubygem-actionpack60 \
+		rubygem-activejob60>=${PORTVERSION}:devel/rubygem-activejob60 \
+		rubygem-activerecord60>=${PORTVERSION}:databases/rubygem-activerecord60 \
+		rubygem-activestorage60>=${PORTVERSION}:net/rubygem-activestorage60 \
+		rubygem-activesupport60>=${PORTVERSION}:devel/rubygem-activesupport60 \
+		rubygem-mail>=2.7.1,2:mail/rubygem-mail
+
+USES=		gem
+USE_RUBY=	yes
+
+NO_ARCH=	yes
+
+.include <bsd.port.mk>

Added: head/mail/rubygem-actionmailbox60/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/rubygem-actionmailbox60/distinfo	Wed Feb  5 18:40:27 2020	(r525320)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1577687170
+SHA256 (rubygem/actionmailbox-6.0.2.1.gem) = 6132861d7706cefed207817d6a097e3e991e5656bdefd5b2c927e88465b957f7
+SIZE (rubygem/actionmailbox-6.0.2.1.gem) = 20480

Added: head/mail/rubygem-actionmailbox60/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/rubygem-actionmailbox60/pkg-descr	Wed Feb  5 18:40:27 2020	(r525320)
@@ -0,0 +1,15 @@
+Action Mailbox routes incoming emails to controller-like mailboxes for
+processing in Rails. It ships with ingresses for Mailgun, Mandrill, Postmark,
+and SendGrid. You can also handle inbound mails directly via the built-in Exim,
+Postfix, and Qmail ingresses.
+
+The inbound emails are turned into InboundEmail records using Active Record and
+feature lifecycle tracking, storage of the original email on cloud storage via
+Active Storage, and responsible data handling with on-by-default incineration.
+
+These inbound emails are routed asynchronously using Active Job to one or
+several dedicated mailboxes, which are capable of interacting directly with the
+rest of your domain model.
+
+WWW: https://rubyonrails.org/
+WWW: https://github.com/rails/rails/tree/master/actionmailbox



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202002051840.015IeRID022818>