summaryrefslogtreecommitdiffstats
path: root/development/codespell/codespell.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'development/codespell/codespell.SlackBuild')
-rw-r--r--development/codespell/codespell.SlackBuild4
1 files changed, 3 insertions, 1 deletions
diff --git a/development/codespell/codespell.SlackBuild b/development/codespell/codespell.SlackBuild
index 74ec393dc3..d2d7d8b0b2 100644
--- a/development/codespell/codespell.SlackBuild
+++ b/development/codespell/codespell.SlackBuild
@@ -6,6 +6,7 @@
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
+# 20240822 bkw: update for 2.3.0.
# 20230820 bkw: update for 2.2.5, *many* thanks to fourtysixandtwo for
# his python3-setuptools-opt build, and for figuring out the bug in
# this build's pyproject.toml.
@@ -21,7 +22,7 @@
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=codespell
-VERSION=${VERSION:-2.2.6}
+VERSION=${VERSION:-2.3.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@@ -56,6 +57,7 @@ find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} + -o \
\! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} +
# write_to directive is broken, turns out we can do without it.
+# 20240822 bkw: this is still needed for v2.3.0.
sed -i '/^write_to/d' pyproject.toml
PYVER=$(python3 -c 'import sys; print("%d.%d" % sys.version_info[:2])')