Received: by mail.netbsd.org (Postfix, from userid 605) id 1B8CC84E9B; Thu, 18 May 2023 09:56:53 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4D04E84E7F for ; Thu, 18 May 2023 09:56:52 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id ii5zHvGO_DaA for ; Thu, 18 May 2023 09:56:51 +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 A160784D28 for ; Thu, 18 May 2023 09:56:51 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2049BFA87; Thu, 18 May 2023 09:56:51 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1684403811224380" MIME-Version: 1.0 Date: Thu, 18 May 2023 09:56:51 +0000 From: "nikita" Subject: CVS commit: pkgsrc/devel/py-libusb1 To: pkgsrc-changes@NetBSD.org Reply-To: nikita@netbsd.org X-Mailer: log_accum Message-Id: <20230518095651.2049BFA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1684403811224380 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nikita Date: Thu May 18 09:56:51 UTC 2023 Modified Files: pkgsrc/devel/py-libusb1: Makefile Log Message: py-libusb1: upstream dropped support for python < 3.6 in version 3.0 To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/py-libusb1/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1684403811224380 Content-Disposition: inline Content-Length: 683 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-libusb1/Makefile diff -u pkgsrc/devel/py-libusb1/Makefile:1.3 pkgsrc/devel/py-libusb1/Makefile:1.4 --- pkgsrc/devel/py-libusb1/Makefile:1.3 Tue May 16 15:47:14 2023 +++ pkgsrc/devel/py-libusb1/Makefile Thu May 18 09:56:50 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2023/05/16 15:47:14 nikita Exp $ +# $NetBSD: Makefile,v 1.4 2023/05/18 09:56:50 nikita Exp $ DISTNAME= libusb1-3.0.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -12,5 +12,8 @@ LICENSE= gnu-lgpl-v2 USE_LANGUAGES= # none +# dropped support for < 3.6 in version 3.0 +PYTHON_VERSIONS_INCOMPATIBLE= 27 + .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1684403811224380--