Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7FB8F84E7C for ; Sun, 5 Nov 2023 13:30:45 +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 sRKejLYXHduX for ; Sun, 5 Nov 2023 13:30:45 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id EBDDB84D17 for ; Sun, 5 Nov 2023 13:30:44 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E59B6FA2C; Sun, 5 Nov 2023 13:30:44 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1699191044155870" MIME-Version: 1.0 Date: Sun, 5 Nov 2023 13:30:44 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/sysutils/py-augeas To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20231105133044.E59B6FA2C@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1699191044155870 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Nov 5 13:30:44 UTC 2023 Modified Files: pkgsrc/sysutils/py-augeas: Makefile PLIST Log Message: py-augeas: convert to wheel.mk Not for Python 2. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 pkgsrc/sysutils/py-augeas/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/sysutils/py-augeas/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1699191044155870 Content-Disposition: inline Content-Length: 2216 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/py-augeas/Makefile diff -u pkgsrc/sysutils/py-augeas/Makefile:1.14 pkgsrc/sysutils/py-augeas/Makefile:1.15 --- pkgsrc/sysutils/py-augeas/Makefile:1.14 Wed Apr 19 08:11:32 2023 +++ pkgsrc/sysutils/py-augeas/Makefile Sun Nov 5 13:30:44 2023 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.14 2023/04/19 08:11:32 adam Exp $ +# $NetBSD: Makefile,v 1.15 2023/11/05 13:30:44 wiz Exp $ DISTNAME= python-augeas-1.1.0 PKGNAME= ${DISTNAME:S/python/${PYPKGPREFIX}/} -PKGREVISION= 8 +PKGREVISION= 9 CATEGORIES= sysutils python MASTER_SITES= ${MASTER_SITE_PYPI:=p/python-augeas/} @@ -11,11 +11,15 @@ HOMEPAGE= http://augeas.net/ COMMENT= Python bindings for Augeas LICENSE= gnu-lgpl-v2.1 +TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=0:../../devel/py-setuptools +TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel>=0:../../devel/py-wheel DEPENDS+= ${PYPKGPREFIX}-cffi>=1.0.0:../../devel/py-cffi +PYTHON_VERSIONS_INCOMPATIBLE= 27 + do-test: cd ${WRKSRC}/test && ${PYTHONBIN} test_augeas.py .include "../../sysutils/augeas/buildlink3.mk" -.include "../../lang/python/egg.mk" +.include "../../lang/python/wheel.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/sysutils/py-augeas/PLIST diff -u pkgsrc/sysutils/py-augeas/PLIST:1.2 pkgsrc/sysutils/py-augeas/PLIST:1.3 --- pkgsrc/sysutils/py-augeas/PLIST:1.2 Tue Feb 12 12:21:00 2019 +++ pkgsrc/sysutils/py-augeas/PLIST Sun Nov 5 13:30:44 2023 @@ -1,9 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2019/02/12 12:21:00 adam 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 +@comment $NetBSD: PLIST,v 1.3 2023/11/05 13:30:44 wiz Exp $ ${PYSITELIB}/augeas.py ${PYSITELIB}/augeas.pyc ${PYSITELIB}/augeas.pyo @@ -13,3 +8,9 @@ ${PYSITELIB}/augeas/__init__.pyo ${PYSITELIB}/augeas/ffi.py ${PYSITELIB}/augeas/ffi.pyc ${PYSITELIB}/augeas/ffi.pyo +${PYSITELIB}/${WHEEL_INFODIR}/AUTHORS +${PYSITELIB}/${WHEEL_INFODIR}/COPYING +${PYSITELIB}/${WHEEL_INFODIR}/METADATA +${PYSITELIB}/${WHEEL_INFODIR}/RECORD +${PYSITELIB}/${WHEEL_INFODIR}/WHEEL +${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt --_----------=_1699191044155870--