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
2855d1c3
Commit
2855d1c3
authored
7 years ago
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drop arch suffix adding (we can't distinct between arch/noarch)
parent
755ba86f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
epm-install
bin/epm-install
+2
-1
epm-remove
bin/epm-remove
+2
-1
No files found.
bin/epm-install
View file @
2855d1c3
...
...
@@ -608,7 +608,8 @@ epm_install()
# to be filter happy
warmup_lowbase
local
names
=
"
$(
echo
$pkg_names
| exp_with_arch_suffix | filter_out_installed_packages
)
"
local
names
=
"
$(
echo
$pkg_names
| filter_out_installed_packages
)
"
#local names="$(echo $pkg_names | exp_with_arch_suffix | filter_out_installed_packages)"
local
files
=
"
$(
echo
$pkg_files
| filter_out_installed_packages
)
"
# can be empty only after skip installed
...
...
This diff is collapsed.
Click to expand it.
bin/epm-remove
View file @
2855d1c3
...
...
@@ -256,7 +256,8 @@ epm_remove()
pkg_files
=
''
[
-n
"
$pkg_names
"
]
||
fatal
"Remove: missing package(s) name."
pkg_names
=
"
$(
echo
$pkg_names
| exp_with_arch_suffix
)
"
# TODO: remove only according current arch (if x86_64)
#pkg_names="$(echo $pkg_names | exp_with_arch_suffix)"
if
[
-n
"
$dryrun
"
]
;
then
info
"Packages for removing:"
...
...
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