Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 9CAC31A9239 for ; Thu, 27 Jan 2022 11:48:24 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id F0CAE84D41; Thu, 27 Jan 2022 11:48:23 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3724484D39 for ; Thu, 27 Jan 2022 11:48:23 +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 aZKSKepEObqX for ; Thu, 27 Jan 2022 11:48:22 +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 AC3BE84CFC for ; Thu, 27 Jan 2022 11:48:22 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A01C7FB24; Thu, 27 Jan 2022 11:48:22 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1643284102151300" MIME-Version: 1.0 Date: Thu, 27 Jan 2022 11:48:22 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/py-google-api-core To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220127114822.A01C7FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1643284102151300 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Jan 27 11:48:22 UTC 2022 Modified Files: pkgsrc/devel/py-google-api-core: Makefile Log Message: py-google-api-core: add missing dependency Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 pkgsrc/devel/py-google-api-core/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1643284102151300 Content-Disposition: inline Content-Length: 1885 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-google-api-core/Makefile diff -u pkgsrc/devel/py-google-api-core/Makefile:1.19 pkgsrc/devel/py-google-api-core/Makefile:1.20 --- pkgsrc/devel/py-google-api-core/Makefile:1.19 Tue Jan 4 20:53:08 2022 +++ pkgsrc/devel/py-google-api-core/Makefile Thu Jan 27 11:48:22 2022 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.19 2022/01/04 20:53:08 wiz Exp $ +# $NetBSD: Makefile,v 1.20 2022/01/27 11:48:22 wiz Exp $ DISTNAME= google-api-core-1.31.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=g/google-api-core/} @@ -11,21 +11,24 @@ HOMEPAGE= https://github.com/googleapis/ COMMENT= Python support library for multiple Google libraries LICENSE= apache-2.0 -DEPENDS+= ${PYPKGPREFIX}-google-auth>=1.21.1:../../security/py-google-auth +DEPENDS+= ${PYPKGPREFIX}-google-auth>=1.25.0:../../security/py-google-auth DEPENDS+= ${PYPKGPREFIX}-googleapis-common-protos>=1.6.0:../../devel/py-googleapis-common-protos DEPENDS+= ${PYPKGPREFIX}-grpcio>=1.29.0:../../net/py-grpcio +DEPENDS+= ${PYPKGPREFIX}-packaging>=14.3:../../devel/py-packaging DEPENDS+= ${PYPKGPREFIX}-protobuf>=3.12.0:../../devel/py-protobuf DEPENDS+= ${PYPKGPREFIX}-pytz-[0-9]*:../../time/py-pytz DEPENDS+= ${PYPKGPREFIX}-requests>=2.18.0:../../devel/py-requests DEPENDS+= ${PYPKGPREFIX}-setuptools>=40.3.0:../../devel/py-setuptools DEPENDS+= ${PYPKGPREFIX}-six>=1.13.0:../../lang/py-six -TEST_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test PYTHON_VERSIONS_INCOMPATIBLE= 27 USE_LANGUAGES= # none +# all fail, even after 'make install', with: +# ModuleNotFoundError: No module named 'google.api_core' +TEST_ENV+= PYTHONPATH=${WRKSRC}/build/lib do-test: cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} --_----------=_1643284102151300--