| CARVIEW |
Select Language
HTTP/2 200
expires: Thu, 19 Nov 1981 08:52:00 GMT
cache-control: no-store, no-cache, must-revalidate
pragma: no-cache
set-cookie: PHPSESSID=s4is2tqs8qidp3me19ea2uobue; path=/
content-type: text/html; charset=UTF-8
date: Sun, 28 Dec 2025 10:38:14 GMT
server: Apache
pkgsrc.se | The NetBSD package collection
archivers
audio
benchmarks
biology
cad
chat
comms
converters
cross
crosspkgtools
databases
devel
doc
editors
emulators
filesystems
finance
fonts
games
geography
graphics
ham
inputmethod
lang
mail
math
mbone
meta-pkgs
misc
multimedia
net
news
parallel
pkgtools
print
regress
security
shells
sysutils
textproc
py-lxml
time
wip
wm
www
x11
* = Virtual Category
Path to this page:
./textproc/py-lxml, Python binding for libxml2 and libxslt
[
Branch: CURRENT, Version: 6.0.2, Package name: py313-lxml-6.0.2, Maintainer: pkgsrc-users
lxml is a Pythonic binding for the libxml2 and libxslt libraries.
It is unique in that it combines the speed and feature completeness
of these libraries with the simplicity of a native Python API,
mostly compatible but superior to the well-known ElementTree API.
Required to run:
[textproc/libxml2] [textproc/libxslt] [lang/python310]
Navigation:
-
Browse pkgsrc
(this page)
archivers
audio
benchmarks
biology
cad
chat
comms
converters
cross
crosspkgtools
databases
devel
doc
editors
emulators
filesystems
finance
fonts
games
geography
graphics
ham
inputmethod
lang
math
mbone
meta-pkgs
misc
multimedia
net
news
parallel
pkgtools
regress
security
shells
sysutils
textproc
py-lxmltime
wip
wm
www
x11
* = Virtual Category
Path to this page:
./textproc/py-lxml, Python binding for libxml2 and libxslt
[
CVSweb ] [
Homepage ] [
RSS ] [
Required by ] [
Add to tracker ]
Branch: CURRENT, Version: 6.0.2, Package name: py313-lxml-6.0.2, Maintainer: pkgsrc-users
lxml is a Pythonic binding for the libxml2 and libxslt libraries.
It is unique in that it combines the speed and feature completeness
of these libraries with the simplicity of a native Python API,
mostly compatible but superior to the well-known ElementTree API.
Required to run:
[textproc/libxml2] [textproc/libxslt] [lang/python310]
Master sites:
Filesize: 3977.955 KBVersion history: (Expand)
- (2025-10-09) Updated to version: py313-lxml-6.0.2
- (2025-09-22) Updated to version: py312-lxml-6.0.2
- (2025-08-23) Updated to version: py312-lxml-6.0.1
- (2025-07-01) Updated to version: py312-lxml-6.0.0
- (2025-04-23) Updated to version: py312-lxml-5.4.0
- (2025-04-12) Updated to version: py312-lxml-5.3.2
CVS history: (Expand)
| 2025-10-09 09:58:14 by Thomas Klausner | Files touched by this commit (442) |
Log message: *: remove reference to (removed) Python 3.9 |
| 2025-09-22 10:15:52 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message: py-lxml: updated to 6.0.2 6.0.2 (2025-09-21) Bugs fixed * Compilation with libxml2 2.15.0 failed. Original patch by Xi Ruoyao. * Setting ``decompress=True`` in the parser had no effect in libxml2 2.15. * Binary wheels on Linux and macOS use the library version libxml2 2.14.6. See https://gitlab.gnome.org/GNOME/libxml2/-/releases/v2.14.6 * Test failures in libxml2 2.15.0 were fixed. Other changes * Binary wheels for Py3.9-3.11 on the ``riscv64`` architecture were added. * Error constants were updated to match libxml2 2.15.0. * Built using Cython 3.1.4. |
| 2025-08-23 14:48:08 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message: py-lxml: updated to 6.0.1 6.0.1 (2025-08-22) Bugs fixed * ``lxml.sax._getNsTag()`` could fail with an exception on malformed input. * Some test adaptations were made for libxml2 2.15. Patch by Nick Wellnhofer. * A Python compatibility test was fixed for Python 3.14+. Patch by Lumír Balhar. * Wheels for "riscv64" on recent Python versions were added. Patch by ffgan. * The wheel build no longer requires the ``wheel`` package unconditionally. Patch by Miro Hrončok. * Binary wheels use the library version libxml2 2.14.5. * Windows binary wheels continue to use a security patched library version \ libxml2 2.11.9. |
| 2025-07-04 11:08:39 by Thomas Klausner | Files touched by this commit (49) |
Log message: *: mark more py-cython dependencies as needing Python>=3.11 |
| 2025-07-01 21:50:57 by Thomas Klausner | Files touched by this commit (3) | |
Log message: py-lxml: update to 6.0.0. 6.0.0 (2025-06-26) ================== Features added -------------- * GH#463: ``lxml.html.diff`` is faster and provides structurally better diffs. Original patch by Steven Fernandez. * GH#405: The factories ``Element`` and ``ElementTree`` can now be used in type \ hints. * GH#448: Parsing from ``memoryview`` and other buffers is supported to allow \ zero-copy parsing. * GH#437: ``lxml.html.builder`` was missing several HTML5 tag names. Patch by Nick Tarleton. * GH#458: ``CDATA`` can now be written into the incremental ``xmlfile()`` writer. Original patch by Lane Shaw. * A new parser option ``decompress=False`` was added that controls the automatic input decompression when using libxml2 2.15.0 or later. Disabling this option by default will effectively prevent decompression bombs when handling untrusted input. Code that depends on automatic decompression must enable this option. Note that libxml2 2.15.0 was not released yet, so this option currently has no effect but can already be used. * The set of compile time / runtime supported libxml2 feature names is available as ``etree.LIBXML_COMPILED_FEATURES`` and ``etree.LIBXML_FEATURES``. This currently includes ``catalog``, ``ftp``, ``html``, ``http``, ``iconv``, ``icu``, ``lzma``, ``regexp``, ``schematron``, ``xmlschema``, ``xpath``, ``zlib``. Bugs fixed ---------- * GH#353: Predicates in ``.find*()`` could mishandle tag indices if a default \ namespace is provided. Original patch by Luise K. * GH#272: The ``head`` and ``body`` properties of ``lxml.html`` elements failed \ if no such element was found. They now return ``None`` instead. Original patch by FVolral. * Tag names provided by code (API, not data) that are longer than ``INT_MAX`` could be truncated or mishandled in other ways. * ``.text_content()`` on ``lxml.html`` elements accidentally returned a \ "smart string" without additional information. It now returns a plain string. * LP#2109931: When building lxml with coverage reporting, it now disables the \ ``sys.monitoring`` support due to the lack of support in \ https://github.com/nedbat/coveragepy/issues/1790 Other changes ------------- * Support for Python < 3.8 was removed. * Parsing directly from zlib (or lzma) compressed data is now considered an optional feature in lxml. It may get removed from libxml2 at some point for security \ reasons (compression bombs) and is therefore no longer guaranteed to be available in lxml. As of this release, zlib support is still normally available in the binary wheels but may get disabled or removed in later (x.y.0) releases. To test the \ availability, use ``"zlib" in etree.LIBXML_FEATURES``. * The ``Schematron`` class is deprecated and will become non-functional in a \ future lxml version. The feature will soon be removed from libxml2 and stop being available. * GH#438: Wheels include the ``arm7l`` target. * GH#465: Windows wheels include the ``arm64`` target. Patch by Finn Womack. * Binary wheels use the library versions libxml2 2.14.4 and libxslt 1.1.43. Note that this disables direct HTTP and FTP support for parsing from URLs. Use Python URL request tools instead (which usually also support HTTPS). To test the availability, use ``"http" in etree.LIBXML_FEATURES``. * Windows binary wheels use the library versions libxml2 2.11.9, libxslt 1.1.39 \ and libiconv 1.17. They are now based on VS-2022. * Built using Cython 3.1.2. * The debug methods ``MemDebug.dump()`` and ``MemDebug.show()`` were removed \ completely. libxml2 2.13.0 discarded this feature. |
| 2025-04-23 09:36:39 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message: py-lxml: updated to 5.4.0 5.4.0 (2025-04-22) Bugs fixed * Binary wheels use libxml2 2.13.8 and libxslt 1.1.43 to resolve several CVEs. (Binary wheels for Windows continue to use a patched libxml2 2.11.9 and \ libxslt 1.1.39.) |
| 2025-04-17 23:53:13 by Thomas Klausner | Files touched by this commit (2449) |
Log message: *: recursive bump for icu 77 and libxml2 2.14 |
| 2025-04-12 21:16:19 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message: py-lxml: updated to 5.3.2 5.3.2 (2025-04-05) This release resolves CVE-2025-24928 as described in https://gitlab.gnome.org/GNOME/libxml2/-/issues/847 Bugs fixed * Binary wheels use libxml2 2.12.10 and libxslt 1.1.42. * Binary wheels for Windows use a patched libxml2 2.11.9 and libxslt 1.1.39. |
