Received: by mail.netbsd.org (Postfix, from userid 605) id BC54F84E64; Thu, 9 Jan 2020 14:21:07 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4379B84D95 for ; Thu, 9 Jan 2020 14:21:07 +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 IAAbYfd4iWuN for ; Thu, 9 Jan 2020 14:21:06 +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 ADD8084CFC for ; Thu, 9 Jan 2020 14:21:06 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id ABA34FBF4; Thu, 9 Jan 2020 14:21:06 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1578579666102490" MIME-Version: 1.0 Date: Thu, 9 Jan 2020 14:21:06 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20200109142106.ABA34FBF4@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. --_----------=_1578579666102490 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Jan 9 14:21:06 UTC 2020 Modified Files: pkgsrc/security/py-google-auth: Makefile pkgsrc/security/py-google-auth-httplib2: Makefile pkgsrc/security/py-google-auth-oauthlib: Makefile pkgsrc/www/py-google-api-python-client: Makefile Log Message: *: py-cachetools only supports python 3.x now, pass down to dependencies To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/security/py-google-auth/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/security/py-google-auth-httplib2/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/security/py-google-auth-oauthlib/Makefile cvs rdiff -u -r1.29 -r1.30 pkgsrc/www/py-google-api-python-client/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1578579666102490 Content-Disposition: inline Content-Length: 3200 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/py-google-auth/Makefile diff -u pkgsrc/security/py-google-auth/Makefile:1.5 pkgsrc/security/py-google-auth/Makefile:1.6 --- pkgsrc/security/py-google-auth/Makefile:1.5 Wed Jan 8 11:41:50 2020 +++ pkgsrc/security/py-google-auth/Makefile Thu Jan 9 14:21:06 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2020/01/08 11:41:50 adam Exp $ +# $NetBSD: Makefile,v 1.6 2020/01/09 14:21:06 wiz Exp $ DISTNAME= google-auth-1.10.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -21,6 +21,8 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-oauth2clie TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test TEST_DEPENDS+= ${PYPKGPREFIX}-test-localserver-[0-9]*:../../devel/py-test-localserver +PYTHON_VERSIONS_INCOMPATIBLE= 27 # py-cachetools + USE_LANGUAGES= # none do-test: Index: pkgsrc/security/py-google-auth-httplib2/Makefile diff -u pkgsrc/security/py-google-auth-httplib2/Makefile:1.1 pkgsrc/security/py-google-auth-httplib2/Makefile:1.2 --- pkgsrc/security/py-google-auth-httplib2/Makefile:1.1 Tue Jul 2 12:00:13 2019 +++ pkgsrc/security/py-google-auth-httplib2/Makefile Thu Jan 9 14:21:06 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2019/07/02 12:00:13 adam Exp $ +# $NetBSD: Makefile,v 1.2 2020/01/09 14:21:06 wiz Exp $ DISTNAME= google-auth-httplib2-0.0.3 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -12,6 +12,7 @@ LICENSE= apache-2.0 DEPENDS+= ${PYPKGPREFIX}-httplib2>=0.9.1:../../www/py-httplib2 +PYTHON_VERSIONS_INCOMPATIBLE= 27 USE_LANGUAGES= # none .include "../../lang/python/egg.mk" Index: pkgsrc/security/py-google-auth-oauthlib/Makefile diff -u pkgsrc/security/py-google-auth-oauthlib/Makefile:1.2 pkgsrc/security/py-google-auth-oauthlib/Makefile:1.3 --- pkgsrc/security/py-google-auth-oauthlib/Makefile:1.2 Thu Nov 7 13:35:35 2019 +++ pkgsrc/security/py-google-auth-oauthlib/Makefile Thu Jan 9 14:21:06 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2019/11/07 13:35:35 adam Exp $ +# $NetBSD: Makefile,v 1.3 2020/01/09 14:21:06 wiz Exp $ DISTNAME= google-auth-oauthlib-0.4.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -14,6 +14,8 @@ DEPENDS+= ${PYPKGPREFIX}-google-auth-[0- DEPENDS+= ${PYPKGPREFIX}-requests-oauthlib>=0.7.0:../../security/py-requests-oauthlib USE_LANGUAGES= # none + +PYTHON_VERSIONS_INCOMPATIBLE= 27 post-install: cd ${DESTDIR}${PREFIX}/bin && \ Index: pkgsrc/www/py-google-api-python-client/Makefile diff -u pkgsrc/www/py-google-api-python-client/Makefile:1.29 pkgsrc/www/py-google-api-python-client/Makefile:1.30 --- pkgsrc/www/py-google-api-python-client/Makefile:1.29 Tue Aug 13 12:43:13 2019 +++ pkgsrc/www/py-google-api-python-client/Makefile Thu Jan 9 14:21:06 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.29 2019/08/13 12:43:13 adam Exp $ +# $NetBSD: Makefile,v 1.30 2020/01/09 14:21:06 wiz Exp $ DISTNAME= google-api-python-client-1.7.11 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -18,6 +18,8 @@ TEST_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9] TEST_DEPENDS+= ${PYPKGPREFIX}-oauth2client-[0-9]*:../../security/py-oauth2client TEST_DEPENDS+= ${PYPKGPREFIX}-unittest2-[0-9]*:../../devel/py-unittest2 +PYTHON_VERSIONS_INCOMPATIBLE= 27 + USE_LANGUAGES= # none .include "../../lang/python/egg.mk" --_----------=_1578579666102490--