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 096F11A9239 for ; Mon, 10 Jan 2022 09:06:09 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 3B67384E62; Mon, 10 Jan 2022 09:06:08 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7311F84D7A for ; Mon, 10 Jan 2022 09:06:07 +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 QEoIcWtP230R for ; Mon, 10 Jan 2022 09:06:07 +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 ED4A184CDC for ; Mon, 10 Jan 2022 09:06:06 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EAAF7FB24; Mon, 10 Jan 2022 09:06:06 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1641805566203630" MIME-Version: 1.0 Date: Mon, 10 Jan 2022 09:06:06 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/math/py-ephem To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220110090606.EAAF7FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1641805566203630 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Jan 10 09:06:06 UTC 2022 Modified Files: pkgsrc/math/py-ephem: Makefile PLIST Log Message: py-ephem: convert to egg.mk To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 pkgsrc/math/py-ephem/Makefile cvs rdiff -u -r1.6 -r1.7 pkgsrc/math/py-ephem/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1641805566203630 Content-Disposition: inline Content-Length: 1451 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/py-ephem/Makefile diff -u pkgsrc/math/py-ephem/Makefile:1.19 pkgsrc/math/py-ephem/Makefile:1.20 --- pkgsrc/math/py-ephem/Makefile:1.19 Wed May 13 14:53:29 2020 +++ pkgsrc/math/py-ephem/Makefile Mon Jan 10 09:06:06 2022 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.19 2020/05/13 14:53:29 adam Exp $ +# $NetBSD: Makefile,v 1.20 2022/01/10 09:06:06 wiz Exp $ DISTNAME= ephem-3.7.7.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +PKGREVISION= 1 CATEGORIES= math geography python MASTER_SITES= ${MASTER_SITE_PYPI:=e/ephem/} @@ -16,5 +17,5 @@ do-test: cd ${WRKSRC}/ephem && ${PYTHONBIN} -m unittest discover .include "../../lang/python/application.mk" -.include "../../lang/python/distutils.mk" +.include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/math/py-ephem/PLIST diff -u pkgsrc/math/py-ephem/PLIST:1.6 pkgsrc/math/py-ephem/PLIST:1.7 --- pkgsrc/math/py-ephem/PLIST:1.6 Thu Sep 5 10:39:50 2019 +++ pkgsrc/math/py-ephem/PLIST Mon Jan 10 09:06:06 2022 @@ -1,5 +1,8 @@ -@comment $NetBSD: PLIST,v 1.6 2019/09/05 10:39:50 adam Exp $ -${PYSITELIB}/${EGG_FILE} +@comment $NetBSD: PLIST,v 1.7 2022/01/10 09:06:06 wiz Exp $ +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt ${PYSITELIB}/ephem/__init__.py ${PYSITELIB}/ephem/__init__.pyc ${PYSITELIB}/ephem/__init__.pyo --_----------=_1641805566203630--