aboutsummaryrefslogtreecommitdiff
path: root/textproc/libxmlb
Commit message (Collapse)AuthorAgeFilesLines
* textproc/snowballstemmer: chase shlib version bumpGuido Falsi2025-05-101-0/+1
|
* textproc/libxmlb: Update to 0.3.22Daniel Engberg2025-03-162-4/+4
| | | | | | | Changelog: https://github.com/hughsie/libxmlb/releases/tag/0.3.22 PR: 285452 Approved by: desktop (arrowd)
* textproc/libxmlb: Update to 0.3.21Jason E. Hale2025-01-243-15/+9
| | | | | | | | | Disable installed-tests. These seem harmless, but after the Jia Tan long-con in xz-utils, best to just disable them since they are unused. It's also kind of weird/sus to install random test data in general. This seems to be "Hello, world." stuff for now, be could be more nefarious in the future. Perhaps I'm just being a bit paranoid, but I don't see any practical use for these test cases to be installed.
* */*: Sanitize MANPREFIX for meson portsMuhammad Moinur Rahman2024-01-122-1/+2
| | | | Approved by: portmgr
* textproc/libxmlb: Add option for DOCSDaniel Engberg2023-11-053-34/+38
| | | | | | | Make DOCS optional to avoid pulling in gtk-doc PR: 273377 Approved by: desktop (arrowd)
* textproc/libxmlb: Update to 0.3.14Gleb Popov2023-08-272-4/+4
| | | | Sponsored by: Serenity Cybersecurity, LLC
* textproc/libxmlb: Switch to upstream release archiveDaniel Engberg2023-08-182-6/+6
| | | | | | | | | Switch to upstream release archive to follow Porters Handbook more closely and while at it define LICENSE_FILE PR: 273120 Approved by: desktop (tcberner) Sponsored by: Blinkinblox
* textproc/libxmlb: Update to 0.3.13Gleb Popov2023-08-182-4/+4
| | | | Sponsored by: Serenity Cybersecurity, LLC
* textproc/libxmlb: update to 0.3.12Tobias C. Berner2023-08-123-4/+9
| | | | | | | | | | | | | | | | New Features: * Use indexes when binding value (Richard Hughes) Bugfixes: * Avoid building errors and debug strings when possible to make XbQuery faster (Christian Hergert) * Fix content type detection on macOS (Richard Hughes) * Inline a number of machine internals to make queries faster (Christian Hergert) * Make zstd support optional (sulincix, aliriza) * Setup various release build options (Christian Hergert) Changelog: https://github.com/hughsie/libxmlb/releases/tag/0.3.12
* textproc/libxmlb: update to 0.3.11Tobias C. Berner2023-02-222-5/+6
| | | | | | | | | | | | | Version 0.3.11 ~~~~~~~~~~~~~~ Released: 2023-02-20 New Features: - Add limited support for XPath 1.0 'in' (Richard Hughes) - Add support for zstd (Richard Hughes) Bugfixes: - Do not assert() when decompressing invalid LZMA (Richard Hughes)
* textproc/libxmlb: update to 0.3.10Tobias C. Berner2022-10-152-4/+4
| | | | | | | | | Bugfixes: - Fix dumping and exporting multiple files from the CLI (Richard Hughes) - Watch files before loading them into the builder (Philip Withnall) - Fix potential double free when filtering by language (Sergio Costas Rodriguez)
* Remove WWW entries moved into port MakefilesStefan Eßer2022-09-071-2/+0
| | | | | | | | | | Commit b7f05445c00f has added WWW entries to port Makefiles based on WWW: lines in pkg-descr files. This commit removes the WWW: lines of moved-over URLs from these pkg-descr files. Approved by: portmgr (tcberner)
* Add WWW entries to port MakefilesStefan Eßer2022-09-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It has been common practice to have one or more URLs at the end of the ports' pkg-descr files, one per line and prefixed with "WWW:". These URLs should point at a project website or other relevant resources. Access to these URLs required processing of the pkg-descr files, and they have often become stale over time. If more than one such URL was present in a pkg-descr file, only the first one was tarnsfered into the port INDEX, but for many ports only the last line did contain the port specific URL to further information. There have been several proposals to make a project URL available as a macro in the ports' Makefiles, over time. This commit implements such a proposal and moves one of the WWW: entries of each pkg-descr file into the respective port's Makefile. A heuristic attempts to identify the most relevant URL in case there is more than one WWW: entry in some pkg-descr file. URLs that are not moved into the Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr files in order to preserve them. There are 1256 ports that had no WWW: entries in pkg-descr files. These ports will not be touched in this commit. The portlint port has been adjusted to expect a WWW entry in each port Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as deprecated. Approved by: portmgr (tcberner)
* textproc/libxmlb: update to 0.3.9Tobias C. Berner2022-05-263-5/+6
| | | | | | | Bugfixes: - Fix the crash for when the root tree has no children (Richard Hughes) - Fix the crash when getting the element for the [empty] root (Richard Hughes) - Install xb-tool into bindir (Richard Hughes)
* textproc/libxmlb: update to 0.3.8Tobias C. Berner2022-04-012-4/+4
|
* textproc/libxmlb: update to 0.3.7Tobias C. Berner2022-03-042-4/+4
|
* textproc/libxmlb: New port - Library to help create and query binary XML blobsTobias C. Berner2022-03-044-0/+95
XML is slow to parse and strings inside the document cannot be memory mapped as they do not have a trailing NUL char. The libxmlb library takes XML source, and converts it to a structured binary representation with a deduplicated string table -- where the strings have the NULs included. This allows an application to mmap the binary XML file, do an XPath query and return some strings without actually parsing the entire document. This is all done using (almost) zero allocations and no actual copying of the binary data. WWW: https://github.com/hughsie/libxmlb PR: 258541