Thu Nov 30 15:28:19 2023 UTC (178d)
mail/ruby-actionmailer71: add version 7.1.2

Action Mailer -- Easy email delivery and testing

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).

This is for Ruby on Rails 7.1.


(taca)
diff -r0 -r1.1 pkgsrc/mail/ruby-actionmailer71/DESCR
diff -r0 -r1.1 pkgsrc/mail/ruby-actionmailer71/Makefile
diff -r0 -r1.1 pkgsrc/mail/ruby-actionmailer71/PLIST
diff -r0 -r1.1 pkgsrc/mail/ruby-actionmailer71/distinfo
diff -r0 -r1.1 pkgsrc/mail/ruby-actionmailer71/patches/patch-lib_action__mailer.rb

File Added: pkgsrc/mail/ruby-actionmailer71/DESCR
Action Mailer -- Easy email delivery and testing

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).

This is for Ruby on Rails 7.1.

File Added: pkgsrc/mail/ruby-actionmailer71/Makefile
# $NetBSD: Makefile,v 1.1 2023/11/30 15:28:19 taca Exp $

DISTNAME=	actionmailer-${RAILS_VERSION}
PKGNAME=	${RUBY_PKGPREFIX}-actionmailer${RUBY_RAILS}-${RAILS_VERSION}
CATEGORIES=	mail devel

MAINTAINER=	pkgsrc-users@NetBSD.org
HOMEPAGE=	http://www.rubyonrails.org/
COMMENT=	Email composition, delivery, and receiving (for Rails 7.1)
LICENSE=	mit

DEPENDS+=	${RUBY_ACTIONPACK_DEPENDS}
DEPENDS+=	${RUBY_ACTIONVIEW_DEPENDS}
DEPENDS+=	${RUBY_ACTIVEJOB_DEPENDS}
DEPENDS+=	${RUBY_PKGPREFIX}-mail>=2.5.4<3:../../mail/ruby-mail
# ruby-actionview already depends it.
#DEPENDS+=	${RUBY_PKGPREFIX}-rails-dom-testing>=2.2<3:../../textproc/ruby-rails-dom-testing

USE_LANGUAGES=	# none

RUBY_RAILS_ACCEPTED=	71
RUBY_RAILS_STRICT_DEP=	yes

.include "../../lang/ruby/gem.mk"
.include "../../mk/bsd.pkg.mk"

File Added: pkgsrc/mail/ruby-actionmailer71/PLIST
@comment $NetBSD: PLIST,v 1.1 2023/11/30 15:28:19 taca Exp $
${GEM_HOME}/cache/${GEM_NAME}.gem
${GEM_LIBDIR}/CHANGELOG.md
${GEM_LIBDIR}/MIT-LICENSE
${GEM_LIBDIR}/README.rdoc
${GEM_LIBDIR}/lib/action_mailer.rb
${GEM_LIBDIR}/lib/action_mailer/base.rb
${GEM_LIBDIR}/lib/action_mailer/callbacks.rb
${GEM_LIBDIR}/lib/action_mailer/collector.rb
${GEM_LIBDIR}/lib/action_mailer/delivery_methods.rb
${GEM_LIBDIR}/lib/action_mailer/deprecator.rb
${GEM_LIBDIR}/lib/action_mailer/form_builder.rb
${GEM_LIBDIR}/lib/action_mailer/gem_version.rb
${GEM_LIBDIR}/lib/action_mailer/inline_preview_interceptor.rb
${GEM_LIBDIR}/lib/action_mailer/log_subscriber.rb
${GEM_LIBDIR}/lib/action_mailer/mail_delivery_job.rb
${GEM_LIBDIR}/lib/action_mailer/mail_helper.rb
${GEM_LIBDIR}/lib/action_mailer/message_delivery.rb
${GEM_LIBDIR}/lib/action_mailer/parameterized.rb
${GEM_LIBDIR}/lib/action_mailer/preview.rb
${GEM_LIBDIR}/lib/action_mailer/queued_delivery.rb
${GEM_LIBDIR}/lib/action_mailer/railtie.rb
${GEM_LIBDIR}/lib/action_mailer/rescuable.rb
${GEM_LIBDIR}/lib/action_mailer/test_case.rb
${GEM_LIBDIR}/lib/action_mailer/test_helper.rb
${GEM_LIBDIR}/lib/action_mailer/version.rb
${GEM_LIBDIR}/lib/rails/generators/mailer/USAGE
${GEM_LIBDIR}/lib/rails/generators/mailer/mailer_generator.rb
${GEM_LIBDIR}/lib/rails/generators/mailer/templates/application_mailer.rb.tt
${GEM_LIBDIR}/lib/rails/generators/mailer/templates/mailer.rb.tt
${GEM_HOME}/specifications/${GEM_NAME}.gemspec

File Added: pkgsrc/mail/ruby-actionmailer71/distinfo
$NetBSD: distinfo,v 1.1 2023/11/30 15:28:19 taca Exp $

BLAKE2s (actionmailer-7.1.2.gem) = fb416e3e03e4c52cb68d735cdd306c5ff36b528445bb10844c9bde850659657b
SHA512 (actionmailer-7.1.2.gem) = 381e246a2deb36fcde7b65f1c8802de2b0ea3f226467f670a02fb7fd881751dd6591219a48a6cdd6e7bf7c32cbc9fd504bb8af9b35258feb43ebc9fb007a4c60
Size (actionmailer-7.1.2.gem) = 33792 bytes
SHA1 (patch-lib_action__mailer.rb) = 90d8c190f1c9d23358aa08463bf96b0298a9b5ac

File Added: pkgsrc/mail/ruby-actionmailer71/patches/patch-lib_action__mailer.rb
$NetBSD: patch-lib_action__mailer.rb,v 1.1 2023/11/30 15:28:19 taca Exp $

* Fix rdoc error.

--- lib/action_mailer.rb.orig	2023-10-08 15:10:14.403018678 +0000
+++ lib/action_mailer.rb
@@ -35,7 +35,7 @@ require "active_support/core_ext/module/
 require "active_support/core_ext/string/inflections"
 require "active_support/lazy_load_hooks"
 
-# :include: actionmailer/README.rdoc
+# :include: ../README.rdoc
 module ActionMailer
   extend ::ActiveSupport::Autoload