head 1.2; access; symbols pkgsrc-2026Q2:1.2.0.20 pkgsrc-2026Q2-base:1.2 pkgsrc-2026Q1:1.2.0.18 pkgsrc-2026Q1-base:1.2 pkgsrc-2025Q4:1.2.0.16 pkgsrc-2025Q4-base:1.2 pkgsrc-2025Q3:1.2.0.14 pkgsrc-2025Q3-base:1.2 pkgsrc-2025Q2:1.2.0.12 pkgsrc-2025Q2-base:1.2 pkgsrc-2025Q1:1.2.0.10 pkgsrc-2025Q1-base:1.2 pkgsrc-2024Q4:1.2.0.8 pkgsrc-2024Q4-base:1.2 pkgsrc-2024Q3:1.2.0.6 pkgsrc-2024Q3-base:1.2 pkgsrc-2024Q2:1.2.0.4 pkgsrc-2024Q2-base:1.2 pkgsrc-2024Q1:1.2.0.2 pkgsrc-2024Q1-base:1.2 pkgsrc-2023Q4:1.1.0.6 pkgsrc-2023Q4-base:1.1 pkgsrc-2023Q3:1.1.0.4 pkgsrc-2023Q3-base:1.1 pkgsrc-2023Q2:1.1.0.2 pkgsrc-2023Q2-base:1.1; locks; strict; comment @# @; 1.2 date 2024.02.16.19.16.32; author adam; state Exp; branches; next 1.1; commitid CSyteyuARB14XGYE; 1.1 date 2023.05.05.19.32.18; author adam; state Exp; branches; next ; commitid 4roZodGIQw5pgOnE; desc @@ 1.2 log @py-Levenshtein: updated to 0.25.0 v0.25.0 Changed - improve type hints @ text @$NetBSD: patch-src_Levenshtein_CMakeLists.txt,v 1.1 2023/05/05 19:32:18 adam Exp $ Avoid SOABI in module name, so PLIST is constant across platforms. --- src/Levenshtein/CMakeLists.txt.orig 2024-02-11 16:43:48.000000000 +0000 +++ src/Levenshtein/CMakeLists.txt @@@@ -24,7 +24,7 @@@@ function(rf_add_library name) endif() set_property(TARGET ${name} PROPERTY SUFFIX ".${Python_SOABI}${suffix}") else() - python_add_library(${name} MODULE WITH_SOABI ${ARGV}) + python_add_library(${name} MODULE ${ARGV}) endif() endfunction(rf_add_library) @ 1.1 log @py-Levenshtein: updated to 0.21.0 v0.21.0 Changed relax dependency requirement on rapidfuzz v0.20.9 Fixed fix function signature of get_requires_for_build_wheel v0.20.8 Fixed type hints for editops/opcoded/matching_blocks did not allow any hashable sequence v0.20.7 Fixed type hints did not get installed v0.20.6 Fixed fix incorrect result normalization in setratio and seqratio v0.20.5 Fixed fix support for cmake versions below 3.17 fix version requirement for rapidfuzz-cpp when building against a previously installed version v0.20.4 Changed modernize cmake build to fix most conda-forge builds v0.20.3 Changed Added support for Python3.11 v0.20.2 Fixed fix matching_blocks conversion for empty editops Changed added in-tree build backend to install cmake and ninja only when it is not installed yet and only when wheels are available v0.20.1 Fixed fix broken matching_blocks conversion v0.20.0 Changed use matching_blocks/apply/remove_subsequence/inverse implementation from RapidFuzz Fixed stop adding data to wheels fix segmentation fault on some invalid editop sequences in subtract_edit detect duplicated entries in editops validation @ text @d1 1 a1 1 $NetBSD$ d5 1 a5 1 --- src/Levenshtein/CMakeLists.txt.orig 2023-05-05 18:49:51.000000000 +0000 d7 1 a7 6 @@@@ -18,7 +18,7 @@@@ function(rf_add_library name) endif() set_property (TARGET ${name} PROPERTY SUFFIX ".${Python_SOABI}${suffix}") else() - Python_add_library(${name} MODULE WITH_SOABI ${ARGV}) + Python_add_library(${name} MODULE ${ARGV}) d9 5 @