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
68cf891e
Commit
68cf891e
authored
Jul 18, 2022
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
epm play: skip update for hidden packages
parent
4d5b2a82
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
4 deletions
+7
-4
epm-play
bin/epm-play
+4
-2
common.sh
play.d/common.sh
+1
-0
vivaldi-codecs-ffmpeg-extra.sh
play.d/vivaldi-codecs-ffmpeg-extra.sh
+1
-1
yandex-browser-codecs-ffmpeg-extra.sh
play.d/yandex-browser-codecs-ffmpeg-extra.sh
+1
-1
No files found.
bin/epm-play
View file @
68cf891e
...
...
@@ -87,7 +87,9 @@ __list_app_packages_table()
{
local
name
for
name
in
$(
__list_all_app
)
;
do
echo
"
$(
__get_app_package
$name
)
$name
"
local
pkg
=
"
$(
__get_app_package
$name
)
"
[
-n
"
$pkg
"
]
||
continue
echo
"
$pkg
$name
"
done
}
...
...
@@ -153,7 +155,7 @@ __epm_play_list_installed()
[
-n
"
$quiet
"
]
||
echo
"Installed applications:"
for
i
in
$(
__list_installed_app
)
;
do
local
desc
=
"
$(
__get_app_description
$i
)
"
[
-n
"
$desc
"
]
||
continue
#
[ -n "$desc" ] || continue
[
-n
"
$quiet
"
]
||
echo
-n
" "
printf
"%-20s - %s
\n
"
"
$i
"
"
$desc
"
done
...
...
play.d/common.sh
View file @
68cf891e
...
...
@@ -33,6 +33,7 @@ case "$1" in
exit
;;
"--package-name"
)
[
-n
"
$DESCRIPTION
"
]
||
exit
0
echo
"
$PKGNAME
"
exit
;;
...
...
play.d/vivaldi-codecs-ffmpeg-extra.sh
View file @
68cf891e
...
...
@@ -4,7 +4,7 @@ BRANCH=stable
PRODUCTDIR
=
/opt/vivaldi
DESCRIPTION
=
''
if
[
"
$2
"
=
"snapshot"
]
;
then
if
[
"
$2
"
=
"snapshot"
]
||
epm installed vivaldi-snapshot-codecs-ffmpeg-extra
;
then
BRANCH
=
snapshot
#PRODUCTDIR=$PRODUCTDIR-$BRANCH
fi
...
...
play.d/yandex-browser-codecs-ffmpeg-extra.sh
View file @
68cf891e
...
...
@@ -4,7 +4,7 @@ BRANCH=stable
PRODUCTDIR
=
/opt/yandex/browser
DESCRIPTION
=
''
if
[
"
$2
"
=
"beta"
]
;
then
if
[
"
$2
"
=
"beta"
]
||
epm installed yandex-browser-beta-codecs-ffmpeg-extra
;
then
BRANCH
=
beta
PRODUCTDIR
=
/opt/yandex/browser-
$BRANCH
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