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 656331A9239 for ; Mon, 10 Jan 2022 20:34:52 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id BA3A484E73; Mon, 10 Jan 2022 20:34:51 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 016F784E56 for ; Mon, 10 Jan 2022 20:34:51 +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 xzxi7kpCkqwt for ; Mon, 10 Jan 2022 20:34:50 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 685B384D31 for ; Mon, 10 Jan 2022 20:34:50 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6620FFB24; Mon, 10 Jan 2022 20:34:50 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1641846890278060" MIME-Version: 1.0 Date: Mon, 10 Jan 2022 20:34:50 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/py-hglib To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220110203450.6620FFB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1641846890278060 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Jan 10 20:34:50 UTC 2022 Modified Files: pkgsrc/devel/py-hglib: Makefile PLIST Log Message: py-hglib: convert to egg.mk To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 pkgsrc/devel/py-hglib/Makefile cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-hglib/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1641846890278060 Content-Disposition: inline Content-Length: 1585 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-hglib/Makefile diff -u pkgsrc/devel/py-hglib/Makefile:1.9 pkgsrc/devel/py-hglib/Makefile:1.10 --- pkgsrc/devel/py-hglib/Makefile:1.9 Mon Nov 30 20:23:38 2020 +++ pkgsrc/devel/py-hglib/Makefile Mon Jan 10 20:34:50 2022 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.9 2020/11/30 20:23:38 adam Exp $ +# $NetBSD: Makefile,v 1.10 2022/01/10 20:34:50 wiz Exp $ DISTNAME= python-hglib-2.6.2 PKGNAME= ${DISTNAME:S/python/${PYPKGPREFIX}/} +PKGREVISION= 1 CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=p/python-hglib/} @@ -12,5 +13,5 @@ LICENSE= mit USE_LANGUAGES= # none -.include "../../lang/python/distutils.mk" +.include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-hglib/PLIST diff -u pkgsrc/devel/py-hglib/PLIST:1.1 pkgsrc/devel/py-hglib/PLIST:1.2 --- pkgsrc/devel/py-hglib/PLIST:1.1 Sun Jun 14 21:47:49 2015 +++ pkgsrc/devel/py-hglib/PLIST Mon Jan 10 20:34:50 2022 @@ -1,5 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2015/06/14 21:47:49 wiz Exp $ -${PYSITELIB}/${EGG_FILE} +@comment $NetBSD: PLIST,v 1.2 2022/01/10 20:34:50 wiz Exp $ ${PYSITELIB}/hglib/__init__.py ${PYSITELIB}/hglib/__init__.pyc ${PYSITELIB}/hglib/__init__.pyo @@ -21,3 +20,7 @@ ${PYSITELIB}/hglib/templates.pyo ${PYSITELIB}/hglib/util.py ${PYSITELIB}/hglib/util.pyc ${PYSITELIB}/hglib/util.pyo +${PLIST.py3x}${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PLIST.py3x}${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PLIST.py3x}${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PLIST.py3x}${PYSITELIB}/${EGG_INFODIR}/top_level.txt --_----------=_1641846890278060--