Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 950D57A264 for ; Wed, 12 Oct 2016 19:51:47 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 0629785EC0; Wed, 12 Oct 2016 19:51:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8224885E5B for ; Wed, 12 Oct 2016 19:51:46 +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 cjMK-4RtY616 for ; Wed, 12 Oct 2016 19:51:46 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 14F8484CF0 for ; Wed, 12 Oct 2016 19:51:46 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0FBDFFBD2; Wed, 12 Oct 2016 19:51:46 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_147630190638330" MIME-Version: 1.0 Date: Wed, 12 Oct 2016 19:51:46 +0000 From: "Kamil Rytarowski" Subject: CVS commit: pkgsrc/math/py-abcpmc To: pkgsrc-changes@NetBSD.org Reply-To: kamil@netbsd.org X-Mailer: log_accum Message-Id: <20161012195146.0FBDFFBD2@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_147630190638330 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: kamil Date: Wed Oct 12 19:51:45 UTC 2016 Modified Files: pkgsrc/math/py-abcpmc: Makefile PLIST Log Message: Don't include py-funcsig for Python older than 3.3. This feature is now part of Python 3.3 and newer: https://www.python.org/dev/peps/pep-0362/ To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/math/py-abcpmc/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/math/py-abcpmc/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_147630190638330 Content-Disposition: inline Content-Length: 1376 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/py-abcpmc/Makefile diff -u pkgsrc/math/py-abcpmc/Makefile:1.2 pkgsrc/math/py-abcpmc/Makefile:1.3 --- pkgsrc/math/py-abcpmc/Makefile:1.2 Wed Oct 12 10:37:18 2016 +++ pkgsrc/math/py-abcpmc/Makefile Wed Oct 12 19:51:45 2016 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2016/10/12 10:37:18 kamil Exp $ +# $NetBSD: Makefile,v 1.3 2016/10/12 19:51:45 kamil Exp $ DISTNAME= abcpmc-0.1.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -13,7 +13,11 @@ LICENSE= gnu-gpl-v3 USE_LANGUAGES= # none # TEST_DEPENDS +.include "../../lang/python/pyversion.mk" + +.if ${_PYTHON_VERSION} < 33 BUILD_DEPENDS+= ${PYPKGPREFIX}-funcsigs-[0-9]*:../../devel/py-funcsigs +.endif BUILD_DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock BUILD_DEPENDS+= ${PYPKGPREFIX}-pbr-[0-9]*:../../devel/py-pbr BUILD_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test Index: pkgsrc/math/py-abcpmc/PLIST diff -u pkgsrc/math/py-abcpmc/PLIST:1.1 pkgsrc/math/py-abcpmc/PLIST:1.2 --- pkgsrc/math/py-abcpmc/PLIST:1.1 Wed Oct 12 00:27:01 2016 +++ pkgsrc/math/py-abcpmc/PLIST Wed Oct 12 19:51:45 2016 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2016/10/12 00:27:01 kamil Exp $ +@comment $NetBSD: PLIST,v 1.2 2016/10/12 19:51:45 kamil Exp $ ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt --_----------=_147630190638330--