Commit dc89f100 authored by Vitaly Lipatov's avatar Vitaly Lipatov

commit packed 3.18.1

parent 431f01b6
...@@ -43,6 +43,14 @@ load_helper() ...@@ -43,6 +43,14 @@ load_helper()
# File bin/epm-sh-functions: # File bin/epm-sh-functions:
check_core_commands()
{
which --help >/dev/null || fatal "Can't find which command (which package is missed?)"
grep --help >/dev/null || fatal "Can't find grep command (coreutils package is missed?)"
sed --help >/dev/null || fatal "Can't find sed command (sed package is missed?)"
}
inputisatty() inputisatty()
{ {
# check stdin # check stdin
...@@ -70,6 +78,8 @@ check_tty() ...@@ -70,6 +78,8 @@ check_tty()
[ -n "$TERM" ] || TERM=dumb [ -n "$TERM" ] || TERM=dumb
export TERM export TERM
check_core_commands
# egrep from busybox may not --color # egrep from busybox may not --color
# egrep from MacOS print help to stderr # egrep from MacOS print help to stderr
if grep -E --help 2>&1 | grep -q -- "--color" ; then if grep -E --help 2>&1 | grep -q -- "--color" ; then
...@@ -358,9 +368,10 @@ withtimeout() ...@@ -358,9 +368,10 @@ withtimeout()
$TO "$@" $TO "$@"
return return
fi fi
fatal "Possible indefinite wait due timeout command is missed"
# fallback: drop time arg and run without timeout # fallback: drop time arg and run without timeout
shift #shift
"$@" #"$@"
} }
set_eatmydata() set_eatmydata()
...@@ -6352,7 +6363,8 @@ __epm_repack_to_rpm() ...@@ -6352,7 +6363,8 @@ __epm_repack_to_rpm()
SUBGENERIC='appimage' SUBGENERIC='appimage'
./$alpkg --appimage-extract || fatal ./$alpkg --appimage-extract || fatal
alpkg=$PKGNAME-$VERSION.tar alpkg=$PKGNAME-$VERSION.tar
erc a $alpkg squashfs-root assure_exists erc || fatal
a= erc a $alpkg squashfs-root
else else
VERSION="$(echo "$alpkg" | grep -o -P "[-_.]([0-9])([0-9])*(\.[0-9])*" | head -n1 | sed -e 's|^[-_.]||')" #" VERSION="$(echo "$alpkg" | grep -o -P "[-_.]([0-9])([0-9])*(\.[0-9])*" | head -n1 | sed -e 's|^[-_.]||')" #"
if [ -n "$VERSION" ] ; then if [ -n "$VERSION" ] ; then
...@@ -10614,7 +10626,7 @@ Examples: ...@@ -10614,7 +10626,7 @@ Examples:
print_version() print_version()
{ {
echo "EPM package manager version 3.18.0 https://wiki.etersoft.ru/Epm" echo "EPM package manager version 3.18.1 https://wiki.etersoft.ru/Epm"
echo "Running on $($DISTRVENDOR -e) ('$PMTYPE' package manager uses '$PKGFORMAT' package format)" echo "Running on $($DISTRVENDOR -e) ('$PMTYPE' package manager uses '$PKGFORMAT' package format)"
echo "Copyright (c) Etersoft 2012-2021" echo "Copyright (c) Etersoft 2012-2021"
echo "This program may be freely redistributed under the terms of the GNU AGPLv3." echo "This program may be freely redistributed under the terms of the GNU AGPLv3."
...@@ -10624,7 +10636,7 @@ print_version() ...@@ -10624,7 +10636,7 @@ print_version()
Usage="Usage: epm [options] <command> [package name(s), package files]..." Usage="Usage: epm [options] <command> [package name(s), package files]..."
Descr="epm - EPM package manager" Descr="epm - EPM package manager"
EPMVERSION=3.18.0 EPMVERSION=3.18.1
verbose=$EPM_VERBOSE verbose=$EPM_VERBOSE
quiet= quiet=
nodeps= nodeps=
......
...@@ -34,6 +34,14 @@ load_helper() ...@@ -34,6 +34,14 @@ load_helper()
# File bin/epm-sh-functions: # File bin/epm-sh-functions:
check_core_commands()
{
which --help >/dev/null || fatal "Can't find which command (which package is missed?)"
grep --help >/dev/null || fatal "Can't find grep command (coreutils package is missed?)"
sed --help >/dev/null || fatal "Can't find sed command (sed package is missed?)"
}
inputisatty() inputisatty()
{ {
# check stdin # check stdin
...@@ -61,6 +69,8 @@ check_tty() ...@@ -61,6 +69,8 @@ check_tty()
[ -n "$TERM" ] || TERM=dumb [ -n "$TERM" ] || TERM=dumb
export TERM export TERM
check_core_commands
# egrep from busybox may not --color # egrep from busybox may not --color
# egrep from MacOS print help to stderr # egrep from MacOS print help to stderr
if grep -E --help 2>&1 | grep -q -- "--color" ; then if grep -E --help 2>&1 | grep -q -- "--color" ; then
...@@ -349,9 +359,10 @@ withtimeout() ...@@ -349,9 +359,10 @@ withtimeout()
$TO "$@" $TO "$@"
return return
fi fi
fatal "Possible indefinite wait due timeout command is missed"
# fallback: drop time arg and run without timeout # fallback: drop time arg and run without timeout
shift #shift
"$@" #"$@"
} }
set_eatmydata() set_eatmydata()
...@@ -3139,7 +3150,7 @@ print_version() ...@@ -3139,7 +3150,7 @@ print_version()
local on_text="(host system)" local on_text="(host system)"
local virt="$($DISTRVENDOR -i)" local virt="$($DISTRVENDOR -i)"
[ "$virt" = "(unknown)" ] || [ "$virt" = "(host system)" ] || on_text="(under $virt)" [ "$virt" = "(unknown)" ] || [ "$virt" = "(host system)" ] || on_text="(under $virt)"
echo "Service manager version 3.18.0 https://wiki.etersoft.ru/Epm" echo "Service manager version 3.18.1 https://wiki.etersoft.ru/Epm"
echo "Running on $($DISTRVENDOR -e) $on_text with $SERVICETYPE" echo "Running on $($DISTRVENDOR -e) $on_text with $SERVICETYPE"
echo "Copyright (c) Etersoft 2012-2021" echo "Copyright (c) Etersoft 2012-2021"
echo "This program may be freely redistributed under the terms of the GNU AGPLv3." echo "This program may be freely redistributed under the terms of the GNU AGPLv3."
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment