Port details |
- simdutf Unicode validation and transcoding with SIMD
- 5.7.0 converters =2 5.5.0Version of this port present on the latest quarterly branch.
- Maintainer: fuz@FreeBSD.org
- Port Added: 2023-10-23 01:54:11
- Last Update: 2024-12-19 14:38:41
- Commit Hash: 18d7fb6
- People watching this port, also watch:: jdictionary, py311-Automat, py311-python-gdsii, py39-PyOpenGL, p5-Sane
- Also Listed In: textproc
- License: APACHE20 MIT
- WWW:
- https://simdutf.github.io/simdutf/
- Description:
- This library provide fast Unicode functions such as
- ASCII, UTF-8, UTF-16LE/BE and UTF-32 validation, with and without
error identification,
- transcoding between each of Latin1, UTF-8, UTF-16LE/BE, and UTF-32,
with and without validation, with and without error identification
- From an UTF-8 string, compute the size of the Latin1/UTF-16/UTF-32
equivalent string,
- From an UTF-16LE/BE string, compute the size of the
Latin1/UTF-8/UTF-32 equivalent string,
- From an UTF-32 string, compute the size of the UTF-8 or UTF-16LE
equivalent string,
- UTF-8 and UTF-16LE/BE character counting.
- UTF-16 endianness change (UTF16-LE/BE to UTF-16-BE/LE)
- Base64 encoding and decoding
The functions are accelerated using SIMD instructions (e.g., ARM NEON,
SSE, AVX, AVX-512, etc.). When your strings contain hundreds of
characters, we can often transcode them at speeds exceeding a billion
characters per second. You should expect high speeds not only with
English strings (ASCII) but also Chinese, Japanese, Arabic, and so
forth. We handle the full character range (including, for example,
emojis).
The library compiles down to a small library of a few hundred kilobytes.
Our functions are exception-free and non allocating. We have extensive
tests and extensive benchmarks.
- ¦ ¦ ¦ ¦
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - Dependency lines:
-
- simdutf>0:converters/simdutf
- To install the port:
- cd /usr/ports/converters/simdutf/ && make install clean
- To add the package, run one of these commands:
- pkg install converters/simdutf
- pkg install simdutf
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.- PKGNAME: simdutf
- Flavors: there is no flavor information for this port.
- distinfo:
- TIMESTAMP = 1734488103
SHA256 (simdutf-simdutf-v5.7.0_GH0.tar.gz) = be104895a72c1e2326037310c76a6f0f494ce784834fb4ea8c92ac5b1a91c48a
SIZE (simdutf-simdutf-v5.7.0_GH0.tar.gz) = 2078049
Packages (timestamps in pop-ups are UTC):
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- cmake : devel/cmake-core
- ninja : devel/ninja
- python3.11 : lang/python311
- Test dependencies:
-
- python3.11 : lang/python311
- There are no ports dependent upon this port
Configuration Options:
- ===> The following configuration options are available for simdutf-5.7.0:
ICONV=on: Encoding conversion support via iconv
TOOLS=on: Build tools
===> Use 'make config' to modify these settings
- Options name:
- converters_simdutf
- USES:
- cmake:testing compiler:c++17-lang pathfix python:build,test iconv
- FreshPorts was unable to extract/find any pkg message
- Master Sites:
|
Number of commits found: 20
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
5.7.0 19 Dec 2024 14:38:41 |
Robert Clausecker (fuz) |
converters/simdutf: update to 5.7.0
Changelog: https://github.com/simdutf/simdutf/releases/tag/v5.7.0 |
5.6.4 17 Dec 2024 00:31:49 |
Robert Clausecker (fuz) |
converters/simdutf: update to 5.6.4
Changelog: https://github.com/simdutf/simdutf/releases/tag/v5.6.4 |
5.6.3 25 Nov 2024 10:22:10 |
Robert Clausecker (fuz) |
converters/simdutf: update to 5.6.3
Changelog: https://github.com/simdutf/simdutf/releases/tag/v5.6.3 |
5.6.2 18 Nov 2024 00:57:52 |
Robert Clausecker (fuz) |
converters/simdutf: update to 5.6.2
- update pkg-descr to current package contents
Changelog: https://github.com/simdutf/simdutf/releases/tag/v5.6.2 |
5.6.1 14 Nov 2024 08:43:27 |
Robert Clausecker (fuz) |
converters/simdutf: update to 5.6.1
Changelog: https://github.com/simdutf/simdutf/releases/tag/v5.6.1 |
5.6.0 21 Oct 2024 09:35:59 |
Robert Clausecker (fuz) |
converters/simdutf: update to 5.6.0
Changelog: https://github.com/simdutf/simdutf/releases/tag/v5.6.0 |
5.5.0 16 Sep 2024 20:14:17 |
Robert Clausecker (fuz) |
converters/simdutf: update to 5.5.0
Changelog: https://github.com/simdutf/simdutf/releases/tag/v5.5.0
MFH: no (new soversion) |
5.4.15 25 Aug 2024 08:17:31 |
Daniel Engberg (diizzy) |
converters/simdutf: Update to 5.4.15
Changelog: https://github.com/simdutf/simdutf/compare/v5.3.7...v5.4.15
PR: 281029
Reviewed by: fuz (maintainer) |
5.3.7 24 Aug 2024 10:45:59 |
Daniel Engberg (diizzy) |
converters/simdutf: Update to 5.3.7
* Add USES= pathfix to fix install path of .pc files
* Add USES= python:build,test as python is executed during build
and test build
* Remove BENCHMARKS as it depends on external library/header from
base64 (https://github.com/aklomp/base64 ) that isn't ported
* Define USES= compiler:c++17-lang
* Integrate TEST option into ports framework
* Some minor layout changes for better readability
Changelog: https://github.com/simdutf/simdutf/compare/v5.2.8...v5.3.7
PR: 280821
Reviewed by: fuz (maintainer) |
5.2.8 13 May 2024 21:19:49 |
Robert Clausecker (fuz) |
converters/simdutf: update to 5.2.8
A bug fix release.
Changelog: https://github.com/simdutf/simdutf/releases/tag/v5.2.8
MFH: 2024Q2 |
5.2.6 06 May 2024 19:07:00 |
Robert Clausecker (fuz) |
converters/simdutf: update to 5.2.6
Changelog: https://github.com/simdutf/simdutf/releases/tag/v5.2.4
Changelog: https://github.com/simdutf/simdutf/releases/tag/v5.2.5
Changelog: https://github.com/simdutf/simdutf/releases/tag/v5.2.6
MFH: 2024Q2 |
5.2.3 12 Apr 2024 08:36:55 |
Robert Clausecker (fuz) |
converters/simdutf: update to 5.2.3
Changelog: https://github.com/simdutf/simdutf/releases/tag/v5.2.2
Changelog: https://github.com/simdutf/simdutf/releases/tag/v5.2.3 |
5.0.0 28 Mar 2024 09:50:02 |
Robert Clausecker (fuz) |
converters/simdutf: update to 5.0.0
Changelog: https://github.com/simdutf/simdutf/releases/tag/v5.0.0 |
4.0.9 10 Feb 2024 13:41:51 |
Robert Clausecker (fuz) |
converters/simdutf: update to 4.0.9
Changelog: https://github.com/simdutf/simdutf/releases/tag/v4.0.9 |
4.0.8 03 Dec 2023 10:18:35 |
Robert Clausecker (fuz) |
converters/simdutf: update to 4.0.8
Changelog: https://github.com/simdutf/simdutf/releases/tag/v4.0.6
Changelog: https://github.com/simdutf/simdutf/releases/tag/v4.0.7
Changelog: https://github.com/simdutf/simdutf/releases/tag/v4.0.8 |
4.0.5 24 Nov 2023 06:12:41 |
Robert Clausecker (fuz) |
converters/simdutf: update to 4.0.5
Changelog: https://github.com/simdutf/simdutf/releases/tag/v4.0.5 |
4.0.4 18 Nov 2023 20:20:40 |
Robert Clausecker (fuz) |
converters/simdutf: update to 4.0.4
Changelog: https://github.com/simdutf/simdutf/releases/tag/v4.0.4 |
4.0.3_1 17 Nov 2023 11:46:00 |
Jan Beich (jbeich) |
devel/icu: update to 74.1
Changes: https://github.com/unicode-org/icu/releases/tag/release-74-1
Reported by: GitHub (watch releases)
PR: 274317
Exp-run by: antoine (incomplete)
Approved by: fluffy |
4.0.3 27 Oct 2023 06:32:10 |
Robert Clausecker (fuz) |
converters/simdutf: update to 4.0.3
Changelog: https://github.com/simdutf/simdutf/releases/tag/v4.0.1
Changelog: https://github.com/simdutf/simdutf/releases/tag/v4.0.2
Changelog: https://github.com/simdutf/simdutf/releases/tag/v4.0.3 |
4.0.0 23 Oct 2023 01:51:27 |
Robert Clausecker (fuz) |
converters/simdutf: Unicode validation and transcoding with SIMD
This library provide fast Unicode functions such as
- ASCII, UTF-8, UTF-16LE/BE and UTF-32 validation, with and without
error identification,
- transcoding between each of Latin1, UTF-8, UTF-16LE/BE, and UTF-32,
with and without validation, with and without error identification
- From an UTF-8 string, compute the size of the Latin1/UTF-16/UTF-32
equivalent string,
- From an UTF-16LE/BE string, compute the size of the
Latin1/UTF-8/UTF-32 equivalent string,
- From an UTF-32 string, compute the size of the UTF-8 or UTF-16LE
equivalent string,
- UTF-8 and UTF-16LE/BE character counting. (Only the first 15 lines of the commit message are shown above ) |
Number of commits found: 20
|