summaryrefslogtreecommitdiff
path: root/mail/rubygem-actionmailer-gitlab
diff options
context:
space:
mode:
Diffstat (limited to 'mail/rubygem-actionmailer-gitlab')
-rw-r--r--mail/rubygem-actionmailer-gitlab/Makefile29
-rw-r--r--mail/rubygem-actionmailer-gitlab/distinfo3
-rw-r--r--mail/rubygem-actionmailer-gitlab/pkg-descr12
3 files changed, 44 insertions, 0 deletions
diff --git a/mail/rubygem-actionmailer-gitlab/Makefile b/mail/rubygem-actionmailer-gitlab/Makefile
new file mode 100644
index 000000000000..36bf654c541a
--- /dev/null
+++ b/mail/rubygem-actionmailer-gitlab/Makefile
@@ -0,0 +1,29 @@
+PORTNAME= actionmailer
+PORTVERSION= ${RAILS_VERSION}
+CATEGORIES= mail rubygems
+MASTER_SITES= RG
+PKGNAMESUFFIX= -gitlab
+
+MAINTAINER= mfechner@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-actionpack-gitlab>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-actionpack-gitlab \
+ rubygem-actionview-gitlab>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-actionview-gitlab \
+ rubygem-activejob-gitlab>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activejob-gitlab \
+ rubygem-activesupport-gitlab>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport-gitlab \
+ rubygem-mail>=2.5.4,2<3,2:mail/rubygem-mail \
+ rubygem-rails-dom-testing-rails-gitlab>=2.2<3:textproc/rubygem-rails-dom-testing-rails-gitlab
+
+USES= gem
+
+NO_ARCH= yes
+
+PORTSCOUT= limit:^7\.1\.
+
+.include "${.CURDIR}/../../www/gitlab/Makefile.common"
+.include <bsd.port.mk>
diff --git a/mail/rubygem-actionmailer-gitlab/distinfo b/mail/rubygem-actionmailer-gitlab/distinfo
new file mode 100644
index 000000000000..c1c6df2ad492
--- /dev/null
+++ b/mail/rubygem-actionmailer-gitlab/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1734888816
+SHA256 (rubygem/actionmailer-7.1.5.1.gem) = b213d6d880b23b093ccfef3b4f87a3d27e4666442f71b5b634b2d19e19a49759
+SIZE (rubygem/actionmailer-7.1.5.1.gem) = 34304
diff --git a/mail/rubygem-actionmailer-gitlab/pkg-descr b/mail/rubygem-actionmailer-gitlab/pkg-descr
new file mode 100644
index 000000000000..e757a32e32bf
--- /dev/null
+++ b/mail/rubygem-actionmailer-gitlab/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).