diff mbox series

[7/9] python3-snowballstemmer: upgrade 3.0.1 -> 3.1.0

Message ID 20260531001756.1582306-7-tim.orling@konsulko.com
State New
Headers show
Series [1/9] at-spi2-core: upgrade 2.60.3 -> 2.60.4 | expand

Commit Message

Tim Orling May 31, 2026, 12:17 a.m. UTC
From: Tim Orling <tim.orling@konsulko.com>

git shortlog:

Dmitry Shachnev (5):
      python: Drop Python 2 support, require Python ≥ 3.3
      python: Simplify code after dropping Python 2 support
      python: Add a minimal pyproject.toml file
      Stop excluding classifiers for Armenian and Yiddish
      stemwords.py: Replace deprecated codecs.open() with built-in open()

Henry Schreiner (1):
      Protect empty languages dict

Olly Betts (11):
      python: Fix algorithms() when wrapping PyStemmer
      python: Reduce overhead of forwarding to PyStemmer
      stemwords.py: Make -i and -o optional
      Python: Optimise string test
      Avoid unnecessary cursor update in among helpers
      Python: Change slice_check() to assert conditions
      Python: Remove parentheses from assert
      Update slice end after `delete` and `<-`
      Python: Remove deprecated licence classifier
      stemwords.py: Remove now-unused `import codecs`
      Update for 3.1.0

For full comparison of changes, see [1].

[1] https://github.com/snowballstem/snowball/compare/v3.0.1...v3.1.0

Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
 .../python/python3-snowballstemmer_3.0.1.bb   | 13 -------
 .../python/python3-snowballstemmer_3.1.0.bb   | 35 +++++++++++++++++++
 2 files changed, 35 insertions(+), 13 deletions(-)
 delete mode 100644 meta/recipes-devtools/python/python3-snowballstemmer_3.0.1.bb
 create mode 100644 meta/recipes-devtools/python/python3-snowballstemmer_3.1.0.bb
diff mbox series

Patch

diff --git a/meta/recipes-devtools/python/python3-snowballstemmer_3.0.1.bb b/meta/recipes-devtools/python/python3-snowballstemmer_3.0.1.bb
deleted file mode 100644
index 37cfbce7dc..0000000000
--- a/meta/recipes-devtools/python/python3-snowballstemmer_3.0.1.bb
+++ /dev/null
@@ -1,13 +0,0 @@ 
-SUMMARY = "Snowball compiler and stemming algorithms"
-HOMEPAGE = "https://github.com/snowballstem/snowball"
-
-LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://COPYING;md5=19139aaf3c8c8fa1ca6edd59c072fb9f"
-
-SRC_URI[sha256sum] = "6d5eeeec8e9f84d4d56b847692bacf79bc2c8e90c7f80ca4444ff8b6f2e52895"
-
-PYPI_PACKAGE = "snowballstemmer"
-
-inherit pypi python_setuptools_build_meta
-
-BBCLASSEXTEND = "native nativesdk"
diff --git a/meta/recipes-devtools/python/python3-snowballstemmer_3.1.0.bb b/meta/recipes-devtools/python/python3-snowballstemmer_3.1.0.bb
new file mode 100644
index 0000000000..7eb862753f
--- /dev/null
+++ b/meta/recipes-devtools/python/python3-snowballstemmer_3.1.0.bb
@@ -0,0 +1,35 @@ 
+# FIXME: the LIC_FILES_CHKSUM values have been updated by 'devtool upgrade'.
+# The following is the difference between the old and the new license text.
+# Please update the LICENSE value if needed, and summarize the changes in
+# the commit message via 'License-Update:' tag.
+# (example: 'License-Update: copyright years updated.')
+#
+# The changes:
+#
+# --- COPYING
+# +++ COPYING
+# @@ -1,7 +1,7 @@
+#  Copyright (c) 2001, Dr Martin Porter
+#  Copyright (c) 2004,2005, Richard Boulton
+#  Copyright (c) 2013, Yoshiki Shibukawa
+# -Copyright (c) 2006,2007,2009,2010,2011,2014-2019, Olly Betts
+# +Copyright (c) 2006-2025, Olly Betts
+#  All rights reserved.
+#  
+#  Redistribution and use in source and binary forms, with or without
+# 
+#
+
+SUMMARY = "Snowball compiler and stemming algorithms"
+HOMEPAGE = "https://github.com/snowballstem/snowball"
+
+LICENSE = "BSD-3-Clause"
+LIC_FILES_CHKSUM = "file://COPYING;md5=07c3b61d971c3df6e19ce439cfe1fb8c"
+
+SRC_URI[sha256sum] = "fd9e34526b23340cd23ffea6c9f9760974ecc2c2ac9e1d81401443ccdb2a801f"
+
+PYPI_PACKAGE = "snowballstemmer"
+
+inherit pypi python_setuptools_build_meta
+
+BBCLASSEXTEND = "native nativesdk"