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
Vladislav
eepm
Commits
a3e181c4
Commit
a3e181c4
authored
Sep 22, 2023
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commit packed 3.60.2
parent
ab0241ad
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
19 deletions
+10
-19
epm.sh
packed/epm.sh
+8
-17
serv.sh
packed/serv.sh
+2
-2
No files found.
packed/epm.sh
View file @
a3e181c4
...
@@ -33,7 +33,7 @@ SHAREDIR=$PROGDIR
...
@@ -33,7 +33,7 @@ SHAREDIR=$PROGDIR
# will replaced with /etc/eepm during install
# will replaced with /etc/eepm during install
CONFIGDIR
=
$PROGDIR
/../etc
CONFIGDIR
=
$PROGDIR
/../etc
EPMVERSION
=
"3.60.
1
"
EPMVERSION
=
"3.60.
2
"
# package, single (file), pipe, git
# package, single (file), pipe, git
EPMMODE
=
"package"
EPMMODE
=
"package"
...
@@ -824,7 +824,7 @@ set_bigtmpdir()
...
@@ -824,7 +824,7 @@ set_bigtmpdir()
# https://bugzilla.mozilla.org/show_bug.cgi?id=69938
# https://bugzilla.mozilla.org/show_bug.cgi?id=69938
# https://refspecs.linuxfoundation.org/FHS_3.0/fhs/ch05s15.html
# https://refspecs.linuxfoundation.org/FHS_3.0/fhs/ch05s15.html
# https://geekpeach.net/ru/%D0%BA%D0%B0%D0%BA-systemd-tmpfiles-%D0%BE%D1%87%D0%B8%D1%89%D0%B0%D0%B5%D1%82-tmp-%D0%B8%D0%BB%D0%B8-var-tmp-%D0%B7%D0%B0%D0%BC%D0%B5%D0%BD%D0%B0-tmpwatch-%D0%B2-centos-rhel-7
# https://geekpeach.net/ru/%D0%BA%D0%B0%D0%BA-systemd-tmpfiles-%D0%BE%D1%87%D0%B8%D1%89%D0%B0%D0%B5%D1%82-tmp-%D0%B8%D0%BB%D0%B8-var-tmp-%D0%B7%D0%B0%D0%BC%D0%B5%D0%BD%D0%B0-tmpwatch-%D0%B2-centos-rhel-7
[
-
n
"
$BIGTMPDIR
"
]
||
[
-d
"/var/tmp"
]
&&
BIGTMPDIR
=
"/var/tmp"
||
BIGTMPDIR
=
"
$TMPDIR
"
[
-
z
"
$BIGTMPDIR
"
]
&&
[
-d
"/var/tmp"
]
&&
BIGTMPDIR
=
"/var/tmp"
||
BIGTMPDIR
=
"
$TMPDIR
"
export
BIGTMPDIR
export
BIGTMPDIR
}
}
...
@@ -15893,11 +15893,11 @@ create_archive()
...
@@ -15893,11 +15893,11 @@ create_archive()
case
"
$type
"
in
case
"
$type
"
in
tar
)
tar
)
#docmd $HAVE_7Z a -l $arc "$@"
#docmd $HAVE_7Z a -l $arc "$@"
docmd
tar
cvf
$arc
"
$@
"
docmd
tar
cvf
"
$arc
"
"
$@
"
;;
;;
*
)
*
)
# TODO: fix symlinks support
# TODO: fix symlinks support
docmd
$HAVE_7Z
a
-l
$arc
"
$@
"
docmd
$HAVE_7Z
a
-l
"
$arc
"
"
$@
"
#fatal "Not yet supported creating of $type archives"
#fatal "Not yet supported creating of $type archives"
;;
;;
esac
esac
...
@@ -15925,10 +15925,10 @@ extract_archive()
...
@@ -15925,10 +15925,10 @@ extract_archive()
# TODO: check if there is only one file?
# TODO: check if there is only one file?
# use subdir if there is no subdir in archive
# use subdir if there is no subdir in archive
TSUBDIR
=
"
$(
basename
"
$arc
"
.
$(
echo
$type
|
sed
-e
's|^tar\.||'
)
)
"
TSUBDIR
=
"
$(
basename
"
$arc
"
.
$(
echo
$type
|
sed
-e
's|^tar\.||'
)
)
"
docmd
$HAVE_7Z
x
-so
$arc
| docmd
$HAVE_7Z
x
-si
-ttar
docmd
$HAVE_7Z
x
-so
"
$arc
"
| docmd
$HAVE_7Z
x
-y
-si
-ttar
;;
;;
*
)
*
)
docmd
$HAVE_7Z
x
$arc
"
$@
"
docmd
$HAVE_7Z
x
-y
"
$arc
"
"
$@
"
#fatal "Not yet supported extracting of $type archives"
#fatal "Not yet supported extracting of $type archives"
;;
;;
esac
esac
...
@@ -15962,7 +15962,7 @@ list_archive()
...
@@ -15962,7 +15962,7 @@ list_archive()
local type
=
"
$(
get_archive_type
"
$arc
"
)
"
local type
=
"
$(
get_archive_type
"
$arc
"
)
"
case
"
$type
"
in
case
"
$type
"
in
*
)
*
)
docmd
$HAVE_7Z
l
$arc
"
$@
"
docmd
$HAVE_7Z
l
"
$arc
"
"
$@
"
#fatal "Not yet supported listing of $type archives"
#fatal "Not yet supported listing of $type archives"
;;
;;
esac
esac
...
@@ -15988,7 +15988,7 @@ test_archive()
...
@@ -15988,7 +15988,7 @@ test_archive()
local type
=
"
$(
get_archive_type
"
$arc
"
)
"
local type
=
"
$(
get_archive_type
"
$arc
"
)
"
case
"
$type
"
in
case
"
$type
"
in
*
)
*
)
docmd
$HAVE_7Z
t
$arc
"
$@
"
docmd
$HAVE_7Z
t
"
$arc
"
"
$@
"
#fatal "Not yet supported test of $type archives"
#fatal "Not yet supported test of $type archives"
;;
;;
esac
esac
...
@@ -17013,7 +17013,6 @@ pkg_urls=
...
@@ -17013,7 +17013,6 @@ pkg_urls=
pkg_options
=
pkg_options
=
quoted_args
=
quoted_args
=
direct_args
=
direct_args
=
use_context
=
eget_backend
=
$EGET_BACKEND
eget_backend
=
$EGET_BACKEND
epm_vardir
=
/var/lib/eepm
epm_vardir
=
/var/lib/eepm
...
@@ -17099,11 +17098,9 @@ check_command()
...
@@ -17099,11 +17098,9 @@ check_command()
case
$1
in
case
$1
in
-i
|
install
|
add|i|it
)
# HELPCMD: install package(s) from remote repositories or from local file
-i
|
install
|
add|i|it
)
# HELPCMD: install package(s) from remote repositories or from local file
epm_cmd
=
install
epm_cmd
=
install
use_context
=
1
;;
;;
-e
|
-P
|
rm
|
del|remove|delete|uninstall|erase|purge|e
)
# HELPCMD: remove (delete) package(s) from the database and the system
-e
|
-P
|
rm
|
del|remove|delete|uninstall|erase|purge|e
)
# HELPCMD: remove (delete) package(s) from the database and the system
epm_cmd
=
remove
epm_cmd
=
remove
use_context
=
1
;;
;;
-s
|
search|s|find|sr
)
# HELPCMD: search in remote package repositories
-s
|
search|s|find|sr
)
# HELPCMD: search in remote package repositories
epm_cmd
=
search
epm_cmd
=
search
...
@@ -17119,11 +17116,9 @@ check_command()
...
@@ -17119,11 +17116,9 @@ check_command()
# HELPCMD: PART: Useful commands:
# HELPCMD: PART: Useful commands:
reinstall
)
# HELPCMD: reinstall package(s) from remote repositories or from local file
reinstall
)
# HELPCMD: reinstall package(s) from remote repositories or from local file
epm_cmd
=
reinstall
epm_cmd
=
reinstall
use_context
=
1
;;
;;
Install
)
# HELPCMD: perform update package repo info and install package(s) via install command
Install
)
# HELPCMD: perform update package repo info and install package(s) via install command
epm_cmd
=
Install
epm_cmd
=
Install
use_context
=
1
;;
;;
-q
|
q|query
)
# HELPCMD: check presence of package(s) and print this name (also --short is supported)
-q
|
q|query
)
# HELPCMD: check presence of package(s) and print this name (also --short is supported)
epm_cmd
=
query
epm_cmd
=
query
...
@@ -17271,16 +17266,13 @@ check_command()
...
@@ -17271,16 +17266,13 @@ check_command()
;;
;;
upgrade|up|dist-upgrade
)
# HELPCMD: performs upgrades of package software distributions
upgrade|up|dist-upgrade
)
# HELPCMD: performs upgrades of package software distributions
epm_cmd
=
upgrade
epm_cmd
=
upgrade
use_context
=
1
;;
;;
Upgrade
)
# HELPCMD: force update package base, then run upgrade
Upgrade
)
# HELPCMD: force update package base, then run upgrade
epm_cmd
=
Upgrade
epm_cmd
=
Upgrade
direct_args
=
1
direct_args
=
1
use_context
=
1
;;
;;
downgrade
)
# HELPCMD: downgrade [all] packages to the repo state
downgrade
)
# HELPCMD: downgrade [all] packages to the repo state
epm_cmd
=
downgrade
epm_cmd
=
downgrade
use_context
=
1
;;
;;
download|fetch|fc
)
# HELPCMD: download package(s) file to the current dir
download|fetch|fc
)
# HELPCMD: download package(s) file to the current dir
epm_cmd
=
download
epm_cmd
=
download
...
@@ -17288,7 +17280,6 @@ check_command()
...
@@ -17288,7 +17280,6 @@ check_command()
# TODO: replace with install --simulate
# TODO: replace with install --simulate
simulate
)
# HELPCMD: simulate install with check requires
simulate
)
# HELPCMD: simulate install with check requires
epm_cmd
=
simulate
epm_cmd
=
simulate
use_context
=
1
;;
;;
audit
)
# HELPCMD: audits installed packages against known vulnerabilities
audit
)
# HELPCMD: audits installed packages against known vulnerabilities
epm_cmd
=
audit
epm_cmd
=
audit
...
...
packed/serv.sh
View file @
a3e181c4
...
@@ -33,7 +33,7 @@ SHAREDIR=$PROGDIR
...
@@ -33,7 +33,7 @@ SHAREDIR=$PROGDIR
# will replaced with /etc/eepm during install
# will replaced with /etc/eepm during install
CONFIGDIR
=
$PROGDIR
/../etc
CONFIGDIR
=
$PROGDIR
/../etc
EPMVERSION
=
"3.60.
1
"
EPMVERSION
=
"3.60.
2
"
# package, single (file), pipe, git
# package, single (file), pipe, git
EPMMODE
=
"package"
EPMMODE
=
"package"
...
@@ -825,7 +825,7 @@ set_bigtmpdir()
...
@@ -825,7 +825,7 @@ set_bigtmpdir()
# https://bugzilla.mozilla.org/show_bug.cgi?id=69938
# https://bugzilla.mozilla.org/show_bug.cgi?id=69938
# https://refspecs.linuxfoundation.org/FHS_3.0/fhs/ch05s15.html
# https://refspecs.linuxfoundation.org/FHS_3.0/fhs/ch05s15.html
# https://geekpeach.net/ru/%D0%BA%D0%B0%D0%BA-systemd-tmpfiles-%D0%BE%D1%87%D0%B8%D1%89%D0%B0%D0%B5%D1%82-tmp-%D0%B8%D0%BB%D0%B8-var-tmp-%D0%B7%D0%B0%D0%BC%D0%B5%D0%BD%D0%B0-tmpwatch-%D0%B2-centos-rhel-7
# https://geekpeach.net/ru/%D0%BA%D0%B0%D0%BA-systemd-tmpfiles-%D0%BE%D1%87%D0%B8%D1%89%D0%B0%D0%B5%D1%82-tmp-%D0%B8%D0%BB%D0%B8-var-tmp-%D0%B7%D0%B0%D0%BC%D0%B5%D0%BD%D0%B0-tmpwatch-%D0%B2-centos-rhel-7
[
-
n
"
$BIGTMPDIR
"
]
||
[
-d
"/var/tmp"
]
&&
BIGTMPDIR
=
"/var/tmp"
||
BIGTMPDIR
=
"
$TMPDIR
"
[
-
z
"
$BIGTMPDIR
"
]
&&
[
-d
"/var/tmp"
]
&&
BIGTMPDIR
=
"/var/tmp"
||
BIGTMPDIR
=
"
$TMPDIR
"
export
BIGTMPDIR
export
BIGTMPDIR
}
}
...
...
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