Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 568977A2E8 for ; Mon, 5 Dec 2016 15:11:12 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 09125855B3; Mon, 5 Dec 2016 15:11:12 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8DE4A85589 for ; Mon, 5 Dec 2016 15:11:11 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id zycpkYO_W10V for ; Mon, 5 Dec 2016 15:11:11 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 1E78185575 for ; Mon, 5 Dec 2016 15:11:11 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 18726FBA6; Mon, 5 Dec 2016 15:11:11 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1480950671140910" MIME-Version: 1.0 Date: Mon, 5 Dec 2016 15:11:11 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/lang/ruby To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20161205151111.18726FBA6@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1480950671140910 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Mon Dec 5 15:11:11 UTC 2016 Modified Files: pkgsrc/lang/ruby: rubyversion.mk Log Message: Update ruby23{,-base} to 2.3.3. pkgsrc change: rubygems dose not blame open-ended dependency unless verbose option is enabled. Ruby 2.3.2 Released Posted by nagachika on 15 Nov 2016 Ruby 2.3.2 has been released. This is the TEENY version release of the stable 2.3 series. This release contains update of RubyGems 2.5.2 and update of included ssl certificates. Ruby 2.3.3 Released Posted by nagachika on 21 Nov 2016 Ruby 2.3.3 has been released. This release contains a bug fix about Refinements and Module#prepend. The mixture use of Module#refine and Module#prepend to the same Class could cause unexpected NoMethodError. This is a regression on Ruby 2.3.2 released last week. See [Bug #12920] for details. There are some bugfixes too. See the ChangeLog for details. To generate a diff of this commit: cvs rdiff -u -r1.167 -r1.168 pkgsrc/lang/ruby/rubyversion.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1480950671140910 Content-Disposition: inline Content-Length: 1294 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/ruby/rubyversion.mk diff -u pkgsrc/lang/ruby/rubyversion.mk:1.167 pkgsrc/lang/ruby/rubyversion.mk:1.168 --- pkgsrc/lang/ruby/rubyversion.mk:1.167 Mon Dec 5 15:02:25 2016 +++ pkgsrc/lang/ruby/rubyversion.mk Mon Dec 5 15:11:10 2016 @@ -1,4 +1,4 @@ -# $NetBSD: rubyversion.mk,v 1.167 2016/12/05 15:02:25 taca Exp $ +# $NetBSD: rubyversion.mk,v 1.168 2016/12/05 15:11:10 taca Exp $ # # This file determines which Ruby version is used as a dependency for @@ -230,7 +230,7 @@ RUBY_VERSION_REQD?= ${PKGNAME_REQD:C/rub RUBY18_VERSION= 1.8.7 RUBY21_VERSION= 2.1.10 RUBY22_VERSION= 2.2.6 -RUBY23_VERSION= 2.3.1 +RUBY23_VERSION= 2.3.3 # patch level RUBY18_PATCHLEVEL= pl374 @@ -339,16 +339,16 @@ RUBY_VERSION= ${RUBY23_VERSION} RUBY_VERSION_FULL= ${RUBY_VERSION} RUBY_ABI_VERSION= ${RUBY_VERSION} -RUBY_GEMS_VERSION= 2.5.1 +RUBY_GEMS_VERSION= 2.5.2 RUBY_RDOC_VERSION= 4.2.1 RUBY_RAKE_VERSION= 10.4.2 RUBY_JSON_VERSION= 1.8.3 RUBY_BIGDECIMAL_VERSION= 1.2.8 RUBY_IO_CONSOLE_VERSION= 0.4.5 -RUBY_PSYCH_VERSION= 2.0.17 +RUBY_PSYCH_VERSION= 2.1.0 RUBY_DID_YOU_MEAN_VERSION= 1.0.0 -RUBY_MINITEST_VERSION= 5.8.3 +RUBY_MINITEST_VERSION= 5.8.5 RUBY_NET_TELNET_VERSION= 0.1.1 RUBY_POWER_ASSERT_VERSION= 0.2.6 RUBY_TEST_UNIT_VERSION= 3.1.5 --_----------=_1480950671140910--