Received: by mail.netbsd.org (Postfix, from userid 605) id CD4E984D48; Mon, 21 Oct 2019 21:38:04 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5514A84D31 for ; Mon, 21 Oct 2019 21:38:04 +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 5t5pn8E77GJZ for ; Mon, 21 Oct 2019 21:38:03 +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 D079C84CD5 for ; Mon, 21 Oct 2019 21:38:03 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C4655F98E; Mon, 21 Oct 2019 21:38:03 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1571693883215890" MIME-Version: 1.0 Date: Mon, 21 Oct 2019 21:38:03 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/devel To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20191021213803.C4655F98E@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. --_----------=_1571693883215890 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Mon Oct 21 21:38:03 UTC 2019 Modified Files: pkgsrc/devel/bpython: Makefile pkgsrc/devel/gps: Makefile Log Message: Switch sphinx to versioned deps. To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 pkgsrc/devel/bpython/Makefile cvs rdiff -u -r1.62 -r1.63 pkgsrc/devel/gps/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1571693883215890 Content-Disposition: inline Content-Length: 2074 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/bpython/Makefile diff -u pkgsrc/devel/bpython/Makefile:1.25 pkgsrc/devel/bpython/Makefile:1.26 --- pkgsrc/devel/bpython/Makefile:1.25 Thu Apr 25 07:32:43 2019 +++ pkgsrc/devel/bpython/Makefile Mon Oct 21 21:38:03 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.25 2019/04/25 07:32:43 maya Exp $ +# $NetBSD: Makefile,v 1.26 2019/10/21 21:38:03 adam Exp $ DISTNAME= bpython-0.16 PKGREVISION= 3 @@ -23,9 +23,10 @@ DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../. DEPENDS+= ${PYPKGPREFIX}-urwid>=0.9.9.1:../../devel/py-urwid # to generate man pages -BUILD_DEPENDS+= ${PYPKGPREFIX}-sphinx-[0-9]*:../../textproc/py-sphinx +PYTHON_VERSIONED_DEPENDENCIES= sphinx:build .include "../../lang/python/application.mk" .include "../../lang/python/egg.mk" +.include "../../lang/python/versioned_dependencies.mk" .include "../../sysutils/desktop-file-utils/desktopdb.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/gps/Makefile diff -u pkgsrc/devel/gps/Makefile:1.62 pkgsrc/devel/gps/Makefile:1.63 --- pkgsrc/devel/gps/Makefile:1.62 Sun Aug 11 13:18:44 2019 +++ pkgsrc/devel/gps/Makefile Mon Oct 21 21:38:03 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.62 2019/08/11 13:18:44 wiz Exp $ +# $NetBSD: Makefile,v 1.63 2019/10/21 21:38:03 adam Exp $ DISTNAME= gps-${GPS_VERSION} PKGREVISION= 24 @@ -61,12 +61,13 @@ post-install: ${RM} -rf ${DESTDIR}${PREFIX}/share/doc/gps/html/users_guide/_sources ${RM} -rf ${DESTDIR}${PREFIX}/share/doc/gps/html/tutorial/_sources -BUILD_DEPENDS+= ${PYPKGPREFIX}-sphinx-[0-9]*:../../textproc/py-sphinx +PYTHON_VERSIONED_DEPENDENCIES= sphinx:build + BUILDLINK_DEPMETHOD.gprbuild-aux= full -.include "../../lang/python/application.mk" -.include "../../x11/gtkada/buildlink3.mk" -.include "../../textproc/xmlada/buildlink3.mk" .include "../../devel/gmp/buildlink3.mk" .include "../../devel/gprbuild-aux/buildlink3.mk" +.include "../../lang/python/versioned_dependencies.mk" +.include "../../textproc/xmlada/buildlink3.mk" +.include "../../x11/gtkada/buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1571693883215890--