This commit is contained in:
ed 2023-05-19 21:04:22 +02:00
parent f76e1fcc2b
commit feed773cbc
3 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,5 @@
VERSION = (1, 4, 0)
BUILD_DT = (2022, 10, 12)
VERSION = (1, 4, 1)
BUILD_DT = (2023, 5, 19)
S_VERSION = u".".join(map(str, VERSION))
S_BUILD_DT = u"{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)

View File

@ -35,9 +35,11 @@ resources=(
gtar=$(command -v gtar || command -v gnutar) || true
[ ! -z "$gtar" ] && command -v gfind >/dev/null && {
tar() { $gtar "$@"; }
tr() { gtr "$@"; }
sed() { gsed "$@"; }
find() { gfind "$@"; }
sort() { gsort "$@"; }
shuf() { gshuf "$@"; }
command -v grealpath >/dev/null &&
realpath() { grealpath "$@"; }
@ -143,7 +145,7 @@ unc="$HOME/dev/copyparty/scripts/uncomment.py"
find | grep -E '\.py$' |
grep -vE '__version__' |
tr '\n' '\0' |
xargs -0 python3 $unc
xargs -0 python3 $unc 1
echo
echo creating tar

View File

@ -137,6 +137,7 @@ args = {
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: IronPython",
"Programming Language :: Python :: Implementation :: Jython",
@ -144,6 +145,7 @@ args = {
"Environment :: Console",
"Environment :: No Input/Output (Daemon)",
"Topic :: Communications :: Chat",
"Topic :: Terminals :: Telnet",
],
"cmdclass": {"clean2": clean2},
}