python-click: bump to 8.3.1
authorAlexandru Ardelean <redacted>
Thu, 19 Mar 2026 15:34:56 +0000 (15:34 +0000)
committerAlexandru Ardelean <redacted>
Fri, 20 Mar 2026 13:26:09 +0000 (15:26 +0200)
Changelog since 8.1.7:
- v8.1.8: Fix type hints for open_file(); fix multiline error messages
  for invalid Path; restore empty string defaults in help text
- v8.2.0: Drop Python 3.7-3.9 support; switch to pyproject.toml/flit_core;
  redesign shell completion system (Bash 4.4+, Zsh, Fish);
  add ProgressBar(hidden) parameter
- v8.2.1: Fix flag value handling for flag options with explicit types;
  fix shell completion for nested groups
- v8.2.2: Fix default/flag_value/type parameter reconciliation; fix Zsh
  completion for items containing colons
- v8.3.0: Rework flag_value and default parameters; enable default on
  Argument with nargs=-1; enhance Fish shell autocompletion
- v8.3.1: Fix pager argument handling; fix prompt rendering with empty
  prompt_suffix; fix parameter conversion timing issues

Add test.sh.

Full changelog:
https://github.com/pallets/click/releases

Signed-off-by: Alexandru Ardelean <redacted>
lang/python/python-click/Makefile
lang/python/python-click/test.sh [new file with mode: 0644]

index f151ff7a77a7eaa73d9a11da695cd93ddd409147..b51b768c72315ef5a6a87a0b0a11cd2c2a8a0c79 100644 (file)
@@ -5,11 +5,11 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=python-click
-PKG_VERSION:=8.1.7
-PKG_RELEASE:=2
+PKG_VERSION:=8.3.1
+PKG_RELEASE:=1
 
 PYPI_NAME:=click
-PKG_HASH:=ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de
+PKG_HASH:=12ff4785d337a1bb490bb7e9c2b1ee5da3112e94a8622f26a6c77f5d2fc6842a
 
 PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
 PKG_LICENSE:=BSD-3-Clause
diff --git a/lang/python/python-click/test.sh b/lang/python/python-click/test.sh
new file mode 100644 (file)
index 0000000..18297f1
--- /dev/null
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+[ "$1" = python3-click ] || exit 0
+
+python3 -c 'import click'
git clone https://git.99rst.org/PROJECT