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 9BA021A923C for ; Sat, 1 Jan 2022 15:07:29 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id C642984E86; Sat, 1 Jan 2022 15:07:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0D6E484D50 for ; Sat, 1 Jan 2022 15:07:28 +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 AvKkq4rx8vKp for ; Sat, 1 Jan 2022 15:07:27 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 80D5E84D22 for ; Sat, 1 Jan 2022 15:07:27 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 79117FAEC; Sat, 1 Jan 2022 15:07:27 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1641049647109560" MIME-Version: 1.0 Date: Sat, 1 Jan 2022 15:07:27 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/databases/py-pgnotify To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220101150727.79117FAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1641049647109560 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sat Jan 1 15:07:27 UTC 2022 Modified Files: pkgsrc/databases/py-pgnotify: Makefile PLIST Log Message: py-pgnotify: convert to egg.mk Disable for python 2.7. Nothing in pkgsrc needs this, and supporting this would need hacks. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 pkgsrc/databases/py-pgnotify/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/databases/py-pgnotify/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1641049647109560 Content-Disposition: inline Content-Length: 1569 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/py-pgnotify/Makefile diff -u pkgsrc/databases/py-pgnotify/Makefile:1.20 pkgsrc/databases/py-pgnotify/Makefile:1.21 --- pkgsrc/databases/py-pgnotify/Makefile:1.20 Mon Sep 4 18:00:51 2017 +++ pkgsrc/databases/py-pgnotify/Makefile Sat Jan 1 15:07:27 2022 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.20 2017/09/04 18:00:51 wiz Exp $ +# $NetBSD: Makefile,v 1.21 2022/01/01 15:07:27 wiz Exp $ DISTNAME= pgnotify-0.1 PKGNAME= ${PYPKGPREFIX}-pgnotify-0.1 -PKGREVISION= 3 +PKGREVISION= 4 CATEGORIES= databases python MASTER_SITES= http://sandbox.rulemaker.net/ngps/Dist/ EXTRACT_SUFX= .zip @@ -17,5 +17,7 @@ MAKE_ENV+= MANDIR=${PREFIX}/${PKGMANDIR MAKE_ENV+= BINDIR=${PREFIX}/bin USE_TOOLS+= gmake -.include "../../lang/python/distutils.mk" +PYTHON_VERSIONS_INCOMPATIBLE= 27 + +.include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/databases/py-pgnotify/PLIST diff -u pkgsrc/databases/py-pgnotify/PLIST:1.3 pkgsrc/databases/py-pgnotify/PLIST:1.4 --- pkgsrc/databases/py-pgnotify/PLIST:1.3 Sun Mar 20 22:10:13 2016 +++ pkgsrc/databases/py-pgnotify/PLIST Sat Jan 1 15:07:27 2022 @@ -1,5 +1,8 @@ -@comment $NetBSD: PLIST,v 1.3 2016/03/20 22:10:13 wiz Exp $ -${PYSITELIB}/${EGG_FILE} +@comment $NetBSD: PLIST,v 1.4 2022/01/01 15:07:27 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}/pgnotify.py ${PYSITELIB}/pgnotify.pyc ${PYSITELIB}/pgnotify.pyo --_----------=_1641049647109560--