Received: by mail.netbsd.org (Postfix, from userid 605) id F131B84E71; Sun, 12 Feb 2023 04:44:55 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2D34384DB2 for ; Sun, 12 Feb 2023 04:44:55 +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 hdKXNRbPnsLl for ; Sun, 12 Feb 2023 04:44:54 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8AC6184D13 for ; Sun, 12 Feb 2023 04:44:54 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7E937FA90; Sun, 12 Feb 2023 04:44:54 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1676177094277770" MIME-Version: 1.0 Date: Sun, 12 Feb 2023 04:44:54 +0000 From: "Makoto Fujiwara" Subject: CVS commit: pkgsrc/math/R-vctrs To: pkgsrc-changes@NetBSD.org Reply-To: mef@netbsd.org X-Mailer: log_accum Message-Id: <20230212044454.7E937FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1676177094277770 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: mef Date: Sun Feb 12 04:44:54 UTC 2023 Modified Files: pkgsrc/math/R-vctrs: Makefile distinfo Log Message: (math/R-vctrs) Updated 0.5.1 to 0.5.2 # vctrs 0.5.2 * New `vec_expand_grid()`, which is a lower level helper that is similar to `tidyr::expand_grid()` (#1325). * New `vec_set_intersect()`, `vec_set_difference()`, `vec_set_union()`, and `vec_set_symmetric_difference()` which compute set operations like `intersect()`, `setdiff()`, and `union()`, but the vctrs variants don't strip attributes and work with data frames (#1755, #1765). * `vec_identify_runs()` is now faster when used with data frames (#1684). * The maximum load factor of the internal dictionary was reduced from 77% to 50%, which improves performance of functions like `vec_match()`, `vec_set_intersect()`, and `vec_unique()` in some cases (#1760). * Fixed a bug with the internal `vec_order_radix()` function related to matrix columns (#1753). To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/math/R-vctrs/Makefile cvs rdiff -u -r1.7 -r1.8 pkgsrc/math/R-vctrs/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1676177094277770 Content-Disposition: inline Content-Length: 1465 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/R-vctrs/Makefile diff -u pkgsrc/math/R-vctrs/Makefile:1.6 pkgsrc/math/R-vctrs/Makefile:1.7 --- pkgsrc/math/R-vctrs/Makefile:1.6 Sun Dec 18 13:36:41 2022 +++ pkgsrc/math/R-vctrs/Makefile Sun Feb 12 04:44:54 2023 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.6 2022/12/18 13:36:41 mef Exp $ +# $NetBSD: Makefile,v 1.7 2023/02/12 04:44:54 mef Exp $ R_PKGNAME= vctrs -R_PKGVER= 0.5.1 +R_PKGVER= 0.5.2 MAINTAINER= pkgsrc-users@NetBSD.org COMMENT= Vector helpers Index: pkgsrc/math/R-vctrs/distinfo diff -u pkgsrc/math/R-vctrs/distinfo:1.7 pkgsrc/math/R-vctrs/distinfo:1.8 --- pkgsrc/math/R-vctrs/distinfo:1.7 Sun Dec 18 13:36:41 2022 +++ pkgsrc/math/R-vctrs/distinfo Sun Feb 12 04:44:54 2023 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.7 2022/12/18 13:36:41 mef Exp $ +$NetBSD: distinfo,v 1.8 2023/02/12 04:44:54 mef Exp $ -BLAKE2s (R/vctrs_0.5.1.tar.gz) = c88e324b79a9cc9a6d502d0b55a57025c2376b20c61b751a52b47ff6b7a16ea6 -SHA512 (R/vctrs_0.5.1.tar.gz) = 22aed3ff1067d6e55c70fc2ad4743fae6d56d557d5f95d2520313f68a15082fdb5e8ae13799e932c7644a6f9cd3b6d6269196b3f4c8bb852cad3cdf16fc20a56 -Size (R/vctrs_0.5.1.tar.gz) = 959562 bytes +BLAKE2s (R/vctrs_0.5.2.tar.gz) = 4bac405c6b531d3bd8784499742a6cc6e6f77c08177370110ffb093d5e052ae8 +SHA512 (R/vctrs_0.5.2.tar.gz) = c6ca65b6f5f783b50371eaf7fb36c36e33a3a9fff38f19a4f865c179f3624339f970e6ebc2fac6ff5b7ac191b64b6f1a85fea954347c2d9c0e45513fee1d4d72 +Size (R/vctrs_0.5.2.tar.gz) = 967426 bytes --_----------=_1676177094277770--