Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=D5XH4pSu; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=fjS4FNGM Received: by mail.netbsd.org (Postfix, from userid 605) id 9302D84F46; Wed, 1 May 2024 08:58:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714553934; bh=l8H5b8yf0fArkez97MZm9q9Lxq8fWmHzKm/8hh37Qz0=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=D5XH4pSu08wT4ozwBqUrlQ58qHMqZFmm2lAkly3vVTfx3YXj0JFCkWEqvffKeRKCE MTutmQkNvTvqE9Ya7sQ55pEbf7IFuQO9Bt0bqLbuPCL/dn866JDXBXdrT6tcs9FUKj I70xsAcHG4JoD1H6UN6WePAeJgnqffHnJ4VzWtTg= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 848F984E69 for ; Wed, 1 May 2024 08:58:53 +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 uGPF0EZtCE-r for ; Wed, 1 May 2024 08:58:53 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D92EA84D28 for ; Wed, 1 May 2024 08:58:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714553933; bh=l8H5b8yf0fArkez97MZm9q9Lxq8fWmHzKm/8hh37Qz0=; h=Date:From:Subject:To:Reply-To; b=fjS4FNGMZur/xtOZJyqvdBInS3fYzGWQ0iIOaj7jkXy/RN3Z6OisOK/9hZVR+Wtqa 4uQhq/VN2j4SJ/Y1R12odSgZJcSXG5Pv8iTPYhTCIl4IdAy/K5Sra5EvEkk0DfxGBD dFz26fKD9WuQqeJ6up6eFabOBGjPDGt8CKgttgrw= Received: by cvs.NetBSD.org (Postfix, from userid 500) id D39D2FA2C; Wed, 1 May 2024 08:58:52 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1714553932116730" MIME-Version: 1.0 Date: Wed, 1 May 2024 08:58:52 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/sysutils/py-salt-pepper To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20240501085852.D39D2FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1714553932116730 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Wed May 1 08:58:52 UTC 2024 Modified Files: pkgsrc/sysutils/py-salt-pepper: Makefile Log Message: py-salt-pepper: Fix PYTHON_VERSIONS_INCOMPATIBLE. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/sysutils/py-salt-pepper/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1714553932116730 Content-Disposition: inline Content-Length: 732 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/py-salt-pepper/Makefile diff -u pkgsrc/sysutils/py-salt-pepper/Makefile:1.6 pkgsrc/sysutils/py-salt-pepper/Makefile:1.7 --- pkgsrc/sysutils/py-salt-pepper/Makefile:1.6 Tue Apr 30 13:56:53 2024 +++ pkgsrc/sysutils/py-salt-pepper/Makefile Wed May 1 08:58:52 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2024/04/30 13:56:53 wiz Exp $ +# $NetBSD: Makefile,v 1.7 2024/05/01 08:58:52 jperkin Exp $ DISTNAME= salt-pepper-0.7.6 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -17,6 +17,8 @@ DEPENDS+= salt-[0-9]*:../../sysutils/sal USE_LANGUAGES= c # for tests +PYTHON_VERSIONS_INCOMPATIBLE= 27 + post-install: cd ${DESTDIR}${PREFIX}/bin && \ ${MV} pepper pepper-${PYVERSSUFFIX} || ${TRUE} --_----------=_1714553932116730--