Received: by mail.netbsd.org (Postfix, from userid 605) id 68E4184D67; Mon, 20 Jan 2020 15:39:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E45DE84D26 for ; Mon, 20 Jan 2020 15:39:25 +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 wXdgy8pgP3mV for ; Mon, 20 Jan 2020 15:39:25 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 4688484CE9 for ; Mon, 20 Jan 2020 15:39:25 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 40BA7FBF4; Mon, 20 Jan 2020 15:39:25 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1579534765255150" MIME-Version: 1.0 Date: Mon, 20 Jan 2020 15:39:25 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/devel/ruby-google-protobuf To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20200120153925.40BA7FBF4@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. --_----------=_1579534765255150 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Mon Jan 20 15:39:25 UTC 2020 Modified Files: pkgsrc/devel/ruby-google-protobuf: Makefile PLIST distinfo Log Message: devel/ruby-google-protobuf: update to 3.11.2 * pkgsrc change: remove empty lines in PLIST. 3.11.2 (2019/12/13) 3.11.1 (2019/12/03) 3.11.0 (2019/11/26) * Ruby lazy wrappers optimization (#6797) 3.10.1 (2019/10/29) * Fixed bug in Ruby DSL when no names are defined in a file (#6756) 3.10.0 (2019/10/03) Update 2019-10-04: Ruby release has been rolled back due to grpc/grpc#20471. We will upload a new version once the bug is fixed. * Fix scope resolution for Google namespace (#5878) * Support hashes for struct initializers (#5716) * Optimized away the creation of empty string objects. (#6502) * Roll forward Ruby upb changes now that protobuf Ruby build is fixed (#5866) * Optimized layout_mark() for Ruby (#6521) * Optimization for layout_init() (#6547) * Fix for GC of Ruby map frames. (#6533) * Fixed leap year handling by reworking upb_mktime() -> upb_timegm(). (#6695) 3.9.2 (2019/09/23) 3.9.1 (2019/08/06) 3.9.0 (2019/07/12) * Remove to_hash methods. (#6166) 3.8.0 (2019/05/28) * Helper methods to get enum name for Ruby. 3.7.1 (2019/03/26) * Replace strptime with custom implementation (#5906) * Fixed the bug that bytes fields cannot be larger than 16000 bytes (#5924) * Miscellaneous bug fixes 3.7.0 (2019/02/28) * Ruby 2.6 support. * Drops support for ruby < 2.3. * Most issues for json encoding/decoding in the c extension have been fixed. There are still some edge cases not fixed. For more details, check conformance/failure_list_ruby.txt. * Json parsing can specify an option to ignore unknown fields: msg.decode_json(data, {ignore_unknown_fields: true}). * Added support for proto2 syntax (partially). * Various bug fixes. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/ruby-google-protobuf/Makefile \ pkgsrc/devel/ruby-google-protobuf/PLIST \ pkgsrc/devel/ruby-google-protobuf/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1579534765255150 Content-Disposition: inline Content-Length: 2467 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/ruby-google-protobuf/Makefile diff -u pkgsrc/devel/ruby-google-protobuf/Makefile:1.1 pkgsrc/devel/ruby-google-protobuf/Makefile:1.2 --- pkgsrc/devel/ruby-google-protobuf/Makefile:1.1 Sun Oct 28 15:32:38 2018 +++ pkgsrc/devel/ruby-google-protobuf/Makefile Mon Jan 20 15:39:25 2020 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.1 2018/10/28 15:32:38 taca Exp $ +# $NetBSD: Makefile,v 1.2 2020/01/20 15:39:25 taca Exp $ -DISTNAME= google-protobuf-3.6.1 +DISTNAME= google-protobuf-3.8.0 CATEGORIES= devel MAINTAINER= pkgsrc-users@NetBSD.org Index: pkgsrc/devel/ruby-google-protobuf/PLIST diff -u pkgsrc/devel/ruby-google-protobuf/PLIST:1.1 pkgsrc/devel/ruby-google-protobuf/PLIST:1.2 --- pkgsrc/devel/ruby-google-protobuf/PLIST:1.1 Sun Oct 28 15:32:38 2018 +++ pkgsrc/devel/ruby-google-protobuf/PLIST Mon Jan 20 15:39:25 2020 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2018/10/28 15:32:38 taca Exp $ +@comment $NetBSD: PLIST,v 1.2 2020/01/20 15:39:25 taca Exp $ ${GEM_HOME}/cache/${GEM_NAME}.gem ${GEM_EXTSDIR}/gem.build_complete ${GEM_EXTSDIR}/google/protobuf_c.${RUBY_DLEXT} @@ -33,5 +33,3 @@ ${GEM_LIBDIR}/tests/basic.rb ${GEM_LIBDIR}/tests/generated_code_test.rb ${GEM_LIBDIR}/tests/stress.rb ${GEM_HOME}/specifications/${GEM_NAME}.gemspec - - Index: pkgsrc/devel/ruby-google-protobuf/distinfo diff -u pkgsrc/devel/ruby-google-protobuf/distinfo:1.1 pkgsrc/devel/ruby-google-protobuf/distinfo:1.2 --- pkgsrc/devel/ruby-google-protobuf/distinfo:1.1 Sun Oct 28 15:32:38 2018 +++ pkgsrc/devel/ruby-google-protobuf/distinfo Mon Jan 20 15:39:25 2020 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.1 2018/10/28 15:32:38 taca Exp $ +$NetBSD: distinfo,v 1.2 2020/01/20 15:39:25 taca Exp $ -SHA1 (google-protobuf-3.6.1.gem) = f49b798e76fdb31e63766b3c633d9f281717ee40 -RMD160 (google-protobuf-3.6.1.gem) = 3ed2ec0dcd87897d9e360666cc73e8424228b6fd -SHA512 (google-protobuf-3.6.1.gem) = 345535b434a2aa0d30b5daedd05c9e905440d7a1e2900ac872a28a460fb826631b42cbc9a24b290e282a8f94dd302f586ad99f321be61cb81428e1d7ae3f5f8b -Size (google-protobuf-3.6.1.gem) = 239616 bytes +SHA1 (google-protobuf-3.8.0.gem) = fa97f65a88424ba648daa835f5f5603838317f28 +RMD160 (google-protobuf-3.8.0.gem) = e9ba505fdfe8a49e2713c75761f99486465449e8 +SHA512 (google-protobuf-3.8.0.gem) = 412ce01dffe22d0f1de77bdd4777a2c421995473548a7fd642abf56040a23a62be9aa5550828d62986877ea26e862d36d5fde858a04b8bfd3439dea80bcf00a5 +Size (google-protobuf-3.8.0.gem) = 262656 bytes --_----------=_1579534765255150--