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 57F071A9239 for ; Fri, 14 Jan 2022 11:29:05 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 85EA684F28; Fri, 14 Jan 2022 11:29:04 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BDC0684F25 for ; Fri, 14 Jan 2022 11:29:03 +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 3u6QTHmRbzXG for ; Fri, 14 Jan 2022 11:29:03 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 1831984E53 for ; Fri, 14 Jan 2022 11:29:03 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0FF3BFB24; Fri, 14 Jan 2022 11:29:03 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1642159743223350" MIME-Version: 1.0 Date: Fri, 14 Jan 2022 11:29:03 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/net/py-IP To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220114112903.0FF3BFB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1642159743223350 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Fri Jan 14 11:29:02 UTC 2022 Modified Files: pkgsrc/net/py-IP: Makefile PLIST Log Message: py-IP: fix PLIST for python 2.7 To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 pkgsrc/net/py-IP/Makefile cvs rdiff -u -r1.6 -r1.7 pkgsrc/net/py-IP/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1642159743223350 Content-Disposition: inline Content-Length: 1238 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/py-IP/Makefile diff -u pkgsrc/net/py-IP/Makefile:1.25 pkgsrc/net/py-IP/Makefile:1.26 --- pkgsrc/net/py-IP/Makefile:1.25 Mon Jan 10 08:40:59 2022 +++ pkgsrc/net/py-IP/Makefile Fri Jan 14 11:29:02 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.25 2022/01/10 08:40:59 wiz Exp $ +# $NetBSD: Makefile,v 1.26 2022/01/14 11:29:02 wiz Exp $ DISTNAME= IPy-1.01 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/IPy/IP/} @@ -13,7 +13,11 @@ LICENSE= modified-bsd USE_LANGUAGES= # none +.include "../../lang/python/pyversion.mk" + +.if ${PYPKGPREFIX} != "py27" EGG_NAME= IPy-1.1 +.endif do-test: cd ${WRKSRC}/test && ${SETENV} ${TEST_ENV} ${PYTHONBIN} test_IPy.py Index: pkgsrc/net/py-IP/PLIST diff -u pkgsrc/net/py-IP/PLIST:1.6 pkgsrc/net/py-IP/PLIST:1.7 --- pkgsrc/net/py-IP/PLIST:1.6 Mon Jan 10 18:20:05 2022 +++ pkgsrc/net/py-IP/PLIST Fri Jan 14 11:29:02 2022 @@ -1,4 +1,5 @@ -@comment $NetBSD: PLIST,v 1.6 2022/01/10 18:20:05 wiz Exp $ +@comment $NetBSD: PLIST,v 1.7 2022/01/14 11:29:02 wiz Exp $ +${PLIST.py2x}${PYSITELIB}/${EGG_INFODIR} ${PLIST.py3x}${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PLIST.py3x}${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PLIST.py3x}${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt --_----------=_1642159743223350--