Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=I904uzSl; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=Cr3JxXFs Received: by mail.netbsd.org (Postfix, from userid 605) id 33DB284E64; Mon, 29 Apr 2024 08:44:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714380280; bh=zzX1mDfNf7Q4GfCeUdxsV0F6MwgP+IejmSm227DcAdc=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=I904uzSlJbBMI6uJS+I8CWeSfMmRSWi59RMwUIL5QSOVLLVzDDGuEPuUmKYxAXN9v Hwr+lqFoCm+Wl2ZVsQoO40h9P4N797Yg3rSqfJMcXCpn//bIm/DjnNu8Dmrwy/FzHZ kES3ZQXqSybA7CMFeAEBzcXq0iEsqLSi+bgaVJ1E= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2538484D5E for ; Mon, 29 Apr 2024 08:44:39 +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 BMaFazHrxRxx for ; Mon, 29 Apr 2024 08:44:38 +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 46D1E84D0E for ; Mon, 29 Apr 2024 08:44:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714380278; bh=zzX1mDfNf7Q4GfCeUdxsV0F6MwgP+IejmSm227DcAdc=; h=Date:From:Subject:To:Reply-To; b=Cr3JxXFs54ZeH5C0aJrVjpmcIl2RnmFYWsGFeBN3YgjLThaWJqQ4w9ekm6rEzvMvL mhEkCrmUTQ9/5jKjzGqfvMcLk1l5EzAWHCOy7JvevKa8Waho7HHka3HyWJ5NKQK1f2 WtlsK1S2fgDlb0cYHbOmap9wKDnLpknrhvai8Mdk= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 32393FA2C; Mon, 29 Apr 2024 08:44:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1714380278136970" MIME-Version: 1.0 Date: Mon, 29 Apr 2024 08:44:38 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-line_profiler To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20240429084438.32393FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1714380278136970 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Apr 29 08:44:38 UTC 2024 Modified Files: pkgsrc/devel/py-line_profiler: Makefile PLIST distinfo Log Message: py-line_profiler: updated to 4.1.3 4.1.3 * FIX: duration summary now respects the stripzeros argument. To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 pkgsrc/devel/py-line_profiler/Makefile cvs rdiff -u -r1.6 -r1.7 pkgsrc/devel/py-line_profiler/PLIST cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/py-line_profiler/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1714380278136970 Content-Disposition: inline Content-Length: 4239 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-line_profiler/Makefile diff -u pkgsrc/devel/py-line_profiler/Makefile:1.15 pkgsrc/devel/py-line_profiler/Makefile:1.16 --- pkgsrc/devel/py-line_profiler/Makefile:1.15 Mon Feb 12 14:42:21 2024 +++ pkgsrc/devel/py-line_profiler/Makefile Mon Apr 29 08:44:37 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.15 2024/02/12 14:42:21 adam Exp $ +# $NetBSD: Makefile,v 1.16 2024/04/29 08:44:37 adam Exp $ -DISTNAME= line_profiler-4.1.2 +DISTNAME= line_profiler-4.1.3 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=l/line_profiler/} @@ -10,7 +10,7 @@ HOMEPAGE= https://github.com/rkern/line_ COMMENT= Python line-by-line profiler LICENSE= modified-bsd -TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools +TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=68.2.2:../../devel/py-setuptools TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel USE_LANGUAGES= # none Index: pkgsrc/devel/py-line_profiler/PLIST diff -u pkgsrc/devel/py-line_profiler/PLIST:1.6 pkgsrc/devel/py-line_profiler/PLIST:1.7 --- pkgsrc/devel/py-line_profiler/PLIST:1.6 Mon Feb 12 14:42:21 2024 +++ pkgsrc/devel/py-line_profiler/PLIST Mon Apr 29 08:44:37 2024 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.6 2024/02/12 14:42:21 adam Exp $ +@comment $NetBSD: PLIST,v 1.7 2024/04/29 08:44:37 adam Exp $ bin/kernprof-${PYVERSSUFFIX} ${PYSITELIB}/${WHEEL_INFODIR}/LICENSE.txt ${PYSITELIB}/${WHEEL_INFODIR}/LICENSE_Python.txt @@ -22,21 +22,27 @@ ${PYSITELIB}/line_profiler/autoprofile/_ ${PYSITELIB}/line_profiler/autoprofile/__init__.pyo ${PYSITELIB}/line_profiler/autoprofile/ast_profle_transformer.py ${PYSITELIB}/line_profiler/autoprofile/ast_profle_transformer.pyc +${PYSITELIB}/line_profiler/autoprofile/ast_profle_transformer.pyi ${PYSITELIB}/line_profiler/autoprofile/ast_profle_transformer.pyo ${PYSITELIB}/line_profiler/autoprofile/ast_tree_profiler.py ${PYSITELIB}/line_profiler/autoprofile/ast_tree_profiler.pyc +${PYSITELIB}/line_profiler/autoprofile/ast_tree_profiler.pyi ${PYSITELIB}/line_profiler/autoprofile/ast_tree_profiler.pyo ${PYSITELIB}/line_profiler/autoprofile/autoprofile.py ${PYSITELIB}/line_profiler/autoprofile/autoprofile.pyc +${PYSITELIB}/line_profiler/autoprofile/autoprofile.pyi ${PYSITELIB}/line_profiler/autoprofile/autoprofile.pyo ${PYSITELIB}/line_profiler/autoprofile/line_profiler_utils.py ${PYSITELIB}/line_profiler/autoprofile/line_profiler_utils.pyc +${PYSITELIB}/line_profiler/autoprofile/line_profiler_utils.pyi ${PYSITELIB}/line_profiler/autoprofile/line_profiler_utils.pyo ${PYSITELIB}/line_profiler/autoprofile/profmod_extractor.py ${PYSITELIB}/line_profiler/autoprofile/profmod_extractor.pyc +${PYSITELIB}/line_profiler/autoprofile/profmod_extractor.pyi ${PYSITELIB}/line_profiler/autoprofile/profmod_extractor.pyo ${PYSITELIB}/line_profiler/autoprofile/util_static.py ${PYSITELIB}/line_profiler/autoprofile/util_static.pyc +${PYSITELIB}/line_profiler/autoprofile/util_static.pyi ${PYSITELIB}/line_profiler/autoprofile/util_static.pyo ${PYSITELIB}/line_profiler/explicit_profiler.py ${PYSITELIB}/line_profiler/explicit_profiler.pyc Index: pkgsrc/devel/py-line_profiler/distinfo diff -u pkgsrc/devel/py-line_profiler/distinfo:1.8 pkgsrc/devel/py-line_profiler/distinfo:1.9 --- pkgsrc/devel/py-line_profiler/distinfo:1.8 Mon Feb 12 14:42:21 2024 +++ pkgsrc/devel/py-line_profiler/distinfo Mon Apr 29 08:44:37 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.8 2024/02/12 14:42:21 adam Exp $ +$NetBSD: distinfo,v 1.9 2024/04/29 08:44:37 adam Exp $ -BLAKE2s (line_profiler-4.1.2.tar.gz) = 19246782af50977b0b03c8dc3be533dfdc1a8328249353c8d2a9825ee6edeff7 -SHA512 (line_profiler-4.1.2.tar.gz) = e5fb3c84d08b4e46a46618efb041eea4d46b2e0a5a04554c9b45fde5084e02ea5e99c93b81886bdc082decfdabf7bbc28efb3df1076899363005df819ef16b8a -Size (line_profiler-4.1.2.tar.gz) = 78149 bytes +BLAKE2s (line_profiler-4.1.3.tar.gz) = 01223ece562bc8b4775b4bb015b1ce82a423bf098e068a322b605728eba6933f +SHA512 (line_profiler-4.1.3.tar.gz) = f048571940a0556c58ad6f699c17c29eb632f21c4b97a6012b08f01bac8f6e05de1cc6d42048528aa75466f51c9c237f50648974617606f8a48bc87098f94422 +Size (line_profiler-4.1.3.tar.gz) = 196850 bytes --_----------=_1714380278136970--