Received: by mail.netbsd.org (Postfix, from userid 605) id BC25784E78; Sat, 9 Jul 2022 08:18:04 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 02C1184D7A for ; Sat, 9 Jul 2022 08:18: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 MRL98MP9u_8H for ; Sat, 9 Jul 2022 08:18: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 30A4D84E78 for ; Sat, 9 Jul 2022 08:18:03 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2A698FB1A; Sat, 9 Jul 2022 08:18:03 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1657354683264980" MIME-Version: 1.0 Date: Sat, 9 Jul 2022 08:18:03 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/audio/musicpd To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220709081803.2A698FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1657354683264980 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sat Jul 9 08:18:03 UTC 2022 Modified Files: pkgsrc/audio/musicpd: Makefile Log Message: musicpd: restrict to python3 To generate a diff of this commit: cvs rdiff -u -r1.266 -r1.267 pkgsrc/audio/musicpd/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1657354683264980 Content-Disposition: inline Content-Length: 1423 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/musicpd/Makefile diff -u pkgsrc/audio/musicpd/Makefile:1.266 pkgsrc/audio/musicpd/Makefile:1.267 --- pkgsrc/audio/musicpd/Makefile:1.266 Sat Jul 2 16:53:06 2022 +++ pkgsrc/audio/musicpd/Makefile Sat Jul 9 08:18:02 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.266 2022/07/02 16:53:06 ryoon Exp $ +# $NetBSD: Makefile,v 1.267 2022/07/09 08:18:02 wiz Exp $ DISTNAME= mpd-0.23.7 PKGNAME= ${DISTNAME:S/mpd/musicpd/} @@ -12,6 +12,8 @@ HOMEPAGE= https://www.musicpd.org/ COMMENT= Remote controllable audio player LICENSE= gnu-gpl-v2 +TOOL_DEPENDS+= ${PYPKGPREFIX}-sphinx-[0-9]*:../../textproc/py-sphinx + CONFLICTS= mpd-[0-9]* USE_TOOLS+= pkg-config @@ -108,9 +110,8 @@ SUBST_SED.sphinx+= -e "s,sphinx-build,sp INSTALLATION_DIRS= ${EGDIR} ${EGDIR}/logrotate.d -PYTHON_FOR_BUILD_ONLY= tool - -PYTHON_VERSIONED_DEPENDENCIES= sphinx:tool +PYTHON_FOR_BUILD_ONLY= tool +PYTHON_VERSIONS_INCOMPATIBLE= 27 post-extract: ${CP} ${FILESDIR}/mpd.conf ${WRKSRC}/mpd.conf @@ -132,7 +133,6 @@ BUILDLINK_API_DEPENDS.flac+= flac>=1.2 .include "../../devel/pcre2/buildlink3.mk" .include "../../devel/zlib/buildlink3.mk" .include "../../graphics/hicolor-icon-theme/buildlink3.mk" -.include "../../lang/python/versioned_dependencies.mk" .include "../../security/libgcrypt/buildlink3.mk" .include "../../textproc/expat/buildlink3.mk" .include "../../textproc/fmtlib/buildlink3.mk" --_----------=_1657354683264980--