Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7E52C84E7C for ; Sun, 5 Nov 2023 13:27:30 +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 Lko8tzDWoe4G for ; Sun, 5 Nov 2023 13:27:29 +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 D9E1384D17 for ; Sun, 5 Nov 2023 13:27:29 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CDAD0FA2C; Sun, 5 Nov 2023 13:27:29 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1699190849230220" MIME-Version: 1.0 Date: Sun, 5 Nov 2023 13:27:29 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/graphics/py-pycha To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20231105132729.CDAD0FA2C@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1699190849230220 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:27:29 UTC 2023 Modified Files: pkgsrc/graphics/py-pycha: Makefile PLIST Log Message: py-pycha: Convert to wheel.mk Not for Python 2. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 pkgsrc/graphics/py-pycha/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/graphics/py-pycha/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1699190849230220 Content-Disposition: inline Content-Length: 2663 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/py-pycha/Makefile diff -u pkgsrc/graphics/py-pycha/Makefile:1.22 pkgsrc/graphics/py-pycha/Makefile:1.23 --- pkgsrc/graphics/py-pycha/Makefile:1.22 Wed Jan 5 15:41:11 2022 +++ pkgsrc/graphics/py-pycha/Makefile Sun Nov 5 13:27:29 2023 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.22 2022/01/05 15:41:11 wiz Exp $ +# $NetBSD: Makefile,v 1.23 2023/11/05 13:27:29 wiz Exp $ DISTNAME= pycha-0.8.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= graphics python MASTER_SITES= ${MASTER_SITE_PYPI:=p/pycha/} @@ -11,15 +11,17 @@ HOMEPAGE= https://bitbucket.org/lgs/pych COMMENT= Library for making charts with Python LICENSE= gnu-lgpl-v3 +TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools +TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel DEPENDS+= ${PYPKGPREFIX}-cairocffi-[0-9]*:../../graphics/py-cairocffi DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six USE_LANGUAGES= #none -USE_PKG_RESOURCES= yes +PYTHON_VERSIONS_INCOMPATIBLE= 27 post-install: ${MV} ${DESTDIR}${PREFIX}/bin/chavier ${DESTDIR}${PREFIX}/bin/chavier-${PYVERSSUFFIX} || ${TRUE} -.include "../../lang/python/egg.mk" +.include "../../lang/python/wheel.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/graphics/py-pycha/PLIST diff -u pkgsrc/graphics/py-pycha/PLIST:1.3 pkgsrc/graphics/py-pycha/PLIST:1.4 --- pkgsrc/graphics/py-pycha/PLIST:1.3 Wed Mar 11 20:17:12 2020 +++ pkgsrc/graphics/py-pycha/PLIST Sun Nov 5 13:27:29 2023 @@ -1,12 +1,5 @@ -@comment $NetBSD: PLIST,v 1.3 2020/03/11 20:17:12 wiz Exp $ +@comment $NetBSD: PLIST,v 1.4 2023/11/05 13:27:29 wiz Exp $ bin/chavier-${PYVERSSUFFIX} -${PYSITELIB}/${EGG_INFODIR}/PKG-INFO -${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt -${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt -${PYSITELIB}/${EGG_INFODIR}/entry_points.txt -${PYSITELIB}/${EGG_INFODIR}/requires.txt -${PYSITELIB}/${EGG_INFODIR}/top_level.txt -${PYSITELIB}/${EGG_INFODIR}/zip-safe ${PYSITELIB}/chavier/__init__.py ${PYSITELIB}/chavier/__init__.pyc ${PYSITELIB}/chavier/__init__.pyo @@ -19,6 +12,14 @@ ${PYSITELIB}/chavier/dialogs.pyo ${PYSITELIB}/chavier/gui.py ${PYSITELIB}/chavier/gui.pyc ${PYSITELIB}/chavier/gui.pyo +${PYSITELIB}/${WHEEL_INFODIR}/AUTHORS +${PYSITELIB}/${WHEEL_INFODIR}/COPYING +${PYSITELIB}/${WHEEL_INFODIR}/METADATA +${PYSITELIB}/${WHEEL_INFODIR}/RECORD +${PYSITELIB}/${WHEEL_INFODIR}/WHEEL +${PYSITELIB}/${WHEEL_INFODIR}/entry_points.txt +${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt +${PYSITELIB}/${WHEEL_INFODIR}/zip-safe ${PYSITELIB}/pycha/__init__.py ${PYSITELIB}/pycha/__init__.pyc ${PYSITELIB}/pycha/__init__.pyo --_----------=_1699190849230220--