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
Vladislav
eepm
Commits
d09a1cfb
Commit
d09a1cfb
authored
Jul 26, 2012
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add some Gentoo support, add some commands
parent
47961a04
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
3 deletions
+15
-3
epm-check
bin/epm-check
+3
-0
epm-repolist
bin/epm-repolist
+3
-0
epm-search
bin/epm-search
+1
-1
epm-sh-functions
bin/epm-sh-functions
+5
-2
epm-simulate
bin/epm-simulate
+3
-0
No files found.
bin/epm-check
View file @
d09a1cfb
...
...
@@ -37,6 +37,9 @@ case $PMTYPE in
docmd package-cleanup
--leaves
package-cleanup
--leaves
| xargs yum remove
;;
urpm-rpm
)
docmd
$SUDO
urpme
--auto-orphans
;;
zypper-rpm
)
docmd
$SUDO
zypper verify
||
exit
;;
...
...
bin/epm-repolist
View file @
d09a1cfb
...
...
@@ -27,6 +27,9 @@ case $PMTYPE in
yum-rpm
)
docmd
$SUDO
yum repolist
||
exit
;;
zypper-rpm
)
docmd
$USDO
zypper sl
;;
*
)
fatal
"Do not known command for
$PMTYPE
"
;;
...
...
bin/epm-search
View file @
d09a1cfb
...
...
@@ -34,7 +34,7 @@ case $PMTYPE in
urpm-rpm
)
CMD
=
"urpmq -y"
;;
z
u
pper-rpm
)
z
y
pper-rpm
)
CMD
=
"zypper search"
;;
*
)
...
...
bin/epm-sh-functions
View file @
d09a1cfb
...
...
@@ -138,7 +138,7 @@ case $DISTRNAME in
FreeBSD
)
CMD
=
"pkg_add"
;;
Ubuntu|Debian
)
Ubuntu|Debian
|Mint
)
CMD
=
"apt-dpkg"
;;
LinuxXP|Fedora|ASPLinux|CentOS|RHEL|Scientific
)
...
...
@@ -147,9 +147,12 @@ case $DISTRNAME in
Mandriva|ROSA
)
CMD
=
"urpm-rpm"
;;
SUSE
)
SUSE
|SLED|SLES
)
CMD
=
"zypper-rpm"
;;
Gentoo
)
CMD
=
"emerge"
;;
*
)
fatal
"Do not known DISTRNAME
$DISTRNAME
"
;;
...
...
bin/epm-simulate
View file @
d09a1cfb
...
...
@@ -37,6 +37,9 @@ epm_simulate()
zypper-rpm
)
CMD
=
"zypper --non-interactive install --dry-run"
;;
emerge
)
echo
"FIXME: Skip with emerge"
return
;;
*
)
fatal
"Do not known install command for
$PMTYPE
"
;;
...
...
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