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 6EC691A923C for ; Sat, 1 Jan 2022 15:47:08 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id A26F684D53; Sat, 1 Jan 2022 15:47:07 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id DEA6484D50 for ; Sat, 1 Jan 2022 15:47:06 +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 gx2jlD-fogvr for ; Sat, 1 Jan 2022 15:47:06 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 62DB184D22 for ; Sat, 1 Jan 2022 15:47:06 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 60268FAEC; Sat, 1 Jan 2022 15:47:06 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1641052026289550" MIME-Version: 1.0 Date: Sat, 1 Jan 2022 15:47:06 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/devel/py-backcall To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20220101154706.60268FAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1641052026289550 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Sat Jan 1 15:47:06 UTC 2022 Modified Files: pkgsrc/devel/py-backcall: Makefile PLIST Log Message: py-backcall: 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-backcall/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-backcall/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1641052026289550 Content-Disposition: inline Content-Length: 1517 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-backcall/Makefile diff -u pkgsrc/devel/py-backcall/Makefile:1.4 pkgsrc/devel/py-backcall/Makefile:1.5 --- pkgsrc/devel/py-backcall/Makefile:1.4 Wed Jun 10 08:08:56 2020 +++ pkgsrc/devel/py-backcall/Makefile Sat Jan 1 15:47:06 2022 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.4 2020/06/10 08:08:56 adam Exp $ +# $NetBSD: Makefile,v 1.5 2022/01/01 15:47:06 ryoon Exp $ DISTNAME= backcall-0.2.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +PKGREVISION= 1 CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=b/backcall/} @@ -17,6 +18,6 @@ USE_LANGUAGES= # none do-test: cd ${WRKSRC}/tests && pytest-${PYVERSSUFFIX} -.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-backcall/PLIST diff -u pkgsrc/devel/py-backcall/PLIST:1.1 pkgsrc/devel/py-backcall/PLIST:1.2 --- pkgsrc/devel/py-backcall/PLIST:1.1 Tue Apr 3 11:13:29 2018 +++ pkgsrc/devel/py-backcall/PLIST Sat Jan 1 15:47:06 2022 @@ -1,5 +1,8 @@ -@comment $NetBSD: PLIST,v 1.1 2018/04/03 11:13:29 adam Exp $ -${PYSITELIB}/${EGG_FILE} +@comment $NetBSD: PLIST,v 1.2 2022/01/01 15:47:06 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}/backcall/__init__.py ${PYSITELIB}/backcall/__init__.pyc ${PYSITELIB}/backcall/__init__.pyo --_----------=_1641052026289550--