Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=1iQ49ckH; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=YrfhydbJ Received: by mail.netbsd.org (Postfix, from userid 605) id AF5C684E82; Tue, 9 Apr 2024 16:46:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1712681171; bh=221Pg7LcGuySfEuKbqvs32j1ca35uhHmwnIkuGy53pk=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=1iQ49ckHHJJtF328D7b3Z1ztX7mfEKaquL9GxP+W7DKYBjymoLeqM0BTBgdfADnyE px4c85CoaY/rabgCexZrYSLeqTt3kJFOmwOwq5QoUW9FDhR0scHcNcSfvdz3+13A2r l/Z8SfLCQF92NQjd0RNiq5k4I+ooKD+NCBV84JG0= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9F2AD84E81 for ; Tue, 9 Apr 2024 16:46:10 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=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 9GMSKUy--nn2 for ; Tue, 9 Apr 2024 16:46:10 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 14B5A84E7E for ; Tue, 9 Apr 2024 16:46:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1712681170; bh=221Pg7LcGuySfEuKbqvs32j1ca35uhHmwnIkuGy53pk=; h=Date:From:Subject:To:Reply-To; b=YrfhydbJtIi959MoOieNn1UjzlLULLk9o5WcYbTMoXGjrt3EQUmrsMeE9euIHQzc8 +UtrOc65HVWlJUe7Bnrh7zmgY5fhZBIbCIcKxfN3PMHOvAGUg4wEyOeoStYv2nP62+ Aq+WVsywoVc90eA2wKZcmP0RpfTAzLGa+8D4AiAY= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0D694FA2C; Tue, 9 Apr 2024 16:46:10 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1712681170260810" MIME-Version: 1.0 Date: Tue, 9 Apr 2024 16:46:10 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/textproc/py-Levenshtein To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20240409164610.0D694FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1712681170260810 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Tue Apr 9 16:46:09 UTC 2024 Modified Files: pkgsrc/textproc/py-Levenshtein: Makefile distinfo Log Message: py-Levenshtein: updated to 0.25.1 v0.25.1 Fixed - fix potentially incorrect results of `jaro_winkler` when using high prefix weights To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 pkgsrc/textproc/py-Levenshtein/Makefile cvs rdiff -u -r1.12 -r1.13 pkgsrc/textproc/py-Levenshtein/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1712681170260810 Content-Disposition: inline Content-Length: 2250 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/py-Levenshtein/Makefile diff -u pkgsrc/textproc/py-Levenshtein/Makefile:1.16 pkgsrc/textproc/py-Levenshtein/Makefile:1.17 --- pkgsrc/textproc/py-Levenshtein/Makefile:1.16 Fri Feb 16 19:16:32 2024 +++ pkgsrc/textproc/py-Levenshtein/Makefile Tue Apr 9 16:46:09 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.16 2024/02/16 19:16:32 adam Exp $ +# $NetBSD: Makefile,v 1.17 2024/04/09 16:46:09 adam Exp $ -DISTNAME= Levenshtein-0.25.0 +DISTNAME= Levenshtein-0.25.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= textproc python MASTER_SITES= ${MASTER_SITE_PYPI:=L/Levenshtein/} @@ -12,7 +12,8 @@ LICENSE= gnu-gpl-v2 TOOL_DEPENDS+= cmake-[0-9]*:../../devel/cmake TOOL_DEPENDS+= ${PYPKGPREFIX}-scikit-build>=0.13.0:../../devel/py-scikit-build -DEPENDS+= ${PYPKGPREFIX}-rapidfuzz>=3.1.0:../../textproc/py-rapidfuzz +TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools +DEPENDS+= ${PYPKGPREFIX}-rapidfuzz>=3.8.0:../../textproc/py-rapidfuzz USE_LANGUAGES= c c++ Index: pkgsrc/textproc/py-Levenshtein/distinfo diff -u pkgsrc/textproc/py-Levenshtein/distinfo:1.12 pkgsrc/textproc/py-Levenshtein/distinfo:1.13 --- pkgsrc/textproc/py-Levenshtein/distinfo:1.12 Fri Feb 16 19:16:32 2024 +++ pkgsrc/textproc/py-Levenshtein/distinfo Tue Apr 9 16:46:09 2024 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.12 2024/02/16 19:16:32 adam Exp $ +$NetBSD: distinfo,v 1.13 2024/04/09 16:46:09 adam Exp $ -BLAKE2s (Levenshtein-0.25.0.tar.gz) = fe9542215963046a0934133432b09733e69686004e4af96107aad8d91671b8ee -SHA512 (Levenshtein-0.25.0.tar.gz) = 74c3a33eb7b3df1946f9584d0d1b82d828cba0bc47dc569689a603c58768bfffc7c7c78bfcbfe94e63b4b09512ab4f57d036f444b2aa713059f36024042ae0a9 -Size (Levenshtein-0.25.0.tar.gz) = 150003 bytes +BLAKE2s (Levenshtein-0.25.1.tar.gz) = 3048296097d937b06a1868008127382b96f58e5ebf064e4e7aa7b2975ffe2dbe +SHA512 (Levenshtein-0.25.1.tar.gz) = e96c730ce0657b3ea133a12d3c705b566a476cc02e759c5870697f43a57bc471b28f7f82d7e2c9d5c801230388729335e348397ea9e0334197a1fef73761f8e5 +Size (Levenshtein-0.25.1.tar.gz) = 149954 bytes SHA1 (patch-CMakeLists.txt) = 5e94c7bc9ca41189f8e36fd8ba5f0ff81df175a1 SHA1 (patch-src_Levenshtein_CMakeLists.txt) = 67f56cfa38593351b337b59a058d496890646da8 --_----------=_1712681170260810--