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 210E81A9239 for ; Mon, 10 Jan 2022 18:54:36 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 50C4084E76; Mon, 10 Jan 2022 18:54:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8C80684D50 for ; Mon, 10 Jan 2022 18:54:34 +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 O1SmxUnRMB6m for ; Mon, 10 Jan 2022 18:54:34 +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 F141784D44 for ; Mon, 10 Jan 2022 18:54:33 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EF0E1FB24; Mon, 10 Jan 2022 18:54:33 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1641840873184760" MIME-Version: 1.0 Date: Mon, 10 Jan 2022 18:54:33 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/textproc/py-smartypants To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220110185433.EF0E1FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1641840873184760 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Jan 10 18:54:33 UTC 2022 Modified Files: pkgsrc/textproc/py-smartypants: Makefile PLIST Log Message: py-smartypants: convert to egg.mk To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/textproc/py-smartypants/Makefile \ pkgsrc/textproc/py-smartypants/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1641840873184760 Content-Disposition: inline Content-Length: 1669 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/py-smartypants/Makefile diff -u pkgsrc/textproc/py-smartypants/Makefile:1.1 pkgsrc/textproc/py-smartypants/Makefile:1.2 --- pkgsrc/textproc/py-smartypants/Makefile:1.1 Wed Apr 3 14:49:27 2019 +++ pkgsrc/textproc/py-smartypants/Makefile Mon Jan 10 18:54:33 2022 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.1 2019/04/03 14:49:27 adam Exp $ +# $NetBSD: Makefile,v 1.2 2022/01/10 18:54:33 wiz Exp $ DISTNAME= smartypants-2.0.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +PKGREVISION= 1 CATEGORIES= textproc python #MASTER_SITES= ${MASTER_SITE_PYPI:=s/smartypants/} MASTER_SITES= ${MASTER_SITE_GITHUB:=leohemsted/} @@ -19,5 +20,5 @@ post-install: cd ${DESTDIR}${PREFIX}/bin && \ ${MV} smartypants smartypants-${PYVERSSUFFIX} || ${TRUE} -.include "../../lang/python/distutils.mk" +.include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/textproc/py-smartypants/PLIST diff -u pkgsrc/textproc/py-smartypants/PLIST:1.1 pkgsrc/textproc/py-smartypants/PLIST:1.2 --- pkgsrc/textproc/py-smartypants/PLIST:1.1 Wed Apr 3 14:49:27 2019 +++ pkgsrc/textproc/py-smartypants/PLIST Mon Jan 10 18:54:33 2022 @@ -1,6 +1,9 @@ -@comment $NetBSD: PLIST,v 1.1 2019/04/03 14:49:27 adam Exp $ +@comment $NetBSD: PLIST,v 1.2 2022/01/10 18:54:33 wiz Exp $ bin/smartypants-${PYVERSSUFFIX} -${PYSITELIB}/${EGG_FILE} +${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 ${PYSITELIB}/smartypants.py ${PYSITELIB}/smartypants.pyc ${PYSITELIB}/smartypants.pyo --_----------=_1641840873184760--