aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPo-Chuan Hsieh <sunpoet@FreeBSD.org>2024-09-18 05:51:05 +0000
committerPo-Chuan Hsieh <sunpoet@FreeBSD.org>2024-09-18 06:13:01 +0000
commit86096a4f1079516e4e0ca52668f2c91ef267b500 (patch)
treee41c796479412ff6583b886faca40f39fcbb9807
parentaad5ba0d40fea501fbab7039f464cffe88b022c7 (diff)
mail/rubygem-actionmailer72: rubygem-actionmailer72 7.2.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-actionmailer72/Makefile28
-rw-r--r--mail/rubygem-actionmailer72/distinfo3
-rw-r--r--mail/rubygem-actionmailer72/pkg-descr12
4 files changed, 44 insertions, 0 deletions
diff --git a/mail/Makefile b/mail/Makefile
index 53fe869362ca..4e99a539c825 100644
--- a/mail/Makefile
+++ b/mail/Makefile
@@ -606,6 +606,7 @@
SUBDIR += rubygem-actionmailer61
SUBDIR += rubygem-actionmailer70
SUBDIR += rubygem-actionmailer71
+ SUBDIR += rubygem-actionmailer72
SUBDIR += rubygem-email_reply_parser
SUBDIR += rubygem-email_reply_parser-discourse
SUBDIR += rubygem-email_reply_trimmer
diff --git a/mail/rubygem-actionmailer72/Makefile b/mail/rubygem-actionmailer72/Makefile
new file mode 100644
index 000000000000..c97c6cefc2aa
--- /dev/null
+++ b/mail/rubygem-actionmailer72/Makefile
@@ -0,0 +1,28 @@
+PORTNAME= actionmailer
+PORTVERSION= 7.2.1
+CATEGORIES= mail rubygems
+MASTER_SITES= RG
+PKGNAMESUFFIX= 72
+
+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-actionpack72>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-actionpack72 \
+ rubygem-actionview72>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-actionview72 \
+ rubygem-activejob72>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activejob72 \
+ rubygem-activesupport72>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport72 \
+ rubygem-mail>=2.8.0,2<3,2:mail/rubygem-mail \
+ rubygem-rails-dom-testing-rails72>=2.2<3:textproc/rubygem-rails-dom-testing-rails72
+
+USES= gem
+
+NO_ARCH= yes
+
+PORTSCOUT= limit:^7\.2\.
+
+.include <bsd.port.mk>
diff --git a/mail/rubygem-actionmailer72/distinfo b/mail/rubygem-actionmailer72/distinfo
new file mode 100644
index 000000000000..8642c3e301a2
--- /dev/null
+++ b/mail/rubygem-actionmailer72/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1726487292
+SHA256 (rubygem/actionmailer-7.2.1.gem) = e4853a32c84105066e64d900ee1025ef075893ee3c51de3a3bc59a6e09586e56
+SIZE (rubygem/actionmailer-7.2.1.gem) = 32256
diff --git a/mail/rubygem-actionmailer72/pkg-descr b/mail/rubygem-actionmailer72/pkg-descr
new file mode 100644
index 000000000000..e757a32e32bf
--- /dev/null
+++ b/mail/rubygem-actionmailer72/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).