Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 3E70F1A923D for ; Thu, 27 Jan 2022 11:59:45 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 74D9284E65; Thu, 27 Jan 2022 11:59:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AF24484D39 for ; Thu, 27 Jan 2022 11:59:43 +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 EZWuI-DIRtyh for ; Thu, 27 Jan 2022 11:59:43 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 1231384CFC for ; Thu, 27 Jan 2022 11:59:43 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0B9D7FB24; Thu, 27 Jan 2022 11:59:43 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1643284783201270" MIME-Version: 1.0 Date: Thu, 27 Jan 2022 11:59:43 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/py-unittest2 To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220127115943.0B9D7FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1643284783201270 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Jan 27 11:59:42 UTC 2022 Modified Files: pkgsrc/devel/py-unittest2: Makefile Log Message: py-unittest2: limit to python 2.x This package is intended to backport features that were added in python 3.4. To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 pkgsrc/devel/py-unittest2/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1643284783201270 Content-Disposition: inline Content-Length: 812 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-unittest2/Makefile diff -u pkgsrc/devel/py-unittest2/Makefile:1.15 pkgsrc/devel/py-unittest2/Makefile:1.16 --- pkgsrc/devel/py-unittest2/Makefile:1.15 Wed Jan 5 15:41:08 2022 +++ pkgsrc/devel/py-unittest2/Makefile Thu Jan 27 11:59:42 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2022/01/05 15:41:08 wiz Exp $ +# $NetBSD: Makefile,v 1.16 2022/01/27 11:59:42 wiz Exp $ DISTNAME= unittest2-1.1.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -16,6 +16,8 @@ DEPENDS+= ${PYPKGPREFIX}-argparse-[0-9] DEPENDS+= ${PYPKGPREFIX}-traceback2-[0-9]*:../../devel/py-traceback2 DEPENDS+= ${PYPKGPREFIX}-linecache2-[0-9]*:../../devel/py-linecache2 +PYTHON_VERSIONS_ACCEPTED= 27 + DOCDIR= share/doc/${PKGBASE} INSTALLATION_DIRS+= ${DOCDIR} PLIST_SUBST+= DOCDIR=${DOCDIR} --_----------=_1643284783201270--