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
838a1e3b
Commit
838a1e3b
authored
1 year ago
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
epm repack: use AutoReq: no, AutoProv: no by default
parent
d9934aeb
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
4 deletions
+23
-4
common.sh
repack.d/common.sh
+19
-0
generic-appimage.sh
repack.d/generic-appimage.sh
+0
-4
generic.sh
repack.d/generic.sh
+4
-0
No files found.
repack.d/common.sh
View file @
838a1e3b
...
...
@@ -310,6 +310,25 @@ drop_embedded_reqs()
filter_from_requires
"libGLESv2.so()"
"libEGL.so()"
"libffmpeg.so()"
}
set_autoreq
()
{
if
cat
$SPEC
|
grep
-q
"^AutoReq:"
;
then
subst
"s|^AutoReq:.*|AutoReq:
$*
|"
$SPEC
else
subst
"1iAutoReq:
$*
"
$SPEC
fi
}
set_autoprov
()
{
if
cat
$SPEC
|
grep
-q
"^AutoProv:"
;
then
subst
"s|^AutoProv:.*|AutoProv:
$*
|"
$SPEC
else
subst
"1iAutoProv:
$*
"
$SPEC
fi
}
# by default check in $PRODUCTDIR
use_system_xdg
()
{
...
...
This diff is collapsed.
Click to expand it.
repack.d/generic-appimage.sh
View file @
838a1e3b
...
...
@@ -89,10 +89,6 @@ add_bin_cdexec_command $PRODUCT $PRODUCTDIR/AppRun
# Strange AppRun script uses args as path, so override path detection
subst
"2iexport APPDIR=
$PRODUCTDIR
"
$BUILDROOT
/usr/bin/
$PRODUCT
subst
'1iAutoProv:no'
$SPEC
#subst '1iAutoReq:yes,nopython,nomono,nomonolib' $SPEC
subst
'1iAutoReq:no'
$SPEC
if
[
-f
v8_context_snapshot.bin
]
;
then
echo
"electron based application detected, adding requires ..."
.
$(
dirname
$0
)
/common-chromium-browser.sh
...
...
This diff is collapsed.
Click to expand it.
repack.d/generic.sh
View file @
838a1e3b
...
...
@@ -43,6 +43,10 @@ fi
# TODO: check for tarball, detect root dir
#echo $BUILDROOT | grep -q "tar.*tmpdir/" && move_to_opt /liteide
# no auto req/prov by default
set_autoreq no
set_autoprov no
# Set high Epoche to override repository package
subst
"s|^
\(
Name: .*
\)
$|
# Override repository package
\n
Epoch: 100
\n\1
|g"
$SPEC
...
...
This diff is collapsed.
Click to expand it.
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