Received: by mail.netbsd.org (Postfix, from userid 605) id 643CB84D66; Sun, 13 Sep 2020 15:54:59 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DEC5E84D59 for ; Sun, 13 Sep 2020 15:54:58 +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 lj5WvDtS-NPc for ; Sun, 13 Sep 2020 15:54:58 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 423B984D36 for ; Sun, 13 Sep 2020 15:54:58 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3F49DFB28; Sun, 13 Sep 2020 15:54:58 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1600012498229210" MIME-Version: 1.0 Date: Sun, 13 Sep 2020 15:54:58 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/devel/ruby-parser To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20200913155458.3F49DFB28@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. --_----------=_1600012498229210 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sun Sep 13 15:54:58 UTC 2020 Modified Files: pkgsrc/devel/ruby-parser: Makefile PLIST distinfo Log Message: devel/ruby-parser: update to 3.15.0 Update ruby-parser package to 3.15.0. === 3.15.0 / 2020-08-31 * 1 major enhancement: * Added tentative 2.7 support. * 1 minor enhancement: * Improved ruby_parse_extract_error's handling of moving slow files out. * 22 bug fixes: * Bumped ruby version to include 3.0 (trunk). * Fix an error related to empty ensure bodies. (presidentbeef) * Fix handling of bad magic encoding comment. * Fixed SystemStackError when parsing a huoooge hash, caused by a splat arg. * Fixed a number of errors parsing do blocks in strange edge cases. * Fixed a string backslash lexing bug when the string is an invalid encoding. (nijikon, gmcgibbon) * Fixed bug assigning line number to some arg nodes. * Fixed bug concatinating string literals with differing encodings. * Fixed bug lexing heredoc w/ nasty mix of \r\n and \n. * Fixed bug lexing multiple codepoints in \u{0000 1111 2222} forms. * Fixed bug setting line numbers in empty xstrings in some contexts. * Fixed edge case on call w/ begin + do block as an arg. * Fixed handling of UTF BOM. * Fixed handling of lexer state across string interpolation braces. * Fixed infinite loop when lexing backslash+cr+newline (aka dos-files) * Fixed lambda + do block edge case. * Fixed lexing of some ?\M... and ?\C... edge cases. * Fixed more do/brace block edge case failures. * Fixed parsing bug where splat was used in the middle of a list. * Fixed parsing of interpolation in heredoc-like strings. (presidentbeef) * Fixed parsing some esoteric edge cases in op_asgn. * Fixed unicode processing in ident chars so now they better mix. To generate a diff of this commit: cvs rdiff -u -r1.33 -r1.34 pkgsrc/devel/ruby-parser/Makefile cvs rdiff -u -r1.15 -r1.16 pkgsrc/devel/ruby-parser/PLIST cvs rdiff -u -r1.30 -r1.31 pkgsrc/devel/ruby-parser/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1600012498229210 Content-Disposition: inline Content-Length: 2483 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/ruby-parser/Makefile diff -u pkgsrc/devel/ruby-parser/Makefile:1.33 pkgsrc/devel/ruby-parser/Makefile:1.34 --- pkgsrc/devel/ruby-parser/Makefile:1.33 Sun Mar 8 14:42:38 2020 +++ pkgsrc/devel/ruby-parser/Makefile Sun Sep 13 15:54:58 2020 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.33 2020/03/08 14:42:38 taca Exp $ +# $NetBSD: Makefile,v 1.34 2020/09/13 15:54:58 taca Exp $ -DISTNAME= ruby_parser-3.14.2 +DISTNAME= ruby_parser-3.15.0 PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME:S/ruby_//} CATEGORIES= devel Index: pkgsrc/devel/ruby-parser/PLIST diff -u pkgsrc/devel/ruby-parser/PLIST:1.15 pkgsrc/devel/ruby-parser/PLIST:1.16 --- pkgsrc/devel/ruby-parser/PLIST:1.15 Mon May 6 05:29:20 2019 +++ pkgsrc/devel/ruby-parser/PLIST Sun Sep 13 15:54:58 2020 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.15 2019/05/06 05:29:20 taca Exp $ +@comment $NetBSD: PLIST,v 1.16 2020/09/13 15:54:58 taca Exp $ bin/ruby_parse${RUBY_SUFFIX} bin/ruby_parse_extract_error${RUBY_SUFFIX} ${GEM_HOME}/cache/${GEM_NAME}.gem @@ -28,6 +28,8 @@ ${GEM_LIBDIR}/lib/ruby25_parser.rb ${GEM_LIBDIR}/lib/ruby25_parser.y ${GEM_LIBDIR}/lib/ruby26_parser.rb ${GEM_LIBDIR}/lib/ruby26_parser.y +${GEM_LIBDIR}/lib/ruby27_parser.rb +${GEM_LIBDIR}/lib/ruby27_parser.y ${GEM_LIBDIR}/lib/ruby_lexer.rb ${GEM_LIBDIR}/lib/ruby_lexer.rex ${GEM_LIBDIR}/lib/ruby_lexer.rex.rb Index: pkgsrc/devel/ruby-parser/distinfo diff -u pkgsrc/devel/ruby-parser/distinfo:1.30 pkgsrc/devel/ruby-parser/distinfo:1.31 --- pkgsrc/devel/ruby-parser/distinfo:1.30 Sun Mar 8 14:42:38 2020 +++ pkgsrc/devel/ruby-parser/distinfo Sun Sep 13 15:54:58 2020 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.30 2020/03/08 14:42:38 taca Exp $ +$NetBSD: distinfo,v 1.31 2020/09/13 15:54:58 taca Exp $ -SHA1 (ruby_parser-3.14.2.gem) = fd7225ad480c6c6c279b49cf3451437621deee26 -RMD160 (ruby_parser-3.14.2.gem) = c9d017c1ae66fad44cd304ac72e2fd2410a82765 -SHA512 (ruby_parser-3.14.2.gem) = 65b8977fff322d4ecdbb8da1276d76318f08a13a25d8cf8429ba5ca7097c2b58c03431d60b05eec6cb62be316cf9b1efc753b86e8b67e076fd413d2324bc6655 -Size (ruby_parser-3.14.2.gem) = 466432 bytes +SHA1 (ruby_parser-3.15.0.gem) = 42c6bfb7abd5242e7a4242daac5577150388f651 +RMD160 (ruby_parser-3.15.0.gem) = d29546b7b672d20c44495c036028795a8dd053ce +SHA512 (ruby_parser-3.15.0.gem) = f4d64a7f86d94a324b47f9354b8962a5b96d62ac41b6fedae602b0c3782bf2871ec3d0131770d886c5f58de188a7ed71fa3c31c548f53b75ff04474962b442ee +Size (ruby_parser-3.15.0.gem) = 527360 bytes --_----------=_1600012498229210--