Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=HUnlg3qs; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=VyIY2TwR Received: by mail.netbsd.org (Postfix, from userid 605) id B089684E93; Tue, 30 Apr 2024 08:38:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714466299; bh=joFfMy9Hp9rd+wPopixfzyTVYTS6y11mo9VDb1c6zUA=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=HUnlg3qs5Wpm7NLhpsKorZhepryeP2m2PzXwx73EiHM2EXRr4ySeM+u7xrLuwnAXr 6IKEwcR0HCt4ndS/diAQIogE013PDzECc2HNwU4jxMeGvyzxN3pCZCMwvFbXB6fyLL 6cEL8AI4KdqhkzSmQc6Pv2rCFprHQBKs0t2a4gFk= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A09FD84E66 for ; Tue, 30 Apr 2024 08:38:18 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=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 ZDmaFRhybq8s for ; Tue, 30 Apr 2024 08:38:18 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 1683C84CE8 for ; Tue, 30 Apr 2024 08:38:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714466298; bh=joFfMy9Hp9rd+wPopixfzyTVYTS6y11mo9VDb1c6zUA=; h=Date:From:Subject:To:Reply-To; b=VyIY2TwRcB8G5mXiCB/bqCrVf/VTW9PBl/p9RJ8Pmn79xOHNVJlanBigRX9S/g1PJ chdt2EA9HKuOiG2VyYDwCF+MZOLMyhWHhM42mDCSM1c36z+fMc9TMbVfiejHDecOVE 4YsOtM5MSUE5czf+lV218GX4F6ZPEv7bzbz79zCg= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0944FFA2C; Tue, 30 Apr 2024 08:38:18 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1714466298183150" MIME-Version: 1.0 Date: Tue, 30 Apr 2024 08:38:18 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/textproc/py-pdfrw To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20240430083818.0944FFA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1714466298183150 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Tue Apr 30 08:38:17 UTC 2024 Modified Files: pkgsrc/textproc/py-pdfrw: Makefile PLIST Log Message: py-pdfrw: convert to wheel.mk Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/textproc/py-pdfrw/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/textproc/py-pdfrw/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1714466298183150 Content-Disposition: inline Content-Length: 1960 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/py-pdfrw/Makefile diff -u pkgsrc/textproc/py-pdfrw/Makefile:1.6 pkgsrc/textproc/py-pdfrw/Makefile:1.7 --- pkgsrc/textproc/py-pdfrw/Makefile:1.6 Thu Oct 5 22:13:32 2023 +++ pkgsrc/textproc/py-pdfrw/Makefile Tue Apr 30 08:38:17 2024 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.6 2023/10/05 22:13:32 wiz Exp $ +# $NetBSD: Makefile,v 1.7 2024/04/30 08:38:17 wiz Exp $ DISTNAME= pdfrw-0.4 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} -PKGREVISION= 3 +PKGREVISION= 4 CATEGORIES= textproc python MASTER_SITES= ${MASTER_SITE_PYPI:=p/pdfrw/} @@ -11,7 +11,12 @@ HOMEPAGE= https://github.com/pmaupin/pdf COMMENT= PDF file reader/writer pure Python library LICENSE= mit AND modified-bsd +TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools +TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel + USE_LANGUAGES= # none -.include "../../lang/python/egg.mk" +PYTHON_VERSIONS_INCOMPATIBLE= 27 + +.include "../../lang/python/wheel.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/textproc/py-pdfrw/PLIST diff -u pkgsrc/textproc/py-pdfrw/PLIST:1.2 pkgsrc/textproc/py-pdfrw/PLIST:1.3 --- pkgsrc/textproc/py-pdfrw/PLIST:1.2 Mon Oct 2 10:56:15 2017 +++ pkgsrc/textproc/py-pdfrw/PLIST Tue Apr 30 08:38:17 2024 @@ -1,9 +1,10 @@ -@comment $NetBSD: PLIST,v 1.2 2017/10/02 10:56:15 adam Exp $ -${PYSITELIB}/${EGG_INFODIR}/PKG-INFO -${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt -${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt -${PYSITELIB}/${EGG_INFODIR}/top_level.txt -${PYSITELIB}/${EGG_INFODIR}/zip-safe +@comment $NetBSD: PLIST,v 1.3 2024/04/30 08:38:17 wiz Exp $ +${PYSITELIB}/${WHEEL_INFODIR}/LICENSE.txt +${PYSITELIB}/${WHEEL_INFODIR}/METADATA +${PYSITELIB}/${WHEEL_INFODIR}/RECORD +${PYSITELIB}/${WHEEL_INFODIR}/WHEEL +${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt +${PYSITELIB}/${WHEEL_INFODIR}/zip-safe ${PYSITELIB}/pdfrw/__init__.py ${PYSITELIB}/pdfrw/__init__.pyc ${PYSITELIB}/pdfrw/__init__.pyo --_----------=_1714466298183150--