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 55EDD1A923A for ; Sat, 22 Jan 2022 15:31:17 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 8D41D84EFC; Sat, 22 Jan 2022 15:31:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C7AC684EFB for ; Sat, 22 Jan 2022 15:31:15 +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 A3as6Ooxl6UD for ; Sat, 22 Jan 2022 15:31:15 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 1E9B484E7C for ; Sat, 22 Jan 2022 15:31:15 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1C035FB24; Sat, 22 Jan 2022 15:31:15 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_164286547521080" MIME-Version: 1.0 Date: Sat, 22 Jan 2022 15:31:15 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/py-cooldict To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220122153115.1C035FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_164286547521080 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sat Jan 22 15:31:15 UTC 2022 Modified Files: pkgsrc/devel/py-cooldict: Makefile PLIST Log Message: py-cooldict: fix PLIST for python 2.7 To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/py-cooldict/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/py-cooldict/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_164286547521080 Content-Disposition: inline Content-Length: 1363 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-cooldict/Makefile diff -u pkgsrc/devel/py-cooldict/Makefile:1.2 pkgsrc/devel/py-cooldict/Makefile:1.3 --- pkgsrc/devel/py-cooldict/Makefile:1.2 Mon Jan 10 08:57:42 2022 +++ pkgsrc/devel/py-cooldict/Makefile Sat Jan 22 15:31:14 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2022/01/10 08:57:42 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2022/01/22 15:31:14 wiz Exp $ DISTNAME= cooldict-1.04 PKGNAME= ${PYPKGPREFIX}-cooldict-1.4 @@ -11,7 +11,11 @@ HOMEPAGE= https://github.com/zardus/cool COMMENT= Some useful dict-like structures LICENSE= 2-clause-bsd +.include "../../lang/python/pyversion.mk" + +.if ${PYPKGPREFIX} != "py27" EGG_NAME= cooldict-1.4 +.endif .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-cooldict/PLIST diff -u pkgsrc/devel/py-cooldict/PLIST:1.3 pkgsrc/devel/py-cooldict/PLIST:1.4 --- pkgsrc/devel/py-cooldict/PLIST:1.3 Mon Jan 10 18:27:04 2022 +++ pkgsrc/devel/py-cooldict/PLIST Sat Jan 22 15:31:14 2022 @@ -1,4 +1,5 @@ -@comment $NetBSD: PLIST,v 1.3 2022/01/10 18:27:04 wiz Exp $ +@comment $NetBSD: PLIST,v 1.4 2022/01/22 15:31:14 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 --_----------=_164286547521080--