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 C2D091A9239 for ; Mon, 10 Jan 2022 22:03:47 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id EF89584D66; Mon, 10 Jan 2022 22:03:46 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3274584D4C for ; Mon, 10 Jan 2022 22:03:46 +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 y4sIDNtWHpKJ for ; Mon, 10 Jan 2022 22:03:45 +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 AB26684D21 for ; Mon, 10 Jan 2022 22:03:45 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A8AC5FB24; Mon, 10 Jan 2022 22:03:45 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1641852225270830" MIME-Version: 1.0 Date: Mon, 10 Jan 2022 22:03:45 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/databases/py-aiosqlite To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220110220345.A8AC5FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1641852225270830 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Jan 10 22:03:45 UTC 2022 Modified Files: pkgsrc/databases/py-aiosqlite: Makefile PLIST Log Message: py-aiosqlite: convert to egg.mk To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/databases/py-aiosqlite/Makefile cvs rdiff -u -r1.5 -r1.6 pkgsrc/databases/py-aiosqlite/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1641852225270830 Content-Disposition: inline Content-Length: 1573 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/py-aiosqlite/Makefile diff -u pkgsrc/databases/py-aiosqlite/Makefile:1.8 pkgsrc/databases/py-aiosqlite/Makefile:1.9 --- pkgsrc/databases/py-aiosqlite/Makefile:1.8 Mon Feb 22 10:28:58 2021 +++ pkgsrc/databases/py-aiosqlite/Makefile Mon Jan 10 22:03:45 2022 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.8 2021/02/22 10:28:58 adam Exp $ +# $NetBSD: Makefile,v 1.9 2022/01/10 22:03:45 wiz Exp $ DISTNAME= aiosqlite-0.17.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +PKGREVISION= 1 CATEGORIES= databases python MASTER_SITES= ${MASTER_SITE_PYPI:=a/aiosqlite/} @@ -19,5 +20,5 @@ PYTHON_VERSIONS_INCOMPATIBLE= 27 do-test: cd ${WRKSRC} && ${PYTHONBIN} -m aiosqlite.tests -.include "../../lang/python/distutils.mk" +.include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/databases/py-aiosqlite/PLIST diff -u pkgsrc/databases/py-aiosqlite/PLIST:1.5 pkgsrc/databases/py-aiosqlite/PLIST:1.6 --- pkgsrc/databases/py-aiosqlite/PLIST:1.5 Mon Nov 2 10:16:13 2020 +++ pkgsrc/databases/py-aiosqlite/PLIST Mon Jan 10 22:03:45 2022 @@ -1,5 +1,9 @@ -@comment $NetBSD: PLIST,v 1.5 2020/11/02 10:16:13 adam Exp $ -${PYSITELIB}/${EGG_FILE} +@comment $NetBSD: PLIST,v 1.6 2022/01/10 22:03:45 wiz 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}/aiosqlite/__init__.py ${PYSITELIB}/aiosqlite/__init__.pyc ${PYSITELIB}/aiosqlite/__init__.pyo --_----------=_1641852225270830--