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
6c13a341
Commit
6c13a341
authored
1 year ago
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
epm provides: improve for dnf
parent
1163250f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
2 deletions
+23
-2
epm-provides
bin/epm-provides
+23
-2
No files found.
bin/epm-provides
View file @
6c13a341
...
...
@@ -63,11 +63,32 @@ case $PMTYPE in
return
fi
;;
urpm-rpm
|zypper-rpm|yum-rpm|dnf-rpm
)
urpm-rpm
)
if
is_installed
$pkg_names
;
then
CMD
=
"rpm -q --provides"
else
fatal
"FIXME: use hi level commands"
CMD
=
"urpmq --provides"
fi
;;
zypper-rpm
)
if
is_installed
$pkg_names
;
then
CMD
=
"rpm -q --provides"
else
fatal
"FIXME: use hi level commands or download firstly"
fi
;;
yum-rpm
)
if
is_installed
$pkg_names
;
then
CMD
=
"rpm -q --provides"
else
fatal
"FIXME: use hi level commands or download firstly"
fi
;;
dnf-rpm
)
if
is_installed
$pkg_names
;
then
CMD
=
"rpm -q --provides"
else
CMD
=
"dnf repoquery --provides"
fi
;;
emerge
)
...
...
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