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
etersoft
eepm
Commits
33bdb697
Commit
33bdb697
authored
May 01, 2024
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commit packed 3.62.8
parent
66fee550
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
44 additions
and
10 deletions
+44
-10
epm.sh
packed/epm.sh
+27
-9
serv.sh
packed/serv.sh
+17
-1
No files found.
packed/epm.sh
View file @
33bdb697
...
...
@@ -34,7 +34,7 @@ SHAREDIR=$PROGDIR
# will replaced with /etc/eepm during install
CONFIGDIR
=
$PROGDIR
/../etc
export
EPMVERSION
=
"3.62.
7
"
export
EPMVERSION
=
"3.62.
8
"
# package, single (file), pipe, git
EPMMODE
=
"package"
...
...
@@ -362,6 +362,10 @@ echog()
fi
}
message
()
{
echog
"
$*
"
}
fatal
()
{
...
...
@@ -375,6 +379,18 @@ fatal()
exit
1
}
fixme
()
{
local
PROMOMESSAGE
=
"
$EPMPROMOMESSAGE
"
[
-n
"
$PROMOMESSAGE
"
]
||
PROMOMESSAGE
=
" (you can discuss the epm
$EPMVERSION
problem in Telegram: https://t.me/useepm)"
set_color
$RED
>
&2
echo
-n
"ERROR: "
>
&2
restore_color
>
&2
echo
"
$*
$PROMOMESSAGE
"
>
&2
exit
1
}
debug
()
{
[
-n
"
$debug
"
]
||
return
...
...
@@ -1858,7 +1874,7 @@ __epm_autoremove_altrpm_pp()
if
[
-n
"
$flag
"
]
;
then
info
""
info
info
"call again for next cycle until all modules will be removed"
__epm_autoremove_altrpm_pp
"
$libexclude
"
fi
...
...
@@ -1929,7 +1945,7 @@ __epm_autoremove_altrpm_lib()
fi
if
[
-n
"
$flag
"
]
;
then
info
""
info
info
"call again for next cycle until all libs will be removed"
__epm_autoremove_altrpm_lib
$opt
fi
...
...
@@ -3353,7 +3369,7 @@ __epm_korinf_install_eepm()
warning
"Using external (Korinf) repo is forbidden for stable ALT branch
$DISTRVERSION
."
info
"Check https://bugzilla.altlinux.org/44314 for reasons."
info
"You can install eepm package from Korinf manually, check instruction at https://eepm.ru"
info
""
info
info
"Trying update eepm from the stable ALT repository ..."
docmd epm
install
eepm
return
...
...
@@ -3647,8 +3663,8 @@ epm_full_upgrade()
"--no-epm-play"
)
# HELPCMD: skip epm play during full upgrade
full_upgrade_no_epm_play
=
1
;;
"--no-flatpa
ck"
)
# HELPCMD: skip flatpac
k update during full upgrade
full_upgrade_no_flatpa
c
k
=
1
"--no-flatpa
k"
)
# HELPCMD: skip flatpa
k update during full upgrade
full_upgrade_no_flatpak
=
1
;;
"--no-snap"
)
# HELPCMD: skip snap update during full upgrade
full_upgrade_no_snap
=
1
...
...
@@ -7331,14 +7347,14 @@ case $PMTYPE in
if
is_installed
$pkg_names
;
then
CMD
=
"rpm -q --provides"
else
f
atal
"FIXME: use hi level commands or download firstly"
f
ixme
"FIXME: use hi level commands or download firstly"
fi
;;
yum-rpm
)
if
is_installed
$pkg_names
;
then
CMD
=
"rpm -q --provides"
else
f
atal
"FIXME: use hi level commands or download firstly"
f
ixme
"FIXME: use hi level commands or download firstly"
fi
;;
dnf-rpm
)
...
...
@@ -9773,7 +9789,7 @@ __epm_repack_to_rpm()
tmpbuilddir
=
$HOME
/
$(
basename
$pkg
)
.tmpdir
mkdir
$tmpbuilddir
abspkg
=
"
$(
realpath
$pkg
)
"
info
""
info
info
"Repacking
$abspkg
to local rpm format (inside
$tmpbuilddir
) ..."
alpkg
=
$(
basename
$pkg
)
...
...
@@ -13386,8 +13402,10 @@ epm_upgrade()
return
fi
if
[
-z
"
$*
"
]
;
then
__check_upgrade_conditions
||
fatal
"upgrade conditions is not satisfied."
fi
fi
# Solus supports upgrade for a package (with all dependencies)
if
[
-n
"
$1
"
]
&&
[
"
$DISTRNAME
"
=
"Solus"
]
;
then
...
...
packed/serv.sh
View file @
33bdb697
...
...
@@ -34,7 +34,7 @@ SHAREDIR=$PROGDIR
# will replaced with /etc/eepm during install
CONFIGDIR
=
$PROGDIR
/../etc
EPMVERSION
=
"3.62.
7
"
EPMVERSION
=
"3.62.
8
"
# package, single (file), pipe, git
EPMMODE
=
"package"
...
...
@@ -363,6 +363,10 @@ echog()
fi
}
message
()
{
echog
"
$*
"
}
fatal
()
{
...
...
@@ -376,6 +380,18 @@ fatal()
exit
1
}
fixme
()
{
local
PROMOMESSAGE
=
"
$EPMPROMOMESSAGE
"
[
-n
"
$PROMOMESSAGE
"
]
||
PROMOMESSAGE
=
" (you can discuss the epm
$EPMVERSION
problem in Telegram: https://t.me/useepm)"
set_color
$RED
>
&2
echo
-n
"ERROR: "
>
&2
restore_color
>
&2
echo
"
$*
$PROMOMESSAGE
"
>
&2
exit
1
}
debug
()
{
[
-n
"
$debug
"
]
||
return
...
...
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