Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
eepm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nurlan
eepm
Commits
fb2e33f9
Commit
fb2e33f9
authored
Mar 28, 2022
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commit packed 3.16.4
parent
101295e4
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
42 additions
and
19 deletions
+42
-19
epm.sh
packed/epm.sh
+41
-18
serv.sh
packed/serv.sh
+1
-1
No files found.
packed/epm.sh
View file @
fb2e33f9
...
@@ -2280,6 +2280,9 @@ epm_download()
...
@@ -2280,6 +2280,9 @@ epm_download()
esac
esac
case
$PMTYPE
in
case
$PMTYPE
in
apt-dpkg
)
docmd apt-get download
$*
;;
dnf-rpm
)
dnf-rpm
)
sudocmd dnf download
$*
sudocmd dnf download
$*
;;
;;
...
@@ -2531,16 +2534,18 @@ epm_filelist()
...
@@ -2531,16 +2534,18 @@ epm_filelist()
# File bin/epm-full_upgrade:
# File bin/epm-full_upgrade:
epm_full_upgrade
()
epm_full_upgrade
()
{
{
epm_
update
||
return
docmd epm
update
||
return
epm_upgrade
||
return
[
-n
"
$quiet
"
]
||
echo
docmd epm upgrade
||
return
epm_kernel_update
||
return
[
-n
"
$quiet
"
]
||
echo
docmd epm update-kernel
||
return
epm play
--update
all
||
return
[
-n
"
$quiet
"
]
||
echo
docmd epm play
--update
all
||
return
}
}
# File bin/epm-info:
# File bin/epm-info:
...
@@ -3667,14 +3672,21 @@ __get_app_description()
...
@@ -3667,14 +3672,21 @@ __get_app_description()
$1
--description
2>/dev/null
$1
--description
2>/dev/null
}
}
__
epm_play_run
()
__
check_play_script
()
{
{
local
script
=
"
$psdir
/
$1
.sh"
local
script
=
"
$psdir
/
$1
.sh"
shift
shift
if
[
!
-x
"
$script
"
]
;
then
[
-x
"
$script
"
]
fatal
"Can't find executable play script
$script
."
}
fi
__epm_play_run
()
{
local
script
=
"
$psdir
/
$1
.sh"
__check_play_script
"
$1
"
||
fatal
"Can't find executable play script
$script
. Run epm play to list all available apps."
shift
# allow use EGET in the scripts
# allow use EGET in the scripts
__set_EGET
__set_EGET
...
@@ -3692,7 +3704,7 @@ __epm_play_run()
...
@@ -3692,7 +3704,7 @@ __epm_play_run()
epm_play
()
epm_play
()
{
{
local
psdir
=
"
$
CONFIGDIR
/play.d
"
local
psdir
=
"
$
(
realpath
$CONFIGDIR
/play.d
)
"
if
[
"
$1
"
=
"-h"
]
||
[
"
$1
"
=
"--help"
]
;
then
if
[
"
$1
"
=
"-h"
]
||
[
"
$1
"
=
"--help"
]
;
then
cat
<<
EOF
cat
<<
EOF
...
@@ -3724,8 +3736,13 @@ if [ "$1" = "--update" ] ; then
...
@@ -3724,8 +3736,13 @@ if [ "$1" = "--update" ] ; then
if
[
"
$1
"
=
"all"
]
;
then
if
[
"
$1
"
=
"all"
]
;
then
shift
shift
for
i
in
$(
__list_installed_app
)
;
do
for
i
in
$(
__list_installed_app
)
;
do
echo
echo
"
$i
"
echo
"
$i
"
prescription
=
"
$i
"
prescription
=
"
$i
"
if
!
__check_play_script
$prescription
;
then
warning
"Can't find executable play script for
$prescription
. Try epm play --remove
$prescription
if you don't need it anymore."
continue
fi
__epm_play_run
$prescription
--run
"
$@
"
__epm_play_run
$prescription
--run
"
$@
"
done
done
exit
exit
...
@@ -3740,8 +3757,13 @@ if [ "$1" = "--update" ] ; then
...
@@ -3740,8 +3757,13 @@ if [ "$1" = "--update" ] ; then
exit
exit
fi
fi
if
[
"
$1
"
=
"--installed"
]
;
then
shift
__check_installed_app
"
$1
"
exit
fi
if
[
"
$1
"
=
"--list"
]
||
[
"
$1
"
=
"--installed"
]
;
then
if
[
"
$1
"
=
"--list"
]
;
then
shift
shift
local
i
local
i
if
[
-n
"
$short
"
]
;
then
if
[
-n
"
$short
"
]
;
then
...
@@ -3783,10 +3805,11 @@ if [ "$1" = "--list-all" ] || [ -z "$*" ] ; then
...
@@ -3783,10 +3805,11 @@ if [ "$1" = "--list-all" ] || [ -z "$*" ] ; then
done
done
echo
echo
echo
"run epm play"
echo
"run epm play"
echo
" --list - to list installed only"
echo
" --list - list installed apps"
echo
" --list-all (default) - to list all app"
echo
" --list-all (default) - list all apps"
echo
" --remove <app> - to remove app"
echo
" --remove <app> - remove <app>"
echo
" --update <app|all> - to update app or all installed apps"
echo
" --update <app>|all - update <app> or all installed apps"
echo
" --installed <app> - check if the app is installed"
echo
" --short (with --list) - list names only"
echo
" --short (with --list) - list names only"
exit
exit
fi
fi
...
@@ -6177,7 +6200,7 @@ EOF
...
@@ -6177,7 +6200,7 @@ EOF
__apply_fix_code
()
__apply_fix_code
()
{
{
local
repackcode
=
"
$
CONFIGDIR
/repack.d/
$1
.sh
"
local
repackcode
=
"
$
(
realpath
$CONFIGDIR
/repack.d/
$1
.sh
)
"
[
-x
"
$repackcode
"
]
||
return
[
-x
"
$repackcode
"
]
||
return
shift
shift
export
PATH
=
$PROGDIR
:
$PATH
export
PATH
=
$PROGDIR
:
$PATH
...
@@ -10350,7 +10373,7 @@ Examples:
...
@@ -10350,7 +10373,7 @@ Examples:
print_version
()
print_version
()
{
{
echo
"EPM package manager version 3.16.
2
https://wiki.etersoft.ru/Epm"
echo
"EPM package manager version 3.16.
4
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."
...
@@ -10360,7 +10383,7 @@ print_version()
...
@@ -10360,7 +10383,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.16.
2
EPMVERSION
=
3.16.
4
verbose
=
$EPM_VERBOSE
verbose
=
$EPM_VERBOSE
quiet
=
quiet
=
nodeps
=
nodeps
=
...
...
packed/serv.sh
View file @
fb2e33f9
...
@@ -2982,7 +2982,7 @@ print_version()
...
@@ -2982,7 +2982,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.16.
2
https://wiki.etersoft.ru/Epm"
echo
"Service manager version 3.16.
4
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."
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment