Received: by mail.netbsd.org (Postfix, from userid 605) id 7EB3B84EE2; Mon, 1 Jan 2024 00:12:36 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AAB0484EE4 for ; Mon, 1 Jan 2024 00:12:35 +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 7uVBeiScYup4 for ; Mon, 1 Jan 2024 00:12:35 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 15A7784ED4 for ; Mon, 1 Jan 2024 00:12:35 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 070DFFA42; Mon, 1 Jan 2024 00:12:35 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1704067955292370" MIME-Version: 1.0 Date: Mon, 1 Jan 2024 00:12:35 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/textproc/py-lxml To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20240101001235.070DFFA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1704067955292370 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Jan 1 00:12:34 UTC 2024 Modified Files: pkgsrc/textproc/py-lxml: Makefile PLIST Log Message: py-lxml: switch back to egg.mk, this needs to support Python 2 for now Noticed by adam@ Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.95 -r1.96 pkgsrc/textproc/py-lxml/Makefile cvs rdiff -u -r1.16 -r1.17 pkgsrc/textproc/py-lxml/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1704067955292370 Content-Disposition: inline Content-Length: 2375 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/py-lxml/Makefile diff -u pkgsrc/textproc/py-lxml/Makefile:1.95 pkgsrc/textproc/py-lxml/Makefile:1.96 --- pkgsrc/textproc/py-lxml/Makefile:1.95 Sun Dec 31 21:30:50 2023 +++ pkgsrc/textproc/py-lxml/Makefile Mon Jan 1 00:12:34 2024 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.95 2023/12/31 21:30:50 wiz Exp $ +# $NetBSD: Makefile,v 1.96 2024/01/01 00:12:34 wiz Exp $ DISTNAME= lxml-5.0.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +PKGREVISION= 1 CATEGORIES= textproc python MASTER_SITES= ${MASTER_SITE_PYPI:=l/lxml/} EXTRACT_SUFX= .zip @@ -11,15 +12,15 @@ HOMEPAGE= https://lxml.de/ COMMENT= Python binding for libxml2 and libxslt LICENSE= modified-bsd -TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=0:../../devel/py-setuptools -TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel>=0:../../devel/py-wheel +#TOOL_DEPENDS+= ${PYPKGPREFIX}-setuptools>=0:../../devel/py-setuptools +#TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel>=0:../../devel/py-wheel TEST_DEPENDS+= ${PYPKGPREFIX}-cssselect>=0.7:../../textproc/py-cssselect USE_CC_FEATURES= c99 .include "../../devel/zlib/buildlink3.mk" .include "../../lang/python/batteries-included.mk" -.include "../../lang/python/wheel.mk" +.include "../../lang/python/egg.mk" BUILDLINK_API_DEPENDS.libxml2+= libxml2>=2.9.12 .include "../../textproc/libxml2/buildlink3.mk" BUILDLINK_API_DEPENDS.libxslt+= libxslt>=1.1.34 Index: pkgsrc/textproc/py-lxml/PLIST diff -u pkgsrc/textproc/py-lxml/PLIST:1.16 pkgsrc/textproc/py-lxml/PLIST:1.17 --- pkgsrc/textproc/py-lxml/PLIST:1.16 Sun Dec 31 21:30:50 2023 +++ pkgsrc/textproc/py-lxml/PLIST Mon Jan 1 00:12:34 2024 @@ -1,10 +1,10 @@ -@comment $NetBSD: PLIST,v 1.16 2023/12/31 21:30:50 wiz Exp $ -${PYSITELIB}/${WHEEL_INFODIR}/LICENSE.txt -${PYSITELIB}/${WHEEL_INFODIR}/LICENSES.txt -${PYSITELIB}/${WHEEL_INFODIR}/METADATA -${PYSITELIB}/${WHEEL_INFODIR}/RECORD -${PYSITELIB}/${WHEEL_INFODIR}/WHEEL -${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt +@comment $NetBSD: PLIST,v 1.17 2024/01/01 00:12:34 wiz Exp $ +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt ${PYSITELIB}/lxml/ElementInclude.py ${PYSITELIB}/lxml/ElementInclude.pyc ${PYSITELIB}/lxml/ElementInclude.pyo --_----------=_1704067955292370--