Received: by mail.netbsd.org (Postfix, from userid 605) id 41CAA84EAB; Sun, 3 Feb 2019 15:34:53 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BBB2684EA9 for ; Sun, 3 Feb 2019 15:34:52 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id pqVeCFJA42xW for ; Sun, 3 Feb 2019 15:34:52 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id DD87B84DB5 for ; Sun, 3 Feb 2019 15:34:51 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D14D0FB16; Sun, 3 Feb 2019 15:34:51 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1549208091216910" MIME-Version: 1.0 Date: Sun, 3 Feb 2019 15:34:51 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/mail/ruby-mail To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20190203153451.D14D0FB16@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1549208091216910 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sun Feb 3 15:34:51 UTC 2019 Modified Files: pkgsrc/mail/ruby-mail: Makefile distinfo Log Message: mail/ruby-mail: update to 2.7.1 * pkgsrc change: add "USE_LANGUAGES= # none" line. Version 2.7.1 (2018-10-13) Compatibility: * Restore LF=>CRLF conversions for properly encoded non-binary emails. (rubys) * Gracefully parse certain invalid Content-Type headers. (rafbm) * Support `x-uue` transfer encoding as uuencoding. (jkraemer) Features: * Expose Mail::Field#unparsed_value to read the raw field value, before parsing. (Tensho) Performance: * Speed up message encoding, especially with large attachments. (dalibor) Bugs: * Fix transfer encoding when message encoding is blank. (jakubonty, saks) * Fix 7bit/base64 content transfer encoding mismatch. (ahorek) * Fix UTF-8 attachment filename quoting. (ahorek) * Fix `delete_all` using a readonly IMAP connection. (kimromi) To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 pkgsrc/mail/ruby-mail/Makefile cvs rdiff -u -r1.14 -r1.15 pkgsrc/mail/ruby-mail/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1549208091216910 Content-Disposition: inline Content-Length: 1729 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mail/ruby-mail/Makefile diff -u pkgsrc/mail/ruby-mail/Makefile:1.17 pkgsrc/mail/ruby-mail/Makefile:1.18 --- pkgsrc/mail/ruby-mail/Makefile:1.17 Wed Mar 14 14:46:07 2018 +++ pkgsrc/mail/ruby-mail/Makefile Sun Feb 3 15:34:51 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.17 2018/03/14 14:46:07 taca Exp $ +# $NetBSD: Makefile,v 1.18 2019/02/03 15:34:51 taca Exp $ -DISTNAME= mail-2.7.0 +DISTNAME= mail-2.7.1 CATEGORIES= mail MAINTAINER= pkgsrc-users@NetBSD.org @@ -10,5 +10,7 @@ LICENSE= mit DEPENDS+= ${RUBY_PKGPREFIX}-mini_mime>=0.1.1:../../mail/ruby-mini_mime +USE_LANGUAGES= # none + .include "../../lang/ruby/gem.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/mail/ruby-mail/distinfo diff -u pkgsrc/mail/ruby-mail/distinfo:1.14 pkgsrc/mail/ruby-mail/distinfo:1.15 --- pkgsrc/mail/ruby-mail/distinfo:1.14 Wed Mar 14 14:46:07 2018 +++ pkgsrc/mail/ruby-mail/distinfo Sun Feb 3 15:34:51 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.14 2018/03/14 14:46:07 taca Exp $ +$NetBSD: distinfo,v 1.15 2019/02/03 15:34:51 taca Exp $ -SHA1 (mail-2.7.0.gem) = d02b9e5708fc4198b7a13957b7d17c19e68c1081 -RMD160 (mail-2.7.0.gem) = 7b2459f35e9ba3bd86760fa2eac9eb4b7ceca0a6 -SHA512 (mail-2.7.0.gem) = a309d1e6116cef8073a059b0819f1b18215b699256bf669a859ab8fba1a9667cf7818d7fdd0e62bb841684ee1de8e801f91f9ccd4f493958cc03124e05eb868d -Size (mail-2.7.0.gem) = 385024 bytes +SHA1 (mail-2.7.1.gem) = b7d7bd34c921c4f8a09582d17dda6964623e6e99 +RMD160 (mail-2.7.1.gem) = 4cc9d3cfb69625b87d3e5bbb5dd7747baf2f848c +SHA512 (mail-2.7.1.gem) = b8018ad089517ba058e922ec32653e6052c76a480178ae92452fdd678e3ba7f4916ee6643efa59dd673a6a8550f907fc7a2121c21f468c70b3659bf5615991d7 +Size (mail-2.7.1.gem) = 389120 bytes --_----------=_1549208091216910--