Received: by mail.netbsd.org (Postfix, from userid 605) id 72AF884D79; Mon, 10 Feb 2020 14:21:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id EDF6784D77 for ; Mon, 10 Feb 2020 14:21:00 +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 8r0WXWgTZ9jz for ; Mon, 10 Feb 2020 14:21:00 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 6A57984CEF for ; Mon, 10 Feb 2020 14:21:00 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 68181FBF4; Mon, 10 Feb 2020 14:21:00 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1581344460228670" MIME-Version: 1.0 Date: Mon, 10 Feb 2020 14:21:00 +0000 From: "Makoto Fujiwara" Subject: CVS commit: pkgsrc/math/R-stringdist To: pkgsrc-changes@NetBSD.org Reply-To: mef@netbsd.org X-Mailer: log_accum Message-Id: <20200210142100.68181FBF4@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. --_----------=_1581344460228670 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: mef Date: Mon Feb 10 14:21:00 UTC 2020 Added Files: pkgsrc/math/R-stringdist: DESCR Makefile distinfo Log Message: (math/R-stringdist) import R-stringdist-0.9.5.5 Implements an approximate string matching version of R's native 'match' function. Can calculate various string distances based on edits (Damerau-Levenshtein, Hamming, Levenshtein, optimal sting alignment), qgrams (q- gram, cosine, jaccard distance) or heuristic metrics (Jaro, Jaro-Winkler). An implementation of soundex is provided as well. Distances can be computed between character vectors while taking proper care of encoding or between integer vectors representing generic sequences. This package is built for speed and runs in parallel by using 'openMP'. An API for C or C++ is exposed as well. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 pkgsrc/math/R-stringdist/DESCR \ pkgsrc/math/R-stringdist/Makefile pkgsrc/math/R-stringdist/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1581344460228670 Content-Disposition: inline Content-Length: 2045 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Added files: Index: pkgsrc/math/R-stringdist/DESCR diff -u /dev/null pkgsrc/math/R-stringdist/DESCR:1.1 --- /dev/null Mon Feb 10 14:21:00 2020 +++ pkgsrc/math/R-stringdist/DESCR Mon Feb 10 14:21:00 2020 @@ -0,0 +1,9 @@ +Implements an approximate string matching version of R's native +'match' function. Can calculate various string distances based on +edits (Damerau-Levenshtein, Hamming, Levenshtein, optimal sting +alignment), qgrams (q- gram, cosine, jaccard distance) or heuristic +metrics (Jaro, Jaro-Winkler). An implementation of soundex is provided +as well. Distances can be computed between character vectors while +taking proper care of encoding or between integer vectors representing +generic sequences. This package is built for speed and runs in +parallel by using 'openMP'. An API for C or C++ is exposed as well. Index: pkgsrc/math/R-stringdist/Makefile diff -u /dev/null pkgsrc/math/R-stringdist/Makefile:1.1 --- /dev/null Mon Feb 10 14:21:00 2020 +++ pkgsrc/math/R-stringdist/Makefile Mon Feb 10 14:21:00 2020 @@ -0,0 +1,14 @@ +# $NetBSD: Makefile,v 1.1 2020/02/10 14:21:00 mef Exp $ + +R_PKGNAME= stringdist +R_PKGVER= 0.9.5.5 +CATEGORIES= math + +MAINTAINER= pkgsrc-users@NetBSD.org +COMMENT= Approximate String Matching and String Distance Functions +LICENSE= gnu-gpl-v3 + +USE_LANGUAGES= c + +.include "../../math/R/Makefile.extension" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/math/R-stringdist/distinfo diff -u /dev/null pkgsrc/math/R-stringdist/distinfo:1.1 --- /dev/null Mon Feb 10 14:21:00 2020 +++ pkgsrc/math/R-stringdist/distinfo Mon Feb 10 14:21:00 2020 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2020/02/10 14:21:00 mef Exp $ + +SHA1 (R/stringdist_0.9.5.5.tar.gz) = 014112bce2f49d915cecb5bf3156adb66cac62fb +RMD160 (R/stringdist_0.9.5.5.tar.gz) = 173983e049b7fe014d942dc9f127b215fbe92d08 +SHA512 (R/stringdist_0.9.5.5.tar.gz) = c02c4846bea3e6de5bd67fbf0ed4cbd690b4def9b8684433b17e5140d1d18f36da82014c013f7533730ba2decf796112126343bd397ab4971014f713289ef0ca +Size (R/stringdist_0.9.5.5.tar.gz) = 831912 bytes --_----------=_1581344460228670--