Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=PLHXYeiN; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=0QLYIxLl Received: by mail.netbsd.org (Postfix, from userid 605) id 27A9684F3A; Sun, 7 Apr 2024 11:40:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1712490058; bh=wcZlTlu85JXgnV+45CxMyQBVh8649kKQFWg624SJZtA=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=PLHXYeiNOeMK2PnZsHzkPL+9j5ncoLQwQ8G7MyA/ziaxSWTchs2PKT69aAzT8c+6Q Kks7ig6e/AQ52KcPsfDzBAwhjbn6o0BUMCBrb2BNkPqm6QXzTgyjv0X4JD4jXMPjMr pupTX8DraH1jH9JdldMJSZeyEurvsvjwr7lqSl4I= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1616184F21 for ; Sun, 7 Apr 2024 11:40:57 +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 ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id HpdPsrtsemMj for ; Sun, 7 Apr 2024 11:40:56 +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 5255084D2D for ; Sun, 7 Apr 2024 11:40:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1712490056; bh=wcZlTlu85JXgnV+45CxMyQBVh8649kKQFWg624SJZtA=; h=Date:From:Subject:To:Reply-To; b=0QLYIxLl6PNQrr3+ZEqkfivh7w2EvnZ5bgcaWuh9C9DlXl7PNnKl/sXKuohUY9BN7 oBLtc835fnO1bkYe5fLjmCY7VndOjzIVCHlOmR/ApygFM+drwGLGEMvFF7rOxWYzls Vr4sIrNE9BP34KOnE4e4LHcl7myqKnRwlzfMgDIs= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 40DAEFA2C; Sun, 7 Apr 2024 11:40:56 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1712490056104100" MIME-Version: 1.0 Date: Sun, 7 Apr 2024 11:40:56 +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: <20240407114056.40DAEFA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1712490056104100 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: wiz Date: Sun Apr 7 11:40:56 UTC 2024 Modified Files: pkgsrc/textproc/py-lxml: Makefile PLIST distinfo Log Message: py-lxml: update to 5.2.1. 5.2.1 (2024-04-02) ================== Bugs fixed ---------- * LP#2059910: The minimum CPU architecture for the Linux x86 binary wheels was set back to "core2", but with SSE 4.2 enabled. * LP#2059977: ``Element.iterfind("//absolute_path")`` failed with a ``SyntaxError`` where it should have issued a warning. * GH#416: The documentation build was using the non-standard ``which`` command. Patch by Michał Górny. 5.2.0 (2024-03-30) ================== Other changes ------------- * LP#1958539: The ``lxml.html.clean`` implementation suffered from several (only if used) security issues in the past and was now extracted into a separate library: https://github.com/fedora-python/lxml_html_clean Projects that use lxml without "lxml.html.clean" will not notice any difference, except that they won't have potentially vulnerable code installed. The module is available as an "extra" setuptools dependency "lxml[html_clean]", so that Projects that need "lxml.html.clean" will need to switch their requirements from "lxml" to "lxml[html_clean]", or install the new library themselves. * The minimum CPU architecture for the Linux x86 binary wheels was upgraded to "sandybridge" (launched 2011), and glibc 2.28 / gcc 12 (manylinux_2_28) wheels were added. * Built with Cython 3.0.10. 5.1.2 (2024-??-??) ================== Bugs fixed ---------- * LP#2059977: ``Element.iterfind("//absolute_path")`` failed with a ``SyntaxError`` where it should have issued a warning. To generate a diff of this commit: cvs rdiff -u -r1.104 -r1.105 pkgsrc/textproc/py-lxml/Makefile cvs rdiff -u -r1.18 -r1.19 pkgsrc/textproc/py-lxml/PLIST cvs rdiff -u -r1.73 -r1.74 pkgsrc/textproc/py-lxml/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1712490056104100 Content-Disposition: inline Content-Length: 2403 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.104 pkgsrc/textproc/py-lxml/Makefile:1.105 --- pkgsrc/textproc/py-lxml/Makefile:1.104 Fri Apr 5 10:38:08 2024 +++ pkgsrc/textproc/py-lxml/Makefile Sun Apr 7 11:40:56 2024 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.104 2024/04/05 10:38:08 wiz Exp $ +# $NetBSD: Makefile,v 1.105 2024/04/07 11:40:56 wiz Exp $ -DISTNAME= lxml-5.1.1 +DISTNAME= lxml-5.2.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= textproc python MASTER_SITES= ${MASTER_SITE_PYPI:=l/lxml/} Index: pkgsrc/textproc/py-lxml/PLIST diff -u pkgsrc/textproc/py-lxml/PLIST:1.18 pkgsrc/textproc/py-lxml/PLIST:1.19 --- pkgsrc/textproc/py-lxml/PLIST:1.18 Sun Jan 14 09:44:22 2024 +++ pkgsrc/textproc/py-lxml/PLIST Sun Apr 7 11:40:56 2024 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.18 2024/01/14 09:44:22 wiz Exp $ +@comment $NetBSD: PLIST,v 1.19 2024/04/07 11:40:56 wiz Exp $ ${PYSITELIB}/${WHEEL_INFODIR}/LICENSE.txt ${PYSITELIB}/${WHEEL_INFODIR}/LICENSES.txt ${PYSITELIB}/${WHEEL_INFODIR}/METADATA @@ -57,7 +57,6 @@ ${PYSITELIB}/lxml/html/builder.pyo ${PYSITELIB}/lxml/html/clean.py ${PYSITELIB}/lxml/html/clean.pyc ${PYSITELIB}/lxml/html/clean.pyo -${PYSITELIB}/lxml/html/clean.so ${PYSITELIB}/lxml/html/defs.py ${PYSITELIB}/lxml/html/defs.pyc ${PYSITELIB}/lxml/html/defs.pyo Index: pkgsrc/textproc/py-lxml/distinfo diff -u pkgsrc/textproc/py-lxml/distinfo:1.73 pkgsrc/textproc/py-lxml/distinfo:1.74 --- pkgsrc/textproc/py-lxml/distinfo:1.73 Fri Apr 5 10:38:08 2024 +++ pkgsrc/textproc/py-lxml/distinfo Sun Apr 7 11:40:56 2024 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.73 2024/04/05 10:38:08 wiz Exp $ +$NetBSD: distinfo,v 1.74 2024/04/07 11:40:56 wiz Exp $ -BLAKE2s (lxml-5.1.1.tar.gz) = 1ebe4316719047ddb23504c99606b461627edde39d1736fa9723b556de89d37a -SHA512 (lxml-5.1.1.tar.gz) = f72b4f04189323c290f647524fb1ec8da3c31feadbc7676743de65016aeaaf16ed7b44c27054f4527aaf19d21b3ba7f50c157605485b5079c1b5635c518d50b6 -Size (lxml-5.1.1.tar.gz) = 3838907 bytes +BLAKE2s (lxml-5.2.1.tar.gz) = 5581587d490a20376e5106a36a3caed1062f314f66af7aa9cf60f4b44a2ddda2 +SHA512 (lxml-5.2.1.tar.gz) = 389d9fef567648b188f600dbba74353414c7393fdb2b4ddddc228080c5a0d157331efca775561cbcbf28806eb3a1b928fed45fe45aeead2e308774e0eae019b5 +Size (lxml-5.2.1.tar.gz) = 3675336 bytes SHA1 (patch-setupinfo.py) = 43ac54758b37c79329a4dabae1c3240661193885 --_----------=_1712490056104100--