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
325d76ff
Commit
325d76ff
authored
Mar 28, 2024
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commit packed 3.60.13
parent
815ea389
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
58 additions
and
24 deletions
+58
-24
epm.sh
packed/epm.sh
+56
-22
serv.sh
packed/serv.sh
+2
-2
No files found.
packed/epm.sh
View file @
325d76ff
...
@@ -34,7 +34,7 @@ SHAREDIR=$PROGDIR
...
@@ -34,7 +34,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
2
"
EPMVERSION
=
"3.60.1
3
"
# package, single (file), pipe, git
# package, single (file), pipe, git
EPMMODE
=
"package"
EPMMODE
=
"package"
...
@@ -788,7 +788,7 @@ get_package_type()
...
@@ -788,7 +788,7 @@ get_package_type()
return
return
;;
;;
*
)
*
)
if
[
-r
"
$1
"
]
&&
file
"
$1
"
|
grep
-q
" ELF "
;
then
if
[
-r
"
$1
"
]
&&
file
-L
"
$1
"
|
grep
-q
" ELF "
;
then
echo
"ELF"
echo
"ELF"
return
return
fi
fi
...
@@ -1594,8 +1594,10 @@ epm_assure()
...
@@ -1594,8 +1594,10 @@ epm_assure()
#docmd epm --auto install $PACKAGE || return
#docmd epm --auto install $PACKAGE || return
(
repack
=
''
pkg_names
=
"
$PACKAGE
"
pkg_files
=
''
pkg_urls
=
''
epm_install
)
||
return
(
repack
=
''
pkg_names
=
"
$PACKAGE
"
pkg_files
=
''
pkg_urls
=
''
epm_install
)
||
return
# keep auto installed packages
# https://bugzilla.altlinux.org/42240
# https://bugzilla.altlinux.org/42240
epm_mark_auto
"
$PACKAGE
"
#load_helper epm-mark
#epm_mark_auto "$PACKAGE"
# no check if we don't need a version
# no check if we don't need a version
[
-n
"
$PACKAGEVERSION
"
]
||
return
0
[
-n
"
$PACKAGEVERSION
"
]
||
return
0
...
@@ -2020,6 +2022,9 @@ case $BASEDISTRNAME in
...
@@ -2020,6 +2022,9 @@ case $BASEDISTRNAME in
return
return
;;
;;
"astra"
)
[
-n
"
$force
"
]
||
fatal
"It seems AstraLinux does no support autoremove correctly. You can rerun the command with --force option to get into trouble."
;;
*
)
*
)
;;
;;
esac
esac
...
@@ -2309,7 +2314,7 @@ check_pkg_integrity()
...
@@ -2309,7 +2314,7 @@ check_pkg_integrity()
docmd apkg verify
$PKG
docmd apkg verify
$PKG
;;
;;
exe
)
exe
)
file
$PKG
|
grep
-q
"executable for MS Windows"
file
-L
$PKG
|
grep
-q
"executable for MS Windows"
;;
;;
msi
)
msi
)
# TODO: add to patool via cabextract
# TODO: add to patool via cabextract
...
@@ -8896,6 +8901,11 @@ epm_remove()
...
@@ -8896,6 +8901,11 @@ epm_remove()
[
-n
"
$force
"
]
||
return
$STATUS
[
-n
"
$force
"
]
||
return
$STATUS
fi
fi
if
[
-n
"
$noscripts
"
]
;
then
warning
"It is not recommended to remove a few packages with disabled scripts simultaneously."
fatal
"We can't allow packages removing on hi level when --noscripts is used."
fi
# get package name for hi level package management command (with version if supported and if possible)
# get package name for hi level package management command (with version if supported and if possible)
pkg_names
=
$(
__epm_get_hilevel_name
$pkg_names
)
pkg_names
=
$(
__epm_get_hilevel_name
$pkg_names
)
...
@@ -9461,6 +9471,7 @@ __epm_repack_to_rpm()
...
@@ -9461,6 +9471,7 @@ __epm_repack_to_rpm()
# Note: install epm-repack for static (package based) dependencies
# Note: install epm-repack for static (package based) dependencies
assure_exists alien
||
fatal
assure_exists alien
||
fatal
assure_exists fakeroot
# will set RPMBUILD
# will set RPMBUILD
__try_install_eepm_rpmbuild
__try_install_eepm_rpmbuild
...
@@ -9514,11 +9525,15 @@ __epm_repack_to_rpm()
...
@@ -9514,11 +9525,15 @@ __epm_repack_to_rpm()
__prepare_source_package
"
$(
realpath
$alpkg
)
"
__prepare_source_package
"
$(
realpath
$alpkg
)
"
cd
$tmpbuilddir
/
||
fatal
cd
$tmpbuilddir
/
||
fatal
local
fakeroot
fakeroot
=
''
!
is_root
&&
is_command fakeroot
&&
fakeroot
=
'fakeroot'
if
[
-n
"
$verbose
"
]
;
then
if
[
-n
"
$verbose
"
]
;
then
docmd alien
--generate
--to-rpm
$verbose
$scripts
"../
$alpkg
"
||
fatal
docmd
$fakeroot
alien
--generate
--to-rpm
$verbose
$scripts
"../
$alpkg
"
||
fatal
else
else
showcmd alien
--generate
--to-rpm
$scripts
"../
$alpkg
"
showcmd
$fakeroot
alien
--generate
--to-rpm
$scripts
"../
$alpkg
"
a
=
''
alien
--generate
--to-rpm
$scripts
"../
$alpkg
"
>
/dev/null
||
fatal
a
=
''
$fakeroot
alien
--generate
--to-rpm
$scripts
"../
$alpkg
"
>
/dev/null
||
fatal
fi
fi
# remove all empty dirs (hack against broken dpkg with LF in the end of line) (hack for linux_pantum.deb)
# remove all empty dirs (hack against broken dpkg with LF in the end of line) (hack for linux_pantum.deb)
...
@@ -10752,9 +10767,9 @@ __epm_elf_requires()
...
@@ -10752,9 +10767,9 @@ __epm_elf_requires()
fi
fi
for
i
in
$*
;
do
for
i
in
$*
;
do
if
file
"
$i
"
|
grep
-q
" ELF 32-bit "
;
then
if
file
-L
"
$i
"
|
grep
-q
" ELF 32-bit "
;
then
__epm_elf32_requires
"
$i
"
__epm_elf32_requires
"
$i
"
elif
file
"
$i
"
|
grep
-q
" ELF 64-bit "
;
then
elif
file
-L
"
$i
"
|
grep
-q
" ELF 64-bit "
;
then
__epm_elf64_requires
"
$i
"
__epm_elf64_requires
"
$i
"
else
else
warning
"Unknown ELF binary"
warning
"Unknown ELF binary"
...
@@ -14957,16 +14972,15 @@ ipfs_api_local="/ip4/127.0.0.1/tcp/5001"
...
@@ -14957,16 +14972,15 @@ ipfs_api_local="/ip4/127.0.0.1/tcp/5001"
ipfs_api_brave
=
"/ip4/127.0.0.1/tcp/45005"
ipfs_api_brave
=
"/ip4/127.0.0.1/tcp/45005"
ipfs_gateway
=
"https://cloudflare-ipfs.com/ipfs"
# Public IPFS http gateways
[
-n
"
$EGET_IPFS_GATEWAY
"
]
&&
ipfs_gateway
=
"
$EGET_IPFS_GATEWAY
"
ipfs_gateways
=
"https://cloudflare-ipfs.com/ipfs https://dweb.link/ipfs https://dhash.ru/ipfs"
IPFS_GATEWAY
=
"
$ipfs_gateway
"
# Test data: https://etersoft.ru/templates/etersoft/images/logo.png
# Test data: https://etersoft.ru/templates/etersoft/images/logo.png
ipfs_checkQm
=
"QmYwf2GAMvHxfFiUFL2Mr6KUG6QrDiupqGc8ms785ktaYw"
ipfs_checkQm
=
"QmYwf2GAMvHxfFiUFL2Mr6KUG6QrDiupqGc8ms785ktaYw"
get_ipfs_brave
()
get_ipfs_brave
()
{
{
local
ipfs_brave
=
"
$(
ls
~/.config/BraveSoftware/Brave-Browser/
*
/
*
/go-ipfs_
*
|
sort
|
tail
-n1
2>/dev/null
)
"
local
ipfs_brave
=
"
$(
ls
~/.config/BraveSoftware/Brave-Browser/
*
/
*
/go-ipfs_
*
2>/dev/null |
sort
|
tail
-n1
)
"
[
-n
"
$ipfs_brave
"
]
&&
[
-x
"
$ipfs_brave
"
]
||
return
[
-n
"
$ipfs_brave
"
]
&&
[
-x
"
$ipfs_brave
"
]
||
return
echo
"
$ipfs_brave
"
echo
"
$ipfs_brave
"
}
}
...
@@ -14987,6 +15001,23 @@ ipfs_check()
...
@@ -14987,6 +15001,23 @@ ipfs_check()
verdocmd
$IPFS_CMD
--api
$IPFS_API
$ipfs_diag_timeout
cat
"
$1
"
>
/dev/null
verdocmd
$IPFS_CMD
--api
$IPFS_API
$ipfs_diag_timeout
cat
"
$1
"
>
/dev/null
}
}
check_ipfs_gateway
()
{
local
ipfs_gateway
=
"
$1
"
# TODO: check checksum
if
docmd eget
--check-url
"
$ipfs_gateway
/
$ipfs_checkQm
"
;
then
ipfs_mode
=
"gateway"
return
fi
if
docmd eget
--check-site
"
$(
dirname
$ipfs_gateway
)
"
;
then
info
"IPFS gateway
$ipfs_gateway
is accessible, but can't return shared
$ipfs_checkQm
"
else
info
"IPFS gateway
$(
dirname
$ipfs_gateway
)
is not accessible"
fi
return
1
}
select_ipfs_mode
()
select_ipfs_mode
()
...
@@ -15018,20 +15049,23 @@ select_ipfs_mode()
...
@@ -15018,20 +15049,23 @@ select_ipfs_mode()
fi
fi
fi
fi
# TODO: check checksum
IPFS_GATEWAY
=
''
if
docmd eget
--check-url
"
$ipfs_gateway
/
$ipfs_checkQm
"
;
then
ipfs_mode
=
"gateway"
# if set some http gateway, use only it
if
[
-n
"
$EGET_IPFS_GATEWAY
"
]
;
then
check_ipfs_gateway
"
$EGET_IPFS_GATEWAY
"
&&
IPFS_GATEWAY
=
"
$EGET_IPFS_GATEWAY
"
||
ipfs_mode
=
"disabled"
return
return
fi
fi
IPFS_GATEWAY
=
''
# check public http gateways
if
docmd eget
--check-site
"
$(
dirname
$ipfs_gateway
)
"
;
then
for
ipfs_gateway
in
$ipfs_gateways
;
do
info
"IPFS gateway
$ipfs_gateway
is accessible, but can't return shared
$ipfs_checkQm
"
check_ipfs_gateway
$ipfs_gateway
||
continue
else
IPFS_GATEWAY
=
"
$ipfs_gateway
"
info
"IPFS gateway
$(
dirname
$ipfs_gateway
)
is not accessible"
return
fi
done
ipfs_mode
=
"disabled"
ipfs_mode
=
"disabled"
}
}
...
...
packed/serv.sh
View file @
325d76ff
...
@@ -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
2
"
EPMVERSION
=
"3.60.1
3
"
# package, single (file), pipe, git
# package, single (file), pipe, git
EPMMODE
=
"package"
EPMMODE
=
"package"
...
@@ -788,7 +788,7 @@ get_package_type()
...
@@ -788,7 +788,7 @@ get_package_type()
return
return
;;
;;
*
)
*
)
if
[
-r
"
$1
"
]
&&
file
"
$1
"
|
grep
-q
" ELF "
;
then
if
[
-r
"
$1
"
]
&&
file
-L
"
$1
"
|
grep
-q
" ELF "
;
then
echo
"ELF"
echo
"ELF"
return
return
fi
fi
...
...
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