Received: by mail.netbsd.org (Postfix, from userid 605) id E765D84D87; Thu, 6 Sep 2018 13:43:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 00A8684D7F for ; Thu, 6 Sep 2018 13:43:19 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id qInDuzvxkZBA for ; Thu, 6 Sep 2018 13:43:18 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 33FA684D73 for ; Thu, 6 Sep 2018 13:43:18 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2E475FBF8; Thu, 6 Sep 2018 13:43:18 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_153624139863070" MIME-Version: 1.0 Date: Thu, 6 Sep 2018 13:43:18 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/www/py-urllib3 To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20180906134318.2E475FBF8@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. --_----------=_153624139863070 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Sep 6 13:43:18 UTC 2018 Modified Files: pkgsrc/www/py-urllib3: Makefile Log Message: py-urllib3: fix py-ipaddress dependency To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/www/py-urllib3/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_153624139863070 Content-Disposition: inline Content-Length: 895 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/py-urllib3/Makefile diff -u pkgsrc/www/py-urllib3/Makefile:1.8 pkgsrc/www/py-urllib3/Makefile:1.9 --- pkgsrc/www/py-urllib3/Makefile:1.8 Sat Jun 16 12:10:40 2018 +++ pkgsrc/www/py-urllib3/Makefile Thu Sep 6 13:43:18 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2018/06/16 12:10:40 adam Exp $ +# $NetBSD: Makefile,v 1.9 2018/09/06 13:43:18 adam Exp $ DISTNAME= urllib3-1.23 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -15,7 +15,9 @@ DEPENDS+= ${PYPKGPREFIX}-Socks>=1.6.0:.. DEPENDS+= ${PYPKGPREFIX}-certifi-[0-9]*:../../security/py-certifi DEPENDS+= ${PYPKGPREFIX}-cryptography>=1.3.4:../../security/py-cryptography DEPENDS+= ${PYPKGPREFIX}-idna>=2.0.0:../../www/py-idna -.if "${PYPKGPREFIX}" == "py27" + +.include "../../lang/python/pyversion.mk" +.if ${_PYTHON_VERSION} == 27 DEPENDS+= ${PYPKGPREFIX}-ipaddress-[0-9]*:../../net/py-ipaddress .endif --_----------=_153624139863070--