Received: by mail.netbsd.org (Postfix, from userid 605) id 6C21284DCB; Wed, 13 May 2020 03:23:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E97A684D9D for ; Wed, 13 May 2020 03:23:46 +0000 (UTC) X-Virus-Scanned: amavisd-new at 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 OsMJ2PXRp24h for ; Wed, 13 May 2020 03:23:46 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 4955D84D80 for ; Wed, 13 May 2020 03:23:46 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 43954FB27; Wed, 13 May 2020 03:23:46 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1589340226211070" MIME-Version: 1.0 Date: Wed, 13 May 2020 03:23:46 +0000 From: "Roland Illig" Subject: CVS commit: pkgsrc/databases/py-sqlrelay To: pkgsrc-changes@NetBSD.org Reply-To: rillig@netbsd.org X-Mailer: log_accum Message-Id: <20200513032346.43954FB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1589340226211070 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: rillig Date: Wed May 13 03:23:46 UTC 2020 Modified Files: pkgsrc/databases/py-sqlrelay: Makefile Log Message: databases/py-sqlrelay: avoid USE_TOOLS+=perl warning To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.25 pkgsrc/databases/py-sqlrelay/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1589340226211070 Content-Disposition: inline Content-Length: 878 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/py-sqlrelay/Makefile diff -u pkgsrc/databases/py-sqlrelay/Makefile:1.24 pkgsrc/databases/py-sqlrelay/Makefile:1.25 --- pkgsrc/databases/py-sqlrelay/Makefile:1.24 Wed May 6 14:04:24 2020 +++ pkgsrc/databases/py-sqlrelay/Makefile Wed May 13 03:23:46 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.24 2020/05/06 14:04:24 adam Exp $ +# $NetBSD: Makefile,v 1.25 2020/05/13 03:23:46 rillig Exp $ PKGNAME= ${PYPKGPREFIX}-${DISTNAME} PKGREVISION= 13 @@ -8,10 +8,13 @@ COMMENT= Python extension for SQL Relay LICENSE= modified-bsd +# TODO: switch to PYTHON_VERSIONS_INCOMPATIBLE PYTHON_VERSIONS_ACCEPTED= 36 27 # 37 fails as of 1.0.0 .include "../../lang/python/pyversion.mk" +CONFIGURE_ARGS+= --disable-perl + .if ${_PYTHON_VERSION} == 27 CONFIGURE_ARGS+= --disable-python3 CONFIGURE_ARGS+= --with-python-prefix=${PREFIX} --_----------=_1589340226211070--