Received: by mail.netbsd.org (Postfix, from userid 605) id 02A6C84D57; Sat, 19 Aug 2017 13:58:02 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 88BB584D37 for ; Sat, 19 Aug 2017 13:58:01 +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 hY8h3Z5k6CvH for ; Sat, 19 Aug 2017 13:58:01 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id DED5B84CDC for ; Sat, 19 Aug 2017 13:58:00 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D6443FAD0; Sat, 19 Aug 2017 13:58:00 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_150315108076200" MIME-Version: 1.0 Date: Sat, 19 Aug 2017 13:58:00 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/textproc/py-sphinx To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20170819135800.D6443FAD0@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. --_----------=_150315108076200 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Sat Aug 19 13:58:00 UTC 2017 Modified Files: pkgsrc/textproc/py-sphinx: Makefile Log Message: Depend on py-typing only for Python < 3.6 To generate a diff of this commit: cvs rdiff -u -r1.40 -r1.41 pkgsrc/textproc/py-sphinx/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_150315108076200 Content-Disposition: inline Content-Length: 1149 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/py-sphinx/Makefile diff -u pkgsrc/textproc/py-sphinx/Makefile:1.40 pkgsrc/textproc/py-sphinx/Makefile:1.41 --- pkgsrc/textproc/py-sphinx/Makefile:1.40 Mon Jul 3 17:43:36 2017 +++ pkgsrc/textproc/py-sphinx/Makefile Sat Aug 19 13:58:00 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.40 2017/07/03 17:43:36 adam Exp $ +# $NetBSD: Makefile,v 1.41 2017/08/19 13:58:00 adam Exp $ DISTNAME= Sphinx-1.6.3 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl} @@ -22,7 +22,12 @@ DEPENDS+= ${PYPKGPREFIX}-snowballstemmer DEPENDS+= ${PYPKGPREFIX}-sphinx-rtd-theme-[0-9]*:../../textproc/py-sphinx-rtd-theme DEPENDS+= ${PYPKGPREFIX}-sphinxcontrib-websupport-[0-9]*:../../textproc/py-sphinxcontrib-websupport DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six + +.include "../../lang/python/pyversion.mk" +.if "${PYPKGPREFIX}" == "py27" || "${PYPKGPREFIX}" == "py34" || "${PYPKGPREFIX}" == "py35" DEPENDS+= ${PYPKGPREFIX}-typing-[0-9]*:../../devel/py-typing +.endif + # test dependency BUILD_DEPENDS+= ${PYPKGPREFIX}-html5lib-[0-9]*:../../textproc/py-html5lib BUILD_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock --_----------=_150315108076200--