git: 849882c67fd9 - main - mail/rubygem-actionmailbox70: Add rubygem-actionmailbox70 7.0.0

From: Po-Chuan Hsieh <sunpoet_at_FreeBSD.org>
Date: Tue, 11 Jan 2022 18:52:46 UTC
The branch main has been updated by sunpoet:

URL: https://cgit.FreeBSD.org/ports/commit/?id=849882c67fd9b2ad9f5967edef54e774e3fa87c5

commit 849882c67fd9b2ad9f5967edef54e774e3fa87c5
Author:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2022-01-11 16:56:49 +0000
Commit:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2022-01-11 18:43:52 +0000

    mail/rubygem-actionmailbox70: Add rubygem-actionmailbox70 7.0.0
    
    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/main/actionmailbox
---
 mail/Makefile                          |  1 +
 mail/rubygem-actionmailbox70/Makefile  | 29 +++++++++++++++++++++++++++++
 mail/rubygem-actionmailbox70/distinfo  |  3 +++
 mail/rubygem-actionmailbox70/pkg-descr | 15 +++++++++++++++
 4 files changed, 48 insertions(+)

diff --git a/mail/Makefile b/mail/Makefile
index 38bc685e948c..e20964a3ad6f 100644
--- a/mail/Makefile
+++ b/mail/Makefile
@@ -572,6 +572,7 @@
     SUBDIR += rss2email3
     SUBDIR += rubygem-actionmailbox60
     SUBDIR += rubygem-actionmailbox61
+    SUBDIR += rubygem-actionmailbox70
     SUBDIR += rubygem-actionmailer4
     SUBDIR += rubygem-actionmailer5
     SUBDIR += rubygem-actionmailer50
diff --git a/mail/rubygem-actionmailbox70/Makefile b/mail/rubygem-actionmailbox70/Makefile
new file mode 100644
index 000000000000..e01474f8ee37
--- /dev/null
+++ b/mail/rubygem-actionmailbox70/Makefile
@@ -0,0 +1,29 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+
+PORTNAME=	actionmailbox
+PORTVERSION=	7.0.0
+CATEGORIES=	mail rubygems
+MASTER_SITES=	RG
+PKGNAMESUFFIX=	70
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Receive and process incoming emails in Rails applications
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/MIT-LICENSE
+
+RUN_DEPENDS=	rubygem-actionpack70>=${PORTVERSION}:www/rubygem-actionpack70 \
+		rubygem-activejob70>=${PORTVERSION}:devel/rubygem-activejob70 \
+		rubygem-activerecord70>=${PORTVERSION}:databases/rubygem-activerecord70 \
+		rubygem-activestorage70>=${PORTVERSION}:net/rubygem-activestorage70 \
+		rubygem-activesupport70>=${PORTVERSION}:devel/rubygem-activesupport70 \
+		rubygem-mail>=2.7.1,2:mail/rubygem-mail
+
+USES=		gem
+USE_RUBY=	yes
+
+NO_ARCH=	yes
+
+PORTSCOUT=	limit:^7\.0\.
+
+.include <bsd.port.mk>
diff --git a/mail/rubygem-actionmailbox70/distinfo b/mail/rubygem-actionmailbox70/distinfo
new file mode 100644
index 000000000000..603889f556ed
--- /dev/null
+++ b/mail/rubygem-actionmailbox70/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1641045764
+SHA256 (rubygem/actionmailbox-7.0.0.gem) = b7afc1de4f6433435c23d89182bda7a2e355c7a17cc3370c0e90424d60c2d918
+SIZE (rubygem/actionmailbox-7.0.0.gem) = 22016
diff --git a/mail/rubygem-actionmailbox70/pkg-descr b/mail/rubygem-actionmailbox70/pkg-descr
new file mode 100644
index 000000000000..c480504bfe30
--- /dev/null
+++ b/mail/rubygem-actionmailbox70/pkg-descr
@@ -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/main/actionmailbox