mirror of https://github.com/9001/r0c.git
v1.4.1
This commit is contained in:
parent
f76e1fcc2b
commit
feed773cbc
|
@ -1,5 +1,5 @@
|
||||||
VERSION = (1, 4, 0)
|
VERSION = (1, 4, 1)
|
||||||
BUILD_DT = (2022, 10, 12)
|
BUILD_DT = (2023, 5, 19)
|
||||||
|
|
||||||
S_VERSION = u".".join(map(str, VERSION))
|
S_VERSION = u".".join(map(str, VERSION))
|
||||||
S_BUILD_DT = u"{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)
|
S_BUILD_DT = u"{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)
|
||||||
|
|
|
@ -35,9 +35,11 @@ resources=(
|
||||||
gtar=$(command -v gtar || command -v gnutar) || true
|
gtar=$(command -v gtar || command -v gnutar) || true
|
||||||
[ ! -z "$gtar" ] && command -v gfind >/dev/null && {
|
[ ! -z "$gtar" ] && command -v gfind >/dev/null && {
|
||||||
tar() { $gtar "$@"; }
|
tar() { $gtar "$@"; }
|
||||||
|
tr() { gtr "$@"; }
|
||||||
sed() { gsed "$@"; }
|
sed() { gsed "$@"; }
|
||||||
find() { gfind "$@"; }
|
find() { gfind "$@"; }
|
||||||
sort() { gsort "$@"; }
|
sort() { gsort "$@"; }
|
||||||
|
shuf() { gshuf "$@"; }
|
||||||
command -v grealpath >/dev/null &&
|
command -v grealpath >/dev/null &&
|
||||||
realpath() { grealpath "$@"; }
|
realpath() { grealpath "$@"; }
|
||||||
|
|
||||||
|
@ -143,7 +145,7 @@ unc="$HOME/dev/copyparty/scripts/uncomment.py"
|
||||||
find | grep -E '\.py$' |
|
find | grep -E '\.py$' |
|
||||||
grep -vE '__version__' |
|
grep -vE '__version__' |
|
||||||
tr '\n' '\0' |
|
tr '\n' '\0' |
|
||||||
xargs -0 python3 $unc
|
xargs -0 python3 $unc 1
|
||||||
|
|
||||||
echo
|
echo
|
||||||
echo creating tar
|
echo creating tar
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -137,6 +137,7 @@ args = {
|
||||||
"Programming Language :: Python :: 3.9",
|
"Programming Language :: Python :: 3.9",
|
||||||
"Programming Language :: Python :: 3.10",
|
"Programming Language :: Python :: 3.10",
|
||||||
"Programming Language :: Python :: 3.11",
|
"Programming Language :: Python :: 3.11",
|
||||||
|
"Programming Language :: Python :: 3.12",
|
||||||
"Programming Language :: Python :: Implementation :: CPython",
|
"Programming Language :: Python :: Implementation :: CPython",
|
||||||
"Programming Language :: Python :: Implementation :: IronPython",
|
"Programming Language :: Python :: Implementation :: IronPython",
|
||||||
"Programming Language :: Python :: Implementation :: Jython",
|
"Programming Language :: Python :: Implementation :: Jython",
|
||||||
|
@ -144,6 +145,7 @@ args = {
|
||||||
"Environment :: Console",
|
"Environment :: Console",
|
||||||
"Environment :: No Input/Output (Daemon)",
|
"Environment :: No Input/Output (Daemon)",
|
||||||
"Topic :: Communications :: Chat",
|
"Topic :: Communications :: Chat",
|
||||||
|
"Topic :: Terminals :: Telnet",
|
||||||
],
|
],
|
||||||
"cmdclass": {"clean2": clean2},
|
"cmdclass": {"clean2": clean2},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue