pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/textproc/py-Levenshtein



Module Name:    pkgsrc
Committed By:   adam
Date:           Fri Feb 16 19:16:32 UTC 2024

Modified Files:
        pkgsrc/textproc/py-Levenshtein: Makefile distinfo
        pkgsrc/textproc/py-Levenshtein/patches:
            patch-src_Levenshtein_CMakeLists.txt

Log Message:
py-Levenshtein: updated to 0.25.0

v0.25.0
Changed
- improve type hints


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 pkgsrc/textproc/py-Levenshtein/Makefile
cvs rdiff -u -r1.11 -r1.12 pkgsrc/textproc/py-Levenshtein/distinfo
cvs rdiff -u -r1.1 -r1.2 \
    pkgsrc/textproc/py-Levenshtein/patches/patch-src_Levenshtein_CMakeLists.txt

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/textproc/py-Levenshtein/Makefile
diff -u pkgsrc/textproc/py-Levenshtein/Makefile:1.15 pkgsrc/textproc/py-Levenshtein/Makefile:1.16
--- pkgsrc/textproc/py-Levenshtein/Makefile:1.15        Sun Feb  4 18:47:53 2024
+++ pkgsrc/textproc/py-Levenshtein/Makefile     Fri Feb 16 19:16:32 2024
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.15 2024/02/04 18:47:53 adam Exp $
+# $NetBSD: Makefile,v 1.16 2024/02/16 19:16:32 adam Exp $
 
-DISTNAME=      Levenshtein-0.24.0
+DISTNAME=      Levenshtein-0.25.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    textproc python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=L/Levenshtein/}

Index: pkgsrc/textproc/py-Levenshtein/distinfo
diff -u pkgsrc/textproc/py-Levenshtein/distinfo:1.11 pkgsrc/textproc/py-Levenshtein/distinfo:1.12
--- pkgsrc/textproc/py-Levenshtein/distinfo:1.11        Sun Feb  4 18:47:53 2024
+++ pkgsrc/textproc/py-Levenshtein/distinfo     Fri Feb 16 19:16:32 2024
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.11 2024/02/04 18:47:53 adam Exp $
+$NetBSD: distinfo,v 1.12 2024/02/16 19:16:32 adam Exp $
 
-BLAKE2s (Levenshtein-0.24.0.tar.gz) = 06a43383eb66dc9dd3f15bdbcdd7552aa2860eb122a5c383c576bb752c8b622f
-SHA512 (Levenshtein-0.24.0.tar.gz) = fa3285f2fd31b8c92043b296cfa8e4863d67b879083880797e1f32a75f64e65958c9019da1fe3e6bd3ded72570292dfccfd4e6addadbc1b7019afce300c6224b
-Size (Levenshtein-0.24.0.tar.gz) = 149035 bytes
+BLAKE2s (Levenshtein-0.25.0.tar.gz) = fe9542215963046a0934133432b09733e69686004e4af96107aad8d91671b8ee
+SHA512 (Levenshtein-0.25.0.tar.gz) = 74c3a33eb7b3df1946f9584d0d1b82d828cba0bc47dc569689a603c58768bfffc7c7c78bfcbfe94e63b4b09512ab4f57d036f444b2aa713059f36024042ae0a9
+Size (Levenshtein-0.25.0.tar.gz) = 150003 bytes
 SHA1 (patch-CMakeLists.txt) = 5e94c7bc9ca41189f8e36fd8ba5f0ff81df175a1
-SHA1 (patch-src_Levenshtein_CMakeLists.txt) = a7724036854fe1495c734094a7cb7993574661cf
+SHA1 (patch-src_Levenshtein_CMakeLists.txt) = 67f56cfa38593351b337b59a058d496890646da8

Index: pkgsrc/textproc/py-Levenshtein/patches/patch-src_Levenshtein_CMakeLists.txt
diff -u pkgsrc/textproc/py-Levenshtein/patches/patch-src_Levenshtein_CMakeLists.txt:1.1 pkgsrc/textproc/py-Levenshtein/patches/patch-src_Levenshtein_CMakeLists.txt:1.2
--- pkgsrc/textproc/py-Levenshtein/patches/patch-src_Levenshtein_CMakeLists.txt:1.1     Fri May  5 19:32:18 2023
+++ pkgsrc/textproc/py-Levenshtein/patches/patch-src_Levenshtein_CMakeLists.txt Fri Feb 16 19:16:32 2024
@@ -1,15 +1,15 @@
-$NetBSD: patch-src_Levenshtein_CMakeLists.txt,v 1.1 2023/05/05 19:32:18 adam Exp $
+$NetBSD: patch-src_Levenshtein_CMakeLists.txt,v 1.2 2024/02/16 19:16:32 adam Exp $
 
 Avoid SOABI in module name, so PLIST is constant across platforms.
 
---- src/Levenshtein/CMakeLists.txt.orig        2023-05-05 18:49:51.000000000 +0000
+--- src/Levenshtein/CMakeLists.txt.orig        2024-02-11 16:43:48.000000000 +0000
 +++ src/Levenshtein/CMakeLists.txt
-@@ -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})
+@@ -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)
  



Home | Main Index | Thread Index | Old Index