Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=urn3r/YI; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=xufpBK40 Received: by mail.netbsd.org (Postfix, from userid 605) id D596184E63; Mon, 13 May 2024 13:56:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715608592; bh=nUV+Yt+Mk5trzsbGaYzJGJhYaW4lv2I2KX0lVwOFxgc=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=urn3r/YITwbQ9jvIL9udMgGOfWqJzaCXKwWglZxeApu7B0V3cUNl7TRvSatLSCTw9 SQIxHlM0Of1DdP4fmRuzR5V165HT4swFNI6SlyGNIAt/iDhIC944FKKXCI0MZ6oi0m wXVZCPfCcIubnKuoUEOOKpl91D2ilR7UMrrO7dc4= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C964084D2D for ; Mon, 13 May 2024 13:56:30 +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 mKEnODoW79Nl for ; Mon, 13 May 2024 13:56:30 +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 28BD984CD7 for ; Mon, 13 May 2024 13:56:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715608590; bh=nUV+Yt+Mk5trzsbGaYzJGJhYaW4lv2I2KX0lVwOFxgc=; h=Date:From:Subject:To:Reply-To; b=xufpBK40yxUpaCchLpV7qVs5oJ/tr3A/YJBvv+dHn5i0J2T/ofW0jjQ2geogK+FTG GuT7trZ45KBVKeIOJ7m29xzF7j5Rd/Ho2wgSKSIH3fcjDsUP1ZmjuoCT7C+DgACRGJ QNUanKGu0iCzpmXO4GrFn8WkofWZL3++Yxvy6sn4= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 23822FA2C; Mon, 13 May 2024 13:56:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1715608590100630" MIME-Version: 1.0 Date: Mon, 13 May 2024 13:56:30 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/chat/py-zulip-term To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20240513135630.23822FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1715608590100630 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Mon May 13 13:56:30 UTC 2024 Modified Files: pkgsrc/chat/py-zulip-term: Makefile Log Message: py-zulip-term: Fix PYTHON_VERSIONS_INCOMPATIBLE. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/chat/py-zulip-term/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1715608590100630 Content-Disposition: inline Content-Length: 709 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/chat/py-zulip-term/Makefile diff -u pkgsrc/chat/py-zulip-term/Makefile:1.1 pkgsrc/chat/py-zulip-term/Makefile:1.2 --- pkgsrc/chat/py-zulip-term/Makefile:1.1 Mon May 13 09:50:14 2024 +++ pkgsrc/chat/py-zulip-term/Makefile Mon May 13 13:56:29 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2024/05/13 09:50:14 wiz Exp $ +# $NetBSD: Makefile,v 1.2 2024/05/13 13:56:29 jperkin Exp $ DISTNAME= zulip-term-0.7.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -28,7 +28,7 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov>= USE_LANGUAGES= # none -PYTHON_VERSIONS_INCOMPATIBLE= 27 +PYTHON_VERSIONS_INCOMPATIBLE= 27 38 .include "../../lang/python/wheel.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1715608590100630--