Port details on branch 2024Q3 |
- rapidfuzz-cpp Rapid fuzzy string matching in C++ using the levenshtein distance
- 3.0.5_1 devel =0 3.0.5_1Version of this port present on the latest quarterly branch.
- Maintainer: yuri@FreeBSD.org
- Port Added: 2024-09-02 07:54:07
- Last Update: 2024-09-02 07:50:55
- Commit Hash: ea00294
- License: MIT
- WWW:
- https://github.com/maxbachmann/rapidfuzz-cpp
- Description:
- RapidFuzz is a fast string matching library for Python and C++, which is using
the string similarity calculations from FuzzyWuzzy.
- ¦ ¦ ¦ ¦
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - Dependency lines:
-
- rapidfuzz-cpp>0:devel/rapidfuzz-cpp
- To install the port:
- cd /usr/ports/devel/rapidfuzz-cpp/ && make install clean
- To add the package, run one of these commands:
- pkg install devel/rapidfuzz-cpp
- pkg install rapidfuzz-cpp
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.- PKGNAME: rapidfuzz-cpp
- Flavors: there is no flavor information for this port.
- distinfo:
- TIMESTAMP = 1720022934
SHA256 (maxbachmann-rapidfuzz-cpp-v3.0.5_GH0.tar.gz) = e32936cc66333a12f659553b5fdd6d0c22257d32ac3b7a806ac9031db8dea5a1
SIZE (maxbachmann-rapidfuzz-cpp-v3.0.5_GH0.tar.gz) = 309782
No package information for this port in our database- Sometimes this happens. Not all ports have packages. Perhaps there is a build error. Check the fallout link:
- 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
- Test dependencies:
-
- catch2>0 : devel/catch2
- This port is required by:
- for Build
-
- devel/py-rapidfuzz
Configuration Options:
- No options to configure
- Options name:
- devel_rapidfuzz-cpp
- USES:
- cmake:testing compiler:c++17-lang
- FreshPorts was unable to extract/find any pkg message
- Master Sites:
|
Number of commits found: 1
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
3.0.5_1 02 Sep 2024 07:50:55 |
Dimitry Andric (dim) |
devel/rapidfuzz-cpp: fix tests with libc++ 19
As noted in the libc++ 19 release notes [1], std::char_traits<> is now
only provided for char, char8_t, char16_t, char32_t and wchar_t, and any
instantiation for other types will fail.
This causes ports using devel/rapidfuzz-cpp to fail to compile with
clang 19 and libc++ 19, resulting in errors similar to:
/usr/include/c++/v1/string:820:42: error: implicit instantiation of
undefined template 'std::char_traits<unsigned int>'
820 | static_assert(is_same<_CharT, typename
traits_type::char_type>::value,
| ^
/wrkdirs/usr/ports/devel/py-rapidfuzz/work-py311/rapidfuzz-3.9.6/src/rapidfuzz/cpp_common.hpp:711:25:
note: in instantiation of template class 'std::basic_string<unsigned int>'
requested here
711 | auto proc_str = rf::opcodes_apply<uint32_t>(ops, s1, s2);
| ^ (Only the first 15 lines of the commit message are shown above ) |
Number of commits found: 1
|