aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPo-Chuan Hsieh <sunpoet@FreeBSD.org>2023-11-01 07:56:06 +0000
committerPo-Chuan Hsieh <sunpoet@FreeBSD.org>2023-11-01 07:56:06 +0000
commita6fb7d2bc2f8704c23cca53ee9e7603b27d2a6d9 (patch)
tree85515943b2e82383e8e43718aea20e0863d8e4d4
parentd1887c1b96b5a2e32984aa5696fa97c77c289afd (diff)
mail/rubygem-actionmailer71: Add rubygem-actionmailer71 7.1.1
Action Mailer is a framework for designing email service layers. These layers are used to consolidate code for sending out forgotten passwords, welcome wishes on signup, invoices for billing, and any other use case that requires a written notification to either a person or another system. Action Mailer is in essence a wrapper around Action Controller and the Mail gem. It provides a way to make emails using templates in the same way that Action Controller renders views using templates. Additionally, an Action Mailer class can be used to process incoming email, such as allowing a blog to accept new posts from an email (which could even have been sent from a phone).
-rw-r--r--mail/Makefile1
-rw-r--r--mail/rubygem-actionmailer71/Makefile31
-rw-r--r--mail/rubygem-actionmailer71/distinfo3
-rw-r--r--mail/rubygem-actionmailer71/pkg-descr12
4 files changed, 47 insertions, 0 deletions
diff --git a/mail/Makefile b/mail/Makefile
index 7dc4b7581784..1d79b8e3b0d8 100644
--- a/mail/Makefile
+++ b/mail/Makefile
@@ -595,6 +595,7 @@
SUBDIR += rubygem-actionmailer60
SUBDIR += rubygem-actionmailer61
SUBDIR += rubygem-actionmailer70
+ SUBDIR += rubygem-actionmailer71
SUBDIR += rubygem-email_reply_parser
SUBDIR += rubygem-email_reply_parser-discourse
SUBDIR += rubygem-email_reply_trimmer
diff --git a/mail/rubygem-actionmailer71/Makefile b/mail/rubygem-actionmailer71/Makefile
new file mode 100644
index 000000000000..1a59f3577004
--- /dev/null
+++ b/mail/rubygem-actionmailer71/Makefile
@@ -0,0 +1,31 @@
+PORTNAME= actionmailer
+PORTVERSION= 7.1.1
+CATEGORIES= mail rubygems
+MASTER_SITES= RG
+PKGNAMESUFFIX= 71
+
+MAINTAINER= sunpoet@FreeBSD.org
+COMMENT= Compose, deliver, and test emails on Rails
+WWW= https://github.com/rails/rails/tree/main/actionmailer \
+ https://rubyonrails.org/
+
+LICENSE= MIT
+LICENSE_FILE= ${WRKSRC}/MIT-LICENSE
+
+RUN_DEPENDS= rubygem-actionpack71>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-actionpack71 \
+ rubygem-actionview71>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-actionview71 \
+ rubygem-activejob71>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activejob71 \
+ rubygem-activesupport71>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport71 \
+ rubygem-mail>=2.5.4,2<3,2:mail/rubygem-mail \
+ rubygem-net-imap>=0:mail/rubygem-net-imap \
+ rubygem-net-pop>=0:mail/rubygem-net-pop \
+ rubygem-net-smtp>=0:mail/rubygem-net-smtp \
+ rubygem-rails-dom-testing-rails71>=2.2<3:textproc/rubygem-rails-dom-testing-rails71
+
+USES= gem
+
+NO_ARCH= yes
+
+PORTSCOUT= limit:^7\.1\.
+
+.include <bsd.port.mk>
diff --git a/mail/rubygem-actionmailer71/distinfo b/mail/rubygem-actionmailer71/distinfo
new file mode 100644
index 000000000000..154ff9bcc833
--- /dev/null
+++ b/mail/rubygem-actionmailer71/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1697330180
+SHA256 (rubygem/actionmailer-7.1.1.gem) = 82506adb5fd9cf4c5552a7f8d9d853e338072b62359a71317d8c5d93a9b427db
+SIZE (rubygem/actionmailer-7.1.1.gem) = 33792
diff --git a/mail/rubygem-actionmailer71/pkg-descr b/mail/rubygem-actionmailer71/pkg-descr
new file mode 100644
index 000000000000..e757a32e32bf
--- /dev/null
+++ b/mail/rubygem-actionmailer71/pkg-descr
@@ -0,0 +1,12 @@
+Action Mailer is a framework for designing email service layers. These layers
+are used to consolidate code for sending out forgotten passwords, welcome wishes
+on signup, invoices for billing, and any other use case that requires a written
+notification to either a person or another system.
+
+Action Mailer is in essence a wrapper around Action Controller and the Mail gem.
+It provides a way to make emails using templates in the same way that Action
+Controller renders views using templates.
+
+Additionally, an Action Mailer class can be used to process incoming email, such
+as allowing a blog to accept new posts from an email (which could even have been
+sent from a phone).