Received: by mail.netbsd.org (Postfix, from userid 605) id 781FA84F1A; Fri, 8 Jul 2022 14:45:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AFB3B84F19 for ; Fri, 8 Jul 2022 14:45:36 +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 k7qTNLNr8nEV for ; Fri, 8 Jul 2022 14:45:36 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0AE5184CEA for ; Fri, 8 Jul 2022 14:45:36 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0495FFB1A; Fri, 8 Jul 2022 14:45:36 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1657291535273520" MIME-Version: 1.0 Date: Fri, 8 Jul 2022 14:45:35 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/security/py-requests-kerberos To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220708144536.0495FFB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1657291535273520 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Fri Jul 8 14:45:35 UTC 2022 Modified Files: pkgsrc/security/py-requests-kerberos: Makefile Log Message: py-requests-kerberos: mark as not for python 2.x To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/security/py-requests-kerberos/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1657291535273520 Content-Disposition: inline Content-Length: 1127 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/py-requests-kerberos/Makefile diff -u pkgsrc/security/py-requests-kerberos/Makefile:1.6 pkgsrc/security/py-requests-kerberos/Makefile:1.7 --- pkgsrc/security/py-requests-kerberos/Makefile:1.6 Thu Apr 21 11:00:01 2022 +++ pkgsrc/security/py-requests-kerberos/Makefile Fri Jul 8 14:45:35 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2022/04/21 11:00:01 wiz Exp $ +# $NetBSD: Makefile,v 1.7 2022/07/08 14:45:35 wiz Exp $ DISTNAME= requests-kerberos-0.12.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -13,8 +13,9 @@ LICENSE= apache-2.0 DEPENDS+= ${PYPKGPREFIX}-kerberos>=1.1.8nb1:../../security/py-kerberos DEPENDS+= ${PYPKGPREFIX}-requests>=1.1.0:../../devel/py-requests +DEPENDS+= ${PYPKGPREFIX}-cryptography-[0-9]*:../../security/py-cryptography -PYTHON_VERSIONED_DEPENDENCIES+= cryptography +PYTHON_VERSIONS_INCOMPATIBLE= 27 USE_LANGUAGES= # none @@ -24,5 +25,4 @@ SUBST_FILES.requires= setup.py SUBST_SED.requires= -e 's/pykerberos/kerberos/' .include "../../lang/python/egg.mk" -.include "../../lang/python/versioned_dependencies.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1657291535273520--