Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=zFFwO4ew; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=2ZWapQb5 Received: by mail.netbsd.org (Postfix, from userid 605) id C43AF84E60; Tue, 2 Apr 2024 23:24:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1712100253; bh=hWctd5rhQZGZB2XJMhwLOu++mRYdti5fyt+vRqTjfE8=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=zFFwO4ew7mGqnft3d08TQ3aMNcwx32Y4bQs9BfupUtV748PYmOQhIFDM1dYi8bMp+ x+g9Jy15auKPATjTazXmRMwBh9HHm1Mqx43avNjOhkMLO9w4jQUIloksyR28Z4c3L5 VCy8nnQoqAy3qYah4mPmAFq11vUBZ4whj7fCG6j8= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B035484E5B for ; Tue, 2 Apr 2024 23:24:12 +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 GUCaev5pfW8T for ; Tue, 2 Apr 2024 23:24:12 +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 05C0C84E55 for ; Tue, 2 Apr 2024 23:24:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1712100252; bh=hWctd5rhQZGZB2XJMhwLOu++mRYdti5fyt+vRqTjfE8=; h=Date:From:Subject:To:Reply-To; b=2ZWapQb5656R1hQG05q91oZ5xs9ySnT33s29jEoU4thN+BtmvwVEDJv7SLfoUtstA A8sUMBfZyLo5OM903nB0poedZmz5WytPFUV2+7uko8kJy5H4Km/sX6d1KiVIhwyUmE RZtoo3ydpuyOuMz/hkOrlHV273WPNC9+suV9RtWM= Received: by cvs.NetBSD.org (Postfix, from userid 500) id E4174FA2C; Tue, 2 Apr 2024 23:24:11 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_171210025155850" MIME-Version: 1.0 Date: Tue, 2 Apr 2024 23:24:11 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/devel/py-semver To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20240402232411.E4174FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_171210025155850 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Tue Apr 2 23:24:11 UTC 2024 Modified Files: pkgsrc/devel/py-semver: Makefile Log Message: py-semver: Fix PYTHON_VERSIONS_INCOMPATIBLE. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-semver/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_171210025155850 Content-Disposition: inline Content-Length: 800 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-semver/Makefile diff -u pkgsrc/devel/py-semver/Makefile:1.1 pkgsrc/devel/py-semver/Makefile:1.2 --- pkgsrc/devel/py-semver/Makefile:1.1 Mon Apr 1 21:43:17 2024 +++ pkgsrc/devel/py-semver/Makefile Tue Apr 2 23:24:11 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2024/04/01 21:43:17 wiz Exp $ +# $NetBSD: Makefile,v 1.2 2024/04/02 23:24:11 jperkin Exp $ DISTNAME= semver-3.0.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -14,6 +14,8 @@ TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov-[0-9]*:../../devel/py-test-cov +PYTHON_VERSIONS_INCOMPATIBLE= 27 + post-install: ${MV} ${DESTDIR}${PREFIX}/bin/pysemver ${DESTDIR}${PREFIX}/bin/pysemver-${PYVERSSUFFIX} --_----------=_171210025155850--