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 2290A1A923C for ; Sat, 1 Jan 2022 16:31:18 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 1AFBF84EF2; Sat, 1 Jan 2022 16:31:08 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 87E1E84E8D for ; Sat, 1 Jan 2022 16:31:03 +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 oazSTq3zA00Y for ; Sat, 1 Jan 2022 16:31:03 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id CCF9C84D53 for ; Sat, 1 Jan 2022 16:31:02 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C38D8FAEC; Sat, 1 Jan 2022 16:31:02 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1641054662160050" MIME-Version: 1.0 Date: Sat, 1 Jan 2022 16:31:02 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/math/py-gmpy To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20220101163102.C38D8FAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1641054662160050 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Sat Jan 1 16:31:02 UTC 2022 Modified Files: pkgsrc/math/py-gmpy: Makefile PLIST Log Message: py-gmpy: Use egg.mk to fix packaging Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/math/py-gmpy/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/math/py-gmpy/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1641054662160050 Content-Disposition: inline Content-Length: 1351 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/py-gmpy/Makefile diff -u pkgsrc/math/py-gmpy/Makefile:1.10 pkgsrc/math/py-gmpy/Makefile:1.11 --- pkgsrc/math/py-gmpy/Makefile:1.10 Thu Jan 11 07:59:47 2018 +++ pkgsrc/math/py-gmpy/Makefile Sat Jan 1 16:31:02 2022 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.10 2018/01/11 07:59:47 adam Exp $ +# $NetBSD: Makefile,v 1.11 2022/01/01 16:31:02 ryoon Exp $ DISTNAME= gmpy-1.17 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +PKGREVISION= 1 CATEGORIES= math python MASTER_SITES= ${MASTER_SITE_PYPI:=g/gmpy/} EXTRACT_SUFX= .zip @@ -21,5 +22,5 @@ do-test: BUILDLINK_API_DEPENDS.gmp+= gmp>=4.2.1 .include "../../devel/gmp/buildlink3.mk" -.include "../../lang/python/distutils.mk" +.include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/math/py-gmpy/PLIST diff -u pkgsrc/math/py-gmpy/PLIST:1.3 pkgsrc/math/py-gmpy/PLIST:1.4 --- pkgsrc/math/py-gmpy/PLIST:1.3 Thu Jan 11 07:59:47 2018 +++ pkgsrc/math/py-gmpy/PLIST Sat Jan 1 16:31:02 2022 @@ -1,3 +1,6 @@ -@comment $NetBSD: PLIST,v 1.3 2018/01/11 07:59:47 adam Exp $ -${PYSITELIB}/${EGG_FILE} +@comment $NetBSD: PLIST,v 1.4 2022/01/01 16:31:02 ryoon Exp $ +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt ${PYSITELIB}/gmpy.so --_----------=_1641054662160050--