Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=jBNgpovV; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=woGjzJMA Received: by mail.netbsd.org (Postfix, from userid 605) id 9D68584E8C; Mon, 15 Apr 2024 05:09:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1713157788; bh=S1PoioVGt+E7siLXhfQh0cxyFaqczR8Asrl75pg810I=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=jBNgpovVRwocdN5TDJQx5XZB+UJ5vXGFY4Da+0giH7dBDP3K2JSCekzhSKrN15zr4 Wk+G/xLB5s/VNxp8hzYzm+3Mbt+iqhJRWLb0vchTzhf7dGbaecbPAHFLBUxl4gU3Dw ZmoxuYmWq8W1akuJ8dW2Ad71+ZQMK6ztVSGo+8+0= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8C14584D61 for ; Mon, 15 Apr 2024 05:09:47 +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 ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id YVWfqTumgasS for ; Mon, 15 Apr 2024 05:09:47 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id ECDAB84CD9 for ; Mon, 15 Apr 2024 05:09:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1713157787; bh=S1PoioVGt+E7siLXhfQh0cxyFaqczR8Asrl75pg810I=; h=Date:From:Subject:To:Reply-To; b=woGjzJMAFJuXFsKSZjuA7ZVfDcXrnzGqpdi6OBi3JrudxGBShPLvj95attkrm4lFU 3q6EBXtaAbtWASqoufF1/cVjqxo9acazsYWoSHi8rQRKfsUEh6dQDGA/zho9uILKOT 4Ns2T+NJq179L307HCKZLBCfSzLbItfyQ6q2YGRg= Received: by cvs.NetBSD.org (Postfix, from userid 500) id DD6C4FA2C; Mon, 15 Apr 2024 05:09:46 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_171315778658800" MIME-Version: 1.0 Date: Mon, 15 Apr 2024 05:09:46 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel/py-argcomplete To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20240415050946.DD6C4FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_171315778658800 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Apr 15 05:09:46 UTC 2024 Modified Files: pkgsrc/devel/py-argcomplete: Makefile distinfo Log Message: py-argcomplete: updated to 3.3.0 Changes for v3.3.0 (2024-04-14) - Preserve compatibility with argparse option tuples of length 4. This update is required to use argcomplete on Python 3.11.9+ or 3.12.3+. To generate a diff of this commit: cvs rdiff -u -r1.39 -r1.40 pkgsrc/devel/py-argcomplete/Makefile cvs rdiff -u -r1.32 -r1.33 pkgsrc/devel/py-argcomplete/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_171315778658800 Content-Disposition: inline Content-Length: 2072 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-argcomplete/Makefile diff -u pkgsrc/devel/py-argcomplete/Makefile:1.39 pkgsrc/devel/py-argcomplete/Makefile:1.40 --- pkgsrc/devel/py-argcomplete/Makefile:1.39 Sat Mar 9 06:58:10 2024 +++ pkgsrc/devel/py-argcomplete/Makefile Mon Apr 15 05:09:46 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.39 2024/03/09 06:58:10 adam Exp $ +# $NetBSD: Makefile,v 1.40 2024/04/15 05:09:46 adam Exp $ -DISTNAME= argcomplete-3.2.3 +DISTNAME= argcomplete-3.3.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=a/argcomplete/} @@ -10,6 +10,7 @@ HOMEPAGE= https://github.com/kislyuk/arg COMMENT= Bash and other shells tab completion for argparse LICENSE= apache-2.0 +TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=67.7.2:../../devel/py-setuptools TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools_scm>=6.2:../../devel/py-setuptools_scm TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel TEST_DEPENDS+= ${PYPKGPREFIX}-coverage-[0-9]*:../../devel/py-coverage Index: pkgsrc/devel/py-argcomplete/distinfo diff -u pkgsrc/devel/py-argcomplete/distinfo:1.32 pkgsrc/devel/py-argcomplete/distinfo:1.33 --- pkgsrc/devel/py-argcomplete/distinfo:1.32 Sat Mar 9 06:58:10 2024 +++ pkgsrc/devel/py-argcomplete/distinfo Mon Apr 15 05:09:46 2024 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.32 2024/03/09 06:58:10 adam Exp $ +$NetBSD: distinfo,v 1.33 2024/04/15 05:09:46 adam Exp $ -BLAKE2s (argcomplete-3.2.3.tar.gz) = a6fba066a73cfdc74a19b2637b109bc9f98976cbaf3262aeaed7dddb40cef8b6 -SHA512 (argcomplete-3.2.3.tar.gz) = 25c73ec01a9c7e0b3d2cab1b86953369b0464431e86d6be2ba14d0209c1e1bc9fe5c5ce02590d86a44df74c9e828d4579b1265d2a37adf21f1e8bfdfb2350a44 -Size (argcomplete-3.2.3.tar.gz) = 81130 bytes +BLAKE2s (argcomplete-3.3.0.tar.gz) = 2d595dfcbd41ba3c65d5c862da12ba259bc0708780f4e00b889d0f947db5bf2c +SHA512 (argcomplete-3.3.0.tar.gz) = 30776b7e2dc3ee1f7dfcd665d2ae6e403b09644829c1cd7a30ce80e39c6bd7331cc0b7bd7d6cec58a409ef6ec209ca6b1cca0888e83a7a9a228658fa72f6e578 +Size (argcomplete-3.3.0.tar.gz) = 81832 bytes --_----------=_171315778658800--