Received: by mail.netbsd.org (Postfix, from userid 605) id 5ED8984F64; Sat, 20 Jan 2024 04:34:00 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8D3D484F62 for ; Sat, 20 Jan 2024 04:33:59 +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 B8KqU-Om5Ch6 for ; Sat, 20 Jan 2024 04:33:59 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0271184CF9 for ; Sat, 20 Jan 2024 04:33:58 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E8558FA42; Sat, 20 Jan 2024 04:33:58 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1705725238157610" MIME-Version: 1.0 Date: Sat, 20 Jan 2024 04:33:58 +0000 From: "Makoto Fujiwara" Subject: CVS commit: pkgsrc/math/R-fastmatch To: pkgsrc-changes@NetBSD.org Reply-To: mef@netbsd.org X-Mailer: log_accum Message-Id: <20240120043358.E8558FA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1705725238157610 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: mef Date: Sat Jan 20 04:33:58 UTC 2024 Added Files: pkgsrc/math/R-fastmatch: DESCR Makefile distinfo Log Message: (math/R-fastmatch) import R-fastmatch-1.1.4 Package providing a fast match() replacement for cases that require repeated look-ups. It is slightly faster that R's built-in match() function on first match against a table, but extremely fast on any subsequent lookup as it keeps the hash table in memory. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/math/R-fastmatch/DESCR \ pkgsrc/math/R-fastmatch/Makefile pkgsrc/math/R-fastmatch/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1705725238157610 Content-Disposition: inline Content-Length: 1633 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/math/R-fastmatch/DESCR diff -u /dev/null pkgsrc/math/R-fastmatch/DESCR:1.1 --- /dev/null Sat Jan 20 04:33:58 2024 +++ pkgsrc/math/R-fastmatch/DESCR Sat Jan 20 04:33:58 2024 @@ -0,0 +1,4 @@ +Package providing a fast match() replacement for cases that require +repeated look-ups. It is slightly faster that R's built-in match() +function on first match against a table, but extremely fast on any +subsequent lookup as it keeps the hash table in memory. Index: pkgsrc/math/R-fastmatch/Makefile diff -u /dev/null pkgsrc/math/R-fastmatch/Makefile:1.1 --- /dev/null Sat Jan 20 04:33:58 2024 +++ pkgsrc/math/R-fastmatch/Makefile Sat Jan 20 04:33:58 2024 @@ -0,0 +1,15 @@ +# $NetBSD: Makefile,v 1.1 2024/01/20 04:33:58 mef Exp $ + +R_PKGNAME= fastmatch +R_PKGVER= 1.1-4 + +MAINTAINER= pkgsrc-users@NetBSD.org +COMMENT= Fast 'match()' Function +LICENSE= gnu-gpl-v2 + +TEST_DEPENDS+= tex-latex-bin-[0-9]*:../../print/tex-latex-bin + +USE_LANGUAGES= c + +.include "../../math/R/Makefile.extension" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/math/R-fastmatch/distinfo diff -u /dev/null pkgsrc/math/R-fastmatch/distinfo:1.1 --- /dev/null Sat Jan 20 04:33:58 2024 +++ pkgsrc/math/R-fastmatch/distinfo Sat Jan 20 04:33:58 2024 @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1 2024/01/20 04:33:58 mef Exp $ + +BLAKE2s (R/fastmatch_1.1-4.tar.gz) = 62ddc7309ffd806f2283911cf6b33b56087d831ca301d7ff5664991e43af277b +SHA512 (R/fastmatch_1.1-4.tar.gz) = 82e10634eae821ec686c72db76ce9259fd538ef40759ef119e56d2d7c2fcf302b880f76a289e74f89b5263163252ebf6d480b3e789e75a8d5e38cecca46670cc +Size (R/fastmatch_1.1-4.tar.gz) = 15223 bytes --_----------=_1705725238157610--