Received: by mail.netbsd.org (Postfix, from userid 605) id 95FDB84F27; Sun, 10 Jul 2022 19:04:51 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CF8F584E5F for ; Sun, 10 Jul 2022 19:04:50 +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 Oo_LhPpY2LzK for ; Sun, 10 Jul 2022 19:04:50 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 2C07284CED for ; Sun, 10 Jul 2022 19:04:50 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2943DFB1A; Sun, 10 Jul 2022 19:04:50 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1657479890229040" MIME-Version: 1.0 Date: Sun, 10 Jul 2022 19:04:50 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/textproc/py-sphinx-theme-cloud To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220710190450.2943DFB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1657479890229040 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Jul 10 19:04:50 UTC 2022 Modified Files: pkgsrc/textproc/py-sphinx-theme-cloud: Makefile Log Message: py-sphinx-theme-cloud: restrict to python3 To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 pkgsrc/textproc/py-sphinx-theme-cloud/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1657479890229040 Content-Disposition: inline Content-Length: 987 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/py-sphinx-theme-cloud/Makefile diff -u pkgsrc/textproc/py-sphinx-theme-cloud/Makefile:1.11 pkgsrc/textproc/py-sphinx-theme-cloud/Makefile:1.12 --- pkgsrc/textproc/py-sphinx-theme-cloud/Makefile:1.11 Tue Jan 4 20:55:06 2022 +++ pkgsrc/textproc/py-sphinx-theme-cloud/Makefile Sun Jul 10 19:04:50 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2022/01/04 20:55:06 wiz Exp $ +# $NetBSD: Makefile,v 1.12 2022/07/10 19:04:50 wiz Exp $ DISTNAME= cloud_sptheme-1.10.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/cloud_sptheme/sphinx-theme-cloud/} @@ -11,10 +11,11 @@ HOMEPAGE= https://bitbucket.org/ecollins COMMENT= Sphinx cloud theme LICENSE= modified-bsd -PYTHON_VERSIONED_DEPENDENCIES= sphinx +DEPENDS+= ${PYPKGPREFIX}-sphinx-[0-9]*:../../textproc/py-sphinx + +PYTHON_VERSIONS_INCOMPATIBLE= 27 USE_LANGUAGES= # none .include "../../lang/python/egg.mk" -.include "../../lang/python/versioned_dependencies.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1657479890229040--