Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-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 8D3701A923A for ; Mon, 5 Oct 2020 21:24:17 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 2EA7B84D36; Mon, 5 Oct 2020 21:24:17 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A936D84D2F for ; Mon, 5 Oct 2020 21:24:16 +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 EIGIOUNAHCEI for ; Mon, 5 Oct 2020 21:24:16 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3213784CDC for ; Mon, 5 Oct 2020 21:24:16 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2DE73FB28; Mon, 5 Oct 2020 21:24:16 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_160193305695460" MIME-Version: 1.0 Date: Mon, 5 Oct 2020 21:24:16 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/py-plumbum To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20201005212416.2DE73FB28@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_160193305695460 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Oct 5 21:24:16 UTC 2020 Modified Files: pkgsrc/devel/py-plumbum: Makefile PLIST Log Message: py-plumbum: use egg.mk Previously, this had a missing dependency. Bump PKGREVISION to be on the safe side. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/devel/py-plumbum/Makefile \ pkgsrc/devel/py-plumbum/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_160193305695460 Content-Disposition: inline Content-Length: 1599 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-plumbum/Makefile diff -u pkgsrc/devel/py-plumbum/Makefile:1.1 pkgsrc/devel/py-plumbum/Makefile:1.2 --- pkgsrc/devel/py-plumbum/Makefile:1.1 Tue Sep 29 02:27:30 2020 +++ pkgsrc/devel/py-plumbum/Makefile Mon Oct 5 21:24:16 2020 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.1 2020/09/29 02:27:30 khorben Exp $ +# $NetBSD: Makefile,v 1.2 2020/10/05 21:24:16 wiz Exp $ DISTNAME= plumbum-1.6.1.post0 +PKGREVISION= 1 CATEGORIES= devel PKGNAME= ${PYPKGPREFIX}-${DISTNAME} MASTER_SITES= ${MASTER_SITE_PYPI:=p/plumbum/} @@ -10,5 +11,5 @@ HOMEPAGE= http://plumbum.readthedocs.org COMMENT= Plumbum: shell combinators library LICENSE= mit -.include "../../lang/python/distutils.mk" +.include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-plumbum/PLIST diff -u pkgsrc/devel/py-plumbum/PLIST:1.1 pkgsrc/devel/py-plumbum/PLIST:1.2 --- pkgsrc/devel/py-plumbum/PLIST:1.1 Tue Sep 29 02:27:30 2020 +++ pkgsrc/devel/py-plumbum/PLIST Mon Oct 5 21:24:16 2020 @@ -1,8 +1,8 @@ -@comment $NetBSD: PLIST,v 1.1 2020/09/29 02:27:30 khorben Exp $ -${PYSITELIB}/${EGG_FILE}/PKG-INFO -${PYSITELIB}/${EGG_FILE}/SOURCES.txt -${PYSITELIB}/${EGG_FILE}/dependency_links.txt -${PYSITELIB}/${EGG_FILE}/top_level.txt +@comment $NetBSD: PLIST,v 1.2 2020/10/05 21:24:16 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}/plumbum/__init__.py ${PYSITELIB}/plumbum/__init__.pyc ${PYSITELIB}/plumbum/__init__.pyo --_----------=_160193305695460--