git: 33a23cabfe72 - main - mail/rubygem-actionmailer80: Add rubygem-actionmailer80 8.0.1
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 02 Jan 2025 16:30:19 UTC
The branch main has been updated by sunpoet:
URL: https://cgit.FreeBSD.org/ports/commit/?id=33a23cabfe72f9e68c6190ab99b814c937a17e3d
commit 33a23cabfe72f9e68c6190ab99b814c937a17e3d
Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2025-01-02 16:28:05 +0000
Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2025-01-02 16:28:05 +0000
mail/rubygem-actionmailer80: Add rubygem-actionmailer80 8.0.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).
---
mail/Makefile | 1 +
mail/rubygem-actionmailer80/Makefile | 28 ++++++++++++++++++++++++++++
mail/rubygem-actionmailer80/distinfo | 3 +++
mail/rubygem-actionmailer80/pkg-descr | 12 ++++++++++++
4 files changed, 44 insertions(+)
diff --git a/mail/Makefile b/mail/Makefile
index c78f9f28df9c..ba7dfee1497d 100644
--- a/mail/Makefile
+++ b/mail/Makefile
@@ -611,6 +611,7 @@
SUBDIR += rubygem-actionmailer70
SUBDIR += rubygem-actionmailer71
SUBDIR += rubygem-actionmailer72
+ SUBDIR += rubygem-actionmailer80
SUBDIR += rubygem-email_reply_parser
SUBDIR += rubygem-email_reply_parser-discourse
SUBDIR += rubygem-email_reply_trimmer
diff --git a/mail/rubygem-actionmailer80/Makefile b/mail/rubygem-actionmailer80/Makefile
new file mode 100644
index 000000000000..01bdf0e8ee9c
--- /dev/null
+++ b/mail/rubygem-actionmailer80/Makefile
@@ -0,0 +1,28 @@
+PORTNAME= actionmailer
+PORTVERSION= 8.0.1
+CATEGORIES= mail rubygems
+MASTER_SITES= RG
+PKGNAMESUFFIX= 80
+
+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-actionpack80>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-actionpack80 \
+ rubygem-actionview80>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-actionview80 \
+ rubygem-activejob80>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activejob80 \
+ rubygem-activesupport80>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport80 \
+ rubygem-mail>=2.8.0,2<3,2:mail/rubygem-mail \
+ rubygem-rails-dom-testing-rails80>=2.2<3:textproc/rubygem-rails-dom-testing-rails80
+
+USES= gem
+
+NO_ARCH= yes
+
+PORTSCOUT= limit:^8\.0\.
+
+.include <bsd.port.mk>
diff --git a/mail/rubygem-actionmailer80/distinfo b/mail/rubygem-actionmailer80/distinfo
new file mode 100644
index 000000000000..8026fe54b20b
--- /dev/null
+++ b/mail/rubygem-actionmailer80/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1735802480
+SHA256 (rubygem/actionmailer-8.0.1.gem) = 7b074e9590e4ec5cebd2fc91d1f9ba4c61bbd4bbd4376f731527da187cd39952
+SIZE (rubygem/actionmailer-8.0.1.gem) = 32256
diff --git a/mail/rubygem-actionmailer80/pkg-descr b/mail/rubygem-actionmailer80/pkg-descr
new file mode 100644
index 000000000000..e757a32e32bf
--- /dev/null
+++ b/mail/rubygem-actionmailer80/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).