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 806DE1A923C for ; Sat, 1 Jan 2022 16:19:28 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 8227884E7E; Sat, 1 Jan 2022 16:19:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B972584D53 for ; Sat, 1 Jan 2022 16:19:26 +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 P0QcnK8B3RLb for ; Sat, 1 Jan 2022 16:19:26 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3681484CE3 for ; Sat, 1 Jan 2022 16:19:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 26FE2FAEC; Sat, 1 Jan 2022 16:19:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_164105396652860" MIME-Version: 1.0 Date: Sat, 1 Jan 2022 16:19:26 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/devel/py-entrypoints To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20220101161926.26FE2FAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_164105396652860 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:19:26 UTC 2022 Modified Files: pkgsrc/devel/py-entrypoints: Makefile PLIST Log Message: py-entrypoints: Use egg.mk to fix packaging Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/devel/py-entrypoints/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/py-entrypoints/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_164105396652860 Content-Disposition: inline Content-Length: 1575 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-entrypoints/Makefile diff -u pkgsrc/devel/py-entrypoints/Makefile:1.4 pkgsrc/devel/py-entrypoints/Makefile:1.5 --- pkgsrc/devel/py-entrypoints/Makefile:1.4 Sat May 16 17:13:40 2020 +++ pkgsrc/devel/py-entrypoints/Makefile Sat Jan 1 16:19:25 2022 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.4 2020/05/16 17:13:40 adam Exp $ +# $NetBSD: Makefile,v 1.5 2022/01/01 16:19:25 ryoon Exp $ DISTNAME= entrypoints-0.3 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +PKGREVISION= 1 CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=e/entrypoints/} @@ -22,6 +23,6 @@ USE_LANGUAGES= # none do-test: cd ${WRKSRC} && pytest-${PYVERSSUFFIX} tests -.include "../../lang/python/distutils.mk" +.include "../../lang/python/egg.mk" .include "../../lang/python/versioned_dependencies.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-entrypoints/PLIST diff -u pkgsrc/devel/py-entrypoints/PLIST:1.2 pkgsrc/devel/py-entrypoints/PLIST:1.3 --- pkgsrc/devel/py-entrypoints/PLIST:1.2 Tue Oct 17 18:06:44 2017 +++ pkgsrc/devel/py-entrypoints/PLIST Sat Jan 1 16:19:25 2022 @@ -1,5 +1,9 @@ -@comment $NetBSD: PLIST,v 1.2 2017/10/17 18:06:44 adam Exp $ -${PYSITELIB}/${EGG_FILE} +@comment $NetBSD: PLIST,v 1.3 2022/01/01 16:19:25 ryoon Exp $ +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt ${PYSITELIB}/entrypoints.py ${PYSITELIB}/entrypoints.pyc ${PYSITELIB}/entrypoints.pyo --_----------=_164105396652860--