python-userpath: bump to 1.9.2
authorAlexandru Ardelean <redacted>
Fri, 13 Mar 2026 20:46:54 +0000 (22:46 +0200)
committerAlexandru Ardelean <redacted>
Wed, 18 Mar 2026 10:03:04 +0000 (12:03 +0200)
Full release notes:
https://github.com/ofek/userpath/releases/tag/v1.9.2

Add a bit more testing.

Signed-off-by: Alexandru Ardelean <redacted>
lang/python/python-userpath/Makefile
lang/python/python-userpath/test.sh

index d703e717f0baafe6de189eba16da9770cba0cff0..6502d3a5d7349e0e059645be41811b6bcfd50c26 100644 (file)
@@ -8,11 +8,11 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=python-userpath
-PKG_VERSION:=1.9.1
+PKG_VERSION:=1.9.2
 PKG_RELEASE:=1
 
 PYPI_NAME:=userpath
-PKG_HASH:=ce8176728d98c914b6401781bf3b23fccd968d1647539c8788c7010375e02796
+PKG_HASH:=6c52288dab069257cc831846d15d48133522455d4677ee69a9781f11dbefd815
 
 PKG_LICENSE:=MIT
 PKG_LICENSE_FILES:=LICENSE.txt
index e87d325ba4514e8d81ce5a2a9f7486b1813d5374..a751b7f20eae43cb227123c7bec9abe70f19bec3 100644 (file)
@@ -2,4 +2,13 @@
 
 [ "$1" = python3-userpath ] || exit 0
 
+# Test version
 userpath --version | grep -Fx "userpath, version $PKG_VERSION"
+
+# Test append and prepend (changes take effect after shell restart,
+# so only check that the commands succeed)
+TEST_DIR="/tmp/userpath-test-$$"
+userpath append "$TEST_DIR"
+
+TEST_DIR2="/tmp/userpath-test2-$$"
+userpath prepend "$TEST_DIR2"
git clone https://git.99rst.org/PROJECT