Received: by mail.netbsd.org (Postfix, from userid 605) id 5B95C84D11; Mon, 29 Mar 2021 07:38:54 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 967A284D04 for ; Mon, 29 Mar 2021 07:38:53 +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 1Ht22lsDneLS for ; Mon, 29 Mar 2021 07:38:53 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id EA3D484CD9 for ; Mon, 29 Mar 2021 07:38:52 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E39DAFA95; Mon, 29 Mar 2021 07:38:52 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_161700353245070" MIME-Version: 1.0 Date: Mon, 29 Mar 2021 07:38:52 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/games/pysolfc To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20210329073852.E39DAFA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_161700353245070 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Mon Mar 29 07:38:52 UTC 2021 Modified Files: pkgsrc/games/pysolfc: Makefile Log Message: pysolfc: force use of python 3.7 workaround until PR pkg/56069 can be fixed properly To generate a diff of this commit: cvs rdiff -u -r1.33 -r1.34 pkgsrc/games/pysolfc/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_161700353245070 Content-Disposition: inline Content-Length: 879 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/games/pysolfc/Makefile diff -u pkgsrc/games/pysolfc/Makefile:1.33 pkgsrc/games/pysolfc/Makefile:1.34 --- pkgsrc/games/pysolfc/Makefile:1.33 Wed Mar 10 18:49:07 2021 +++ pkgsrc/games/pysolfc/Makefile Mon Mar 29 07:38:52 2021 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.33 2021/03/10 18:49:07 adam Exp $ +# $NetBSD: Makefile,v 1.34 2021/03/29 07:38:52 nia Exp $ DISTNAME= PySolFC-2.6.4 PKGNAME= ${DISTNAME:tl} -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= games python MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=pysolfc/} EXTRACT_SUFX= .tar.xz @@ -36,6 +36,10 @@ PLIST_SUBST+= PYVERSSUFFIX=${PYVERSSUFFI EGG_NAME= ${DISTNAME} +# PR pkg/56069 +# Depends on 'time.clock', which was removed in Python 3.8 +PYTHON_VERSIONS_ACCEPTED= 37 + post-install: ${INSTALL_MAN} ${WRKSRC}/docs/pysol.6 \ ${DESTDIR}${PREFIX}/${PKGMANDIR}/man6/pysol.py.6 --_----------=_161700353245070--