Received: by mail.netbsd.org (Postfix, from userid 605) id 32A2484D8B; Sat, 15 Jun 2019 03:05:46 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id ABF4484D47 for ; Sat, 15 Jun 2019 03:05:45 +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 8ghpBD3cYdGB for ; Sat, 15 Jun 2019 03:05:45 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0898784C81 for ; Sat, 15 Jun 2019 03:05:45 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id F1A75FBF4; Sat, 15 Jun 2019 03:05:44 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1560567944200800" MIME-Version: 1.0 Date: Sat, 15 Jun 2019 03:05:44 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/archivers/ruby-zip To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20190615030544.F1A75FBF4@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. --_----------=_1560567944200800 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sat Jun 15 03:05:44 UTC 2019 Modified Files: pkgsrc/archivers/ruby-zip: Makefile PLIST distinfo Log Message: archivers/ruby-zip: update to 1.2.3 Update ruby-zip to 1.2.3, here is release note. 1.2.3 (2019-05-23) * Allow tilde in zip entry names #391 (fixes regression in 1.2.2 from #376) * Support frozen string literals in more files #390 * Require pathname explicitly #388 (fixes regression in 1.2.2 from #376) Tooling / Documentation: * CI updates #392, #394 - Bump supported ruby versions and add 2.6 - JRuby failures are no longer ignored (reverts #375 / part of #371) * Add changelog entry that was missing for last release #387 * Comment cleanup #385 Since the GitHub release information for 1.2.2 is missing, I will also include it here: 1.2.2 (2018-09-01) NB: This release drops support for extracting symlinks, because there was no clear way to support this securely. See #376 (comment) for details. * Fix CVE-2018-1000544 #376 / #371 * Fix NoMethodError: undefined method `glob' #363 * Fix handling of stored files (i.e. files not using compression) with general purpose bit 3 set #358 * Fix close on StringIO-backed zip file #353 * Add Zip.force_entry_names_encoding option #340 * Update rubocop, apply auto-fixes, and fix regressions caused by said auto-fixes #332, #355 * Save temporary files to temporary directory (rather than current directory) #325 Tooling / Documentation: * Turn off all terminal output in all tests #361 * Several CI updates #346, #347, #350, #352 * Several README improvements #345, #326, #321 To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 pkgsrc/archivers/ruby-zip/Makefile cvs rdiff -u -r1.13 -r1.14 pkgsrc/archivers/ruby-zip/PLIST cvs rdiff -u -r1.16 -r1.17 pkgsrc/archivers/ruby-zip/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1560567944200800 Content-Disposition: inline Content-Length: 2568 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/archivers/ruby-zip/Makefile diff -u pkgsrc/archivers/ruby-zip/Makefile:1.18 pkgsrc/archivers/ruby-zip/Makefile:1.19 --- pkgsrc/archivers/ruby-zip/Makefile:1.18 Sun Sep 23 13:49:00 2018 +++ pkgsrc/archivers/ruby-zip/Makefile Sat Jun 15 03:05:44 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.18 2018/09/23 13:49:00 taca Exp $ +# $NetBSD: Makefile,v 1.19 2019/06/15 03:05:44 taca Exp $ -DISTNAME= rubyzip-1.2.2 +DISTNAME= rubyzip-1.2.3 PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME:S/ruby//} CATEGORIES= archivers Index: pkgsrc/archivers/ruby-zip/PLIST diff -u pkgsrc/archivers/ruby-zip/PLIST:1.13 pkgsrc/archivers/ruby-zip/PLIST:1.14 --- pkgsrc/archivers/ruby-zip/PLIST:1.13 Sun Sep 23 13:49:00 2018 +++ pkgsrc/archivers/ruby-zip/PLIST Sat Jun 15 03:05:44 2019 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.13 2018/09/23 13:49:00 taca Exp $ +@comment $NetBSD: PLIST,v 1.14 2019/06/15 03:05:44 taca Exp $ ${GEM_HOME}/cache/${GEM_NAME}.gem ${GEM_LIBDIR}/README.md ${GEM_LIBDIR}/Rakefile @@ -77,6 +77,7 @@ ${GEM_LIBDIR}/test/data/path_traversal/j ${GEM_LIBDIR}/test/data/path_traversal/jwilk/relative2.zip ${GEM_LIBDIR}/test/data/path_traversal/jwilk/symlink.zip ${GEM_LIBDIR}/test/data/path_traversal/relative1.zip +${GEM_LIBDIR}/test/data/path_traversal/tilde.zip ${GEM_LIBDIR}/test/data/path_traversal/tuzovakaoff/README.md ${GEM_LIBDIR}/test/data/path_traversal/tuzovakaoff/absolutepath.zip ${GEM_LIBDIR}/test/data/path_traversal/tuzovakaoff/symlink.zip Index: pkgsrc/archivers/ruby-zip/distinfo diff -u pkgsrc/archivers/ruby-zip/distinfo:1.16 pkgsrc/archivers/ruby-zip/distinfo:1.17 --- pkgsrc/archivers/ruby-zip/distinfo:1.16 Sun Sep 23 13:49:00 2018 +++ pkgsrc/archivers/ruby-zip/distinfo Sat Jun 15 03:05:44 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.16 2018/09/23 13:49:00 taca Exp $ +$NetBSD: distinfo,v 1.17 2019/06/15 03:05:44 taca Exp $ -SHA1 (rubyzip-1.2.2.gem) = c0e989661ce4e5cebf4c47e3e02a411521a55d1f -RMD160 (rubyzip-1.2.2.gem) = d8295b7e2ec075087499baf9685af09a55c051b0 -SHA512 (rubyzip-1.2.2.gem) = 2adbf775e8480a90bd25de7fc9a4094079a7b1f81266a3866b163da47dcc5d5b08a39ec4e00f892212d3849bd8974ce9179b44c06d447d3b0f984dec305724b8 -Size (rubyzip-1.2.2.gem) = 152576 bytes +SHA1 (rubyzip-1.2.3.gem) = 33908bbaef3b8bb143e89b4b3fa12a0852472427 +RMD160 (rubyzip-1.2.3.gem) = 84cfb3cfd1496e5ccaa585f58193ad55fa9b9777 +SHA512 (rubyzip-1.2.3.gem) = 192e518f06444929dac1c607594744526107c6187bc765eb2f78cd23b254419432e6a8ce2f598f48a265f041deaa2b78a2e59609340a781f80e996bc6ad1bd77 +Size (rubyzip-1.2.3.gem) = 152576 bytes --_----------=_1560567944200800--