summaryrefslogtreecommitdiff
path: root/mail/ruby-actionmailer
diff options
context:
space:
mode:
authortaca <taca>2005-09-04 14:12:31 +0000
committertaca <taca>2005-09-04 14:12:31 +0000
commit099577886a15b313293edfb09fc0edda8fba32a6 (patch)
treeb1313b03c5a88b5a24172ab3aa151ce507173c70 /mail/ruby-actionmailer
parentea36a8844b21fbe05b13bdab035aa449310c58ba (diff)
downloadpkgsrc-099577886a15b313293edfb09fc0edda8fba32a6.tar.gz
Update ruby-actionmailer to 1.0.1.
*1.0.1* (11 July, 2005) * Bind to Action Pack 1.9.1 *1.0.0* (6 July, 2005) * Avoid adding nil header values #1392 * Better multipart support with implicit multipart/alternative and sorting of subparts [John Long] * Allow for nested parts in multipart mails #1570 [Flurin Egger] * Normalize line endings in outgoing mail bodies to "\n" #1536 [John Long] * Allow template to be explicitly specified #1448 [tuxie@dekadance.se] * Allow specific "multipart/xxx" content-type to be set on multipart messages #1412 [Flurin Egger] * Unquoted @ characters in headers are now accepted in spite of RFC 822 #1206 * Helper support (borrowed from ActionPack) * Silently ignore Errno::EINVAL errors when converting text. * Don't cause an error when parsing an encoded attachment name #1340 [lon@speedymac.com] * Nested multipart message parts are correctly processed in TMail::Mail#body * BCC headers are removed when sending via SMTP #1402 * Added 'content_type' accessor, to allow content type to be set on a per-message basis. content_type defaults to "text/plain". * Silently ignore Iconv::IllegalSequence errors when converting text #1341 [lon@speedymac.com] * Support attachments and multipart messages. * Added new accessors for the various mail properties. * Fix to only perform the charset conversion if a 'from' and a 'to' charset are given (make no assumptions about what the charset was) #1276 [Jamis Buck] * Fix attachments and content-type problems #1276 [Jamis Buck] * Fixed the TMail#body method to look at the content-transfer-encoding header and unquote the body according to the rules it specifies #1265 [Jamis Buck] * Added unquoting even if the iconv lib can't be loaded--in that case, only the charset conversion is skipped #1265 [Jamis Buck] * Added automatic decoding of base64 bodies #1214 [Jamis Buck] * Added that delivery errors are caught in a way so the mail is still returned whether the delivery was successful or not * Fixed that email address like "Jamis Buck, M.D." <wild.medicine@example.net> would cause the quoter to generate emails resulting in "bad address" errors from the mail server #1220 [Jamis Buck] *0.9.1* (20th April, 2005) * Depend on Action Pack 1.8.1 *0.9.0* (19th April, 2005) * Added that deliver_* will now return the email that was sent * Added that quoting to UTF-8 only happens if the characters used are in that range #955 [Jamis Buck] * Fixed quoting for all address headers, not just to #955 [Jamis Buck] * Fixed unquoting of emails that doesn't have an explicit charset #1036 [wolfgang@stufenlos.net]
Diffstat (limited to 'mail/ruby-actionmailer')
-rw-r--r--mail/ruby-actionmailer/Makefile9
-rw-r--r--mail/ruby-actionmailer/PLIST8
-rw-r--r--mail/ruby-actionmailer/distinfo9
-rw-r--r--mail/ruby-actionmailer/patches/patch-aa20
4 files changed, 15 insertions, 31 deletions
diff --git a/mail/ruby-actionmailer/Makefile b/mail/ruby-actionmailer/Makefile
index 480ad19c7f5..be52733e2f1 100644
--- a/mail/ruby-actionmailer/Makefile
+++ b/mail/ruby-actionmailer/Makefile
@@ -1,17 +1,16 @@
-# $NetBSD: Makefile,v 1.2 2005/04/10 04:15:44 minskim Exp $
+# $NetBSD: Makefile,v 1.3 2005/09/04 14:12:31 taca Exp $
-DISTNAME= actionmailer-0.8.1
+DISTNAME= actionmailer-1.0.1
PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME}
-PKGREVISION= 1
CATEGORIES= mail ruby
-MASTER_SITES= http://rubyforge.org/frs/download.php/3687/
+MASTER_SITES= http://rubyforge.org/frs/download.php/5170/
EXTRACT_SUFX= .tgz
MAINTAINER= minskim@NetBSD.org
HOMEPAGE= http://am.rubyonrails.org/
COMMENT= Ruby framework for designing email-service layers
-DEPENDS+= ${RUBY_PKGPREFIX}-actionpack-[0-9]*:../../www/ruby-actionpack
+DEPENDS+= ${RUBY_PKGPREFIX}-actionpack>=1.9.1:../../www/ruby-actionpack
NO_BUILD= yes
NO_CONFIGURE= yes
diff --git a/mail/ruby-actionmailer/PLIST b/mail/ruby-actionmailer/PLIST
index 85e76d737ae..1a21e46b043 100644
--- a/mail/ruby-actionmailer/PLIST
+++ b/mail/ruby-actionmailer/PLIST
@@ -1,7 +1,13 @@
-@comment $NetBSD: PLIST,v 1.2 2005/04/10 04:15:44 minskim Exp $
+@comment $NetBSD: PLIST,v 1.3 2005/09/04 14:12:31 taca Exp $
${RUBY_SITELIBDIR}/action_mailer.rb
+${RUBY_SITELIBDIR}/action_mailer/adv_attr_accessor.rb
${RUBY_SITELIBDIR}/action_mailer/base.rb
+${RUBY_SITELIBDIR}/action_mailer/helpers.rb
${RUBY_SITELIBDIR}/action_mailer/mail_helper.rb
+${RUBY_SITELIBDIR}/action_mailer/part.rb
+${RUBY_SITELIBDIR}/action_mailer/part_container.rb
+${RUBY_SITELIBDIR}/action_mailer/quoting.rb
+${RUBY_SITELIBDIR}/action_mailer/utils.rb
${RUBY_SITELIBDIR}/action_mailer/vendor/text/format.rb
${RUBY_SITELIBDIR}/action_mailer/vendor/tmail.rb
${RUBY_SITELIBDIR}/action_mailer/vendor/tmail/address.rb
diff --git a/mail/ruby-actionmailer/distinfo b/mail/ruby-actionmailer/distinfo
index a86f3c9f967..848c4ffe535 100644
--- a/mail/ruby-actionmailer/distinfo
+++ b/mail/ruby-actionmailer/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.2 2005/04/10 04:15:44 minskim Exp $
+$NetBSD: distinfo,v 1.3 2005/09/04 14:12:31 taca Exp $
-SHA1 (ruby/actionmailer-0.8.1.tgz) = 5b41aa0985cea88b1372766b7f436aba22114cb2
-RMD160 (ruby/actionmailer-0.8.1.tgz) = b018aab60e7c5fab45092492575cff2471fad3fc
-Size (ruby/actionmailer-0.8.1.tgz) = 54132 bytes
-SHA1 (patch-aa) = 41a615c7e9a7d6987f76c3c36c397e4854b07331
+SHA1 (ruby/actionmailer-1.0.1.tgz) = 2ae354e38fcb44da5e10f3dfc7ce0c33ce04af30
+RMD160 (ruby/actionmailer-1.0.1.tgz) = e488790c65921c9f5d45b29953ab1343ec5a0324
+Size (ruby/actionmailer-1.0.1.tgz) = 71911 bytes
diff --git a/mail/ruby-actionmailer/patches/patch-aa b/mail/ruby-actionmailer/patches/patch-aa
deleted file mode 100644
index 4b1a85a61b0..00000000000
--- a/mail/ruby-actionmailer/patches/patch-aa
+++ /dev/null
@@ -1,20 +0,0 @@
-$NetBSD: patch-aa,v 1.1 2005/04/10 04:15:44 minskim Exp $
-
---- install.rb.orig Tue Nov 23 19:04:44 2004
-+++ install.rb
-@@ -32,6 +32,7 @@ files = %w-
- action_mailer/vendor/text/format.rb
- action_mailer/vendor/tmail.rb
- action_mailer/vendor/tmail/address.rb
-+ action_mailer/vendor/tmail/attachments.rb
- action_mailer/vendor/tmail/base64.rb
- action_mailer/vendor/tmail/config.rb
- action_mailer/vendor/tmail/encode.rb
-@@ -46,6 +47,7 @@ files = %w-
- action_mailer/vendor/tmail/obsolete.rb
- action_mailer/vendor/tmail/parser.rb
- action_mailer/vendor/tmail/port.rb
-+ action_mailer/vendor/tmail/quoting.rb
- action_mailer/vendor/tmail/scanner.rb
- action_mailer/vendor/tmail/scanner_r.rb
- action_mailer/vendor/tmail/stringio.rb