pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mail/ruby-actionmailer Update ruby-actionmailer to 1.0.1.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/cc51ac691241
branches:  trunk
changeset: 498856:cc51ac691241
user:      taca <taca%pkgsrc.org@localhost>
date:      Sun Sep 04 14:12:31 2005 +0000

description:
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@localhost]

* 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@localhost]

* 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@localhost]

* 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@localhost> 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@localhost]

diffstat:

 mail/ruby-actionmailer/Makefile         |   9 ++++-----
 mail/ruby-actionmailer/PLIST            |   8 +++++++-
 mail/ruby-actionmailer/distinfo         |   9 ++++-----
 mail/ruby-actionmailer/patches/patch-aa |  20 --------------------
 4 files changed, 15 insertions(+), 31 deletions(-)

diffs (81 lines):

diff -r 1e22b016908f -r cc51ac691241 mail/ruby-actionmailer/Makefile
--- a/mail/ruby-actionmailer/Makefile   Sun Sep 04 14:05:44 2005 +0000
+++ b/mail/ruby-actionmailer/Makefile   Sun Sep 04 14:12:31 2005 +0000
@@ -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@localhost
 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 -r 1e22b016908f -r cc51ac691241 mail/ruby-actionmailer/PLIST
--- a/mail/ruby-actionmailer/PLIST      Sun Sep 04 14:05:44 2005 +0000
+++ b/mail/ruby-actionmailer/PLIST      Sun Sep 04 14:12:31 2005 +0000
@@ -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 -r 1e22b016908f -r cc51ac691241 mail/ruby-actionmailer/distinfo
--- a/mail/ruby-actionmailer/distinfo   Sun Sep 04 14:05:44 2005 +0000
+++ b/mail/ruby-actionmailer/distinfo   Sun Sep 04 14:12:31 2005 +0000
@@ -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 -r 1e22b016908f -r cc51ac691241 mail/ruby-actionmailer/patches/patch-aa
--- a/mail/ruby-actionmailer/patches/patch-aa   Sun Sep 04 14:05:44 2005 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -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



Home | Main Index | Thread Index | Old Index