pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/textproc/libxmlb
Module Name: pkgsrc
Committed By: wiz
Date: Sun Nov 30 14:02:20 UTC 2025
Modified Files:
pkgsrc/textproc/libxmlb: Makefile PLIST distinfo
Log Message:
libxmlb: update to 0.3.24.
Version 0.3.24
~~~~~~~~~~~~~~
Released: 2025-09-10
Bugfixes:
- Allow calling xb_silo_query_build_index() with no text set (Richard Hughes)
- Do not reverse the order of attrs when using xb_node_attr_iter_next() (Richard Hughes)
Version 0.3.23
~~~~~~~~~~~~~~
Released: 2025-08-07
Bugfixes:
- Do not reallocate the final silo blob when compiling to reduce peak RSS by about ~6%
Version 0.3.22
~~~~~~~~~~~~~~
Released: 2025-03-12
New Features:
- Add support for COLLAPSE_EMPTY when exporting an XbBuilderNode (Richard Hughes)
- Store the expected file size in the header to detect truncation (Richard Hughes)
Bugfixes:
- Check the strtab has a trailing NUL byte (Richard Hughes)
- Fix an issue when exporting a silo using COLLAPSE_EMPTY (Richard Hughes)
- Fix calling text() on an empty element (Richard Hughes)
Version 0.3.21
~~~~~~~~~~~~~~
Released: 2024-10-15
Bugfixes:
- Check for corrupt XbSiloNode values in a smarter way (Richard Hughes)
Version 0.3.20
~~~~~~~~~~~~~~
Released: 2024-10-14
Bugfixes:
- Do not always strip literal text (Richard Hughes)
- Do not assume .txt files are application/xml (Richard Hughes)
- Fix a crash when loading a corrupt XMLb store (Richard Hughes)
- Fix writing files on Windows (Richard Hughes)
Version 0.3.19
~~~~~~~~~~~~~~
Released: 2024-04-22
New Features:
- Add xb_version_string() to get the runtime ABI version (Richard Hughes)
Bugfixes:
- Add the runtime version as the default XMLb invalidation GUID (Richard Hughes)
Version 0.3.18
~~~~~~~~~~~~~~
Released: 2024-04-09
Bugfixes:
- Fix decompressing large zstd files, harder (Richard Hughes)
- Include the pkgconfig variables in the subproject declared dependency (Richard Hughes)
Version 0.3.17
~~~~~~~~~~~~~~
Released: 2024-04-05
Bugfixes:
- Create SECURITY.md for the OpenSSF scorecard (Richard Hughes)
- Fix decompressing large zstd files (Richard Hughes)
- Use zst as the file extension for zstd (Richard Hughes)
Version 0.3.16
~~~~~~~~~~~~~~
Released: 2024-04-03
New Features:
- Add the lzma and zstd support to the pkgconfig file (Richard Hughes)
Bugfixes:
- Make the LZMA support optional (Richard Hughes)
Version 0.3.15
~~~~~~~~~~~~~~
Released: 2024-01-02
New Features:
- Sprinkle __attribute__((nonnull)) to give a little more compile-time safety (Richard Hughes)
Bugfixes:
- Accept text/xml as an alternative to application/xml (peigongdsd)
- Do not inline shared code (Chun-wei Fan)
- Fix compiling with Visual Studio (Chun-wei Fan)
- Fix the exported api test on Windows (Chun-wei Fan)
- Generate and use .def file for clang-cl builds (Chun-wei Fan)
- Release source file handles early (Milan Crha)
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 pkgsrc/textproc/libxmlb/Makefile
cvs rdiff -u -r1.1 -r1.2 pkgsrc/textproc/libxmlb/PLIST \
pkgsrc/textproc/libxmlb/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/textproc/libxmlb/Makefile
diff -u pkgsrc/textproc/libxmlb/Makefile:1.4 pkgsrc/textproc/libxmlb/Makefile:1.5
--- pkgsrc/textproc/libxmlb/Makefile:1.4 Sun Nov 30 11:01:57 2025
+++ pkgsrc/textproc/libxmlb/Makefile Sun Nov 30 14:02:20 2025
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.4 2025/11/30 11:01:57 wiz Exp $
+# $NetBSD: Makefile,v 1.5 2025/11/30 14:02:20 wiz Exp $
-DISTNAME= libxmlb-0.3.14
-PKGREVISION= 2
+DISTNAME= libxmlb-0.3.24
CATEGORIES= textproc
MASTER_SITES= ${MASTER_SITE_GITHUB:=hughsie/}
GITHUB_RELEASE= ${PKGVERSION_NOREV}
Index: pkgsrc/textproc/libxmlb/PLIST
diff -u pkgsrc/textproc/libxmlb/PLIST:1.1 pkgsrc/textproc/libxmlb/PLIST:1.2
--- pkgsrc/textproc/libxmlb/PLIST:1.1 Sun Oct 15 07:50:09 2023
+++ pkgsrc/textproc/libxmlb/PLIST Sun Nov 30 14:02:20 2025
@@ -1,10 +1,11 @@
-@comment $NetBSD: PLIST,v 1.1 2023/10/15 07:50:09 wiz Exp $
+@comment $NetBSD: PLIST,v 1.2 2025/11/30 14:02:20 wiz Exp $
bin/xb-tool
include/libxmlb-2/libxmlb/xb-builder-fixup.h
include/libxmlb-2/libxmlb/xb-builder-node.h
include/libxmlb-2/libxmlb/xb-builder-source-ctx.h
include/libxmlb-2/libxmlb/xb-builder-source.h
include/libxmlb-2/libxmlb/xb-builder.h
+include/libxmlb-2/libxmlb/xb-compile.h
include/libxmlb-2/libxmlb/xb-machine.h
include/libxmlb-2/libxmlb/xb-node-query.h
include/libxmlb-2/libxmlb/xb-node-silo.h
@@ -30,7 +31,7 @@ libexec/installed-tests/libxmlb/test.qui
libexec/installed-tests/libxmlb/test.xml
libexec/installed-tests/libxmlb/test.xml.gz.gz.gz
libexec/installed-tests/libxmlb/test.xml.xz
-libexec/installed-tests/libxmlb/test.xml.zstd
+libexec/installed-tests/libxmlb/test.xml.zst
libexec/installed-tests/libxmlb/xb-self-test
man/man1/xb-tool.1
share/gir-1.0/Xmlb-2.0.gir
Index: pkgsrc/textproc/libxmlb/distinfo
diff -u pkgsrc/textproc/libxmlb/distinfo:1.1 pkgsrc/textproc/libxmlb/distinfo:1.2
--- pkgsrc/textproc/libxmlb/distinfo:1.1 Sun Oct 15 07:50:09 2023
+++ pkgsrc/textproc/libxmlb/distinfo Sun Nov 30 14:02:20 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1 2023/10/15 07:50:09 wiz Exp $
+$NetBSD: distinfo,v 1.2 2025/11/30 14:02:20 wiz Exp $
-BLAKE2s (libxmlb-0.3.14.tar.xz) = 32c3314cd0c104ed95c2003953a599f1a2d9c6252c9569c0542c1825bb3c5ef7
-SHA512 (libxmlb-0.3.14.tar.xz) = d046b8e626d7ec74eeb816f49e8b8a857f51b30808fc85b69aa55c5cf401c716ef846c4e6c03e6806b379110a0d6197599b4b73e100c8589b74e1e1b68940b57
-Size (libxmlb-0.3.14.tar.xz) = 100288 bytes
+BLAKE2s (libxmlb-0.3.24.tar.xz) = fb47d84d90fd71805e10191ec67b88e65d1746c6e3be512550f2b58183cfdfa5
+SHA512 (libxmlb-0.3.24.tar.xz) = 298a2fb3ff097f8b710ade608b0b849b159dc49b808d5da5f3218ad3298adb5a4a0519f83792b482bf93967aea84c510340d6ca8d97c0cd2e4bf14e5753e9ce3
+Size (libxmlb-0.3.24.tar.xz) = 105072 bytes
Home |
Main Index |
Thread Index |
Old Index