Received: by mail.netbsd.org (Postfix, from userid 605) id 802F284DA4; Thu, 4 Apr 2019 07:53:53 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0315784DAC for ; Thu, 4 Apr 2019 07:53:53 +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 1O_d_vTyop3C for ; Thu, 4 Apr 2019 07:53:52 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 5487C84D32 for ; Thu, 4 Apr 2019 07:53:52 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4DE9DFB16; Thu, 4 Apr 2019 07:53:52 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_155436443225540" MIME-Version: 1.0 Date: Thu, 4 Apr 2019 07:53:52 +0000 From: "Benny Siegert" Subject: CVS commit: pkgsrc/net/py-botocore To: pkgsrc-changes@NetBSD.org Reply-To: bsiegert@netbsd.org X-Mailer: log_accum Message-Id: <20190404075352.4DE9DFB16@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. --_----------=_155436443225540 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: bsiegert Date: Thu Apr 4 07:53:52 UTC 2019 Modified Files: pkgsrc/net/py-botocore: Makefile Log Message: botocore: depend on cElementTree if using Python 2.7. This works around upstream issue boto/botocore#1707 and PR pkg/54094. To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28 pkgsrc/net/py-botocore/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_155436443225540 Content-Disposition: inline Content-Length: 1004 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/py-botocore/Makefile diff -u pkgsrc/net/py-botocore/Makefile:1.27 pkgsrc/net/py-botocore/Makefile:1.28 --- pkgsrc/net/py-botocore/Makefile:1.27 Tue Feb 12 10:51:55 2019 +++ pkgsrc/net/py-botocore/Makefile Thu Apr 4 07:53:52 2019 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.27 2019/02/12 10:51:55 adam Exp $ +# $NetBSD: Makefile,v 1.28 2019/04/04 07:53:52 bsiegert Exp $ DISTNAME= botocore-1.12.92 +PKGREVISION= 1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= net python MASTER_SITES= ${MASTER_SITE_PYPI:=b/botocore/} @@ -15,7 +16,12 @@ DEPENDS+= ${PYPKGPREFIX}-docutils>=0.12: DEPENDS+= ${PYPKGPREFIX}-jmespath>=0.7.1<1:../../textproc/py-jmespath DEPENDS+= ${PYPKGPREFIX}-urllib3-[0-9]*:../../www/py-urllib3 +.include "../../lang/python/egg.mk" + +.if ${PYPKGPREFIX} == "py27" +DEPENDS+= ${PYPKGPREFIX}-cElementTree-[0-9]*:../../textproc/py-cElementTree +.endif + USE_LANGUAGES= # none -.include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" --_----------=_155436443225540--