Received: by mail.netbsd.org (Postfix, from userid 605) id DE74584F74; Sun, 14 Jan 2024 20:08:05 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0DCFA84CFC for ; Sun, 14 Jan 2024 20:08:05 +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 K1j-353dRNtT for ; Sun, 14 Jan 2024 20:08:04 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 4F33384D8C for ; Sun, 14 Jan 2024 20:08:04 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4B77AFA42; Sun, 14 Jan 2024 20:08:04 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1705262884213190" MIME-Version: 1.0 Date: Sun, 14 Jan 2024 20:08:04 +0000 From: "Amitai Schleier" Subject: CVS commit: pkgsrc/devel/py-tlsh To: pkgsrc-changes@NetBSD.org Reply-To: schmonz@netbsd.org X-Mailer: log_accum Message-Id: <20240114200804.4B77AFA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1705262884213190 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: schmonz Date: Sun Jan 14 20:08:04 UTC 2024 Modified Files: pkgsrc/devel/py-tlsh: Makefile Log Message: py-tlsh: update to 4.7.2. Changes: 4.7.2: This Python module supercedes the python-tlsh package on PyPi. The improvements in 4.7.2, are that we added additional functions to Python * lvalue * q1ratio * q2ratio * checksum * bucket_value * is_valid 4.5.0: * fixed this package so that it works on Windows * compatibility with VirusTotal adoption of TLSH: updated to the T1 hash format with backwards compatibility for old hashes * fixed the q3=0 divide by zero bug [issue 79] pkgsrc changes: - Switch to PyPi upstream To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/py-tlsh/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1705262884213190 Content-Disposition: inline Content-Length: 976 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-tlsh/Makefile diff -u pkgsrc/devel/py-tlsh/Makefile:1.2 pkgsrc/devel/py-tlsh/Makefile:1.3 --- pkgsrc/devel/py-tlsh/Makefile:1.2 Mon Jan 10 18:56:35 2022 +++ pkgsrc/devel/py-tlsh/Makefile Sun Jan 14 20:08:04 2024 @@ -1,13 +1,17 @@ -# $NetBSD: Makefile,v 1.2 2022/01/10 18:56:35 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2024/01/14 20:08:04 schmonz Exp $ -PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 1 -WRKSRC= ${WRKDIR}/${DISTNAME}/py_ext +DISTNAME= py-tlsh-4.7.2 +PKGNAME= ${DISTNAME:S/py-/${PYPKGPREFIX}-/} +CATEGORIES= devel python +MASTER_SITES= ${MASTER_SITE_PYPI:=p/py-tlsh/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://pypi.org/project/py-tlsh/ +COMMENT= TLSH C++ extension for Python +LICENSE= apache-2.0 USE_LANGUAGES= c c++ -EGG_NAME= tlsh-0.2.0 -.include "../../devel/tlsh/Makefile.common" .include "../../devel/tlsh/buildlink3.mk" .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1705262884213190--