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
Nurlan
eepm
Commits
eba15413
Commit
eba15413
authored
Feb 20, 2013
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add initial aura support
parent
32811eb4
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
22 additions
and
0 deletions
+22
-0
epm-autoremove
bin/epm-autoremove
+3
-0
epm-info
bin/epm-info
+4
-0
epm-install
bin/epm-install
+6
-0
epm-search
bin/epm-search
+3
-0
epm-update
bin/epm-update
+3
-0
epm-upgrade
bin/epm-upgrade
+3
-0
No files found.
bin/epm-autoremove
View file @
eba15413
...
@@ -26,6 +26,9 @@ case $PMTYPE in
...
@@ -26,6 +26,9 @@ case $PMTYPE in
apt-dpkg
)
apt-dpkg
)
sudocmd apt-get autoremove
sudocmd apt-get autoremove
;;
;;
aura
)
sudocmd aura
-Oj
;;
#yum-rpm)
#yum-rpm)
# sudocmd yum clean all
# sudocmd yum clean all
# ;;
# ;;
...
...
bin/epm-info
View file @
eba15413
...
@@ -59,6 +59,10 @@ case $PMTYPE in
...
@@ -59,6 +59,10 @@ case $PMTYPE in
is_installed
$pkg_names
&&
docmd pacman
-Qi
$pkg_names
&&
return
is_installed
$pkg_names
&&
docmd pacman
-Qi
$pkg_names
&&
return
docmd pacman
-Si
$pkg_names
docmd pacman
-Si
$pkg_names
;;
;;
aura
)
is_installed
$pkg_names
&&
docmd pacman
-Qi
$pkg_names
&&
return
docmd aura
-Ai
$pkg_names
;;
npackd
)
npackd
)
# FIXME: --version=
# FIXME: --version=
docmd npackdcl info
--package
=
$pkg_names
docmd npackdcl info
--package
=
$pkg_names
...
...
bin/epm-install
View file @
eba15413
...
@@ -70,6 +70,9 @@ epm_install_names()
...
@@ -70,6 +70,9 @@ epm_install_names()
pacman
)
pacman
)
sudocmd pacman
-S
$force
$nodeps
$@
sudocmd pacman
-S
$force
$nodeps
$@
return
;;
return
;;
aura
)
sudocmd aura
-A
$force
$nodeps
$@
return
;;
yum-rpm
)
yum-rpm
)
sudocmd yum
$YUMOPTIONS
install
$@
sudocmd yum
$YUMOPTIONS
install
$@
return
;;
return
;;
...
@@ -127,6 +130,9 @@ epm_ni_install_names()
...
@@ -127,6 +130,9 @@ epm_ni_install_names()
pacman
)
pacman
)
sudocmd pacman
-S
--noconfirm
$force
$nodeps
$@
sudocmd pacman
-S
--noconfirm
$force
$nodeps
$@
return
;;
return
;;
aura
)
sudocmd aura
-A
$force
$nodeps
$@
return
;;
npackd
)
npackd
)
# npackdcl update --package=<package> (remove old and install new)
# npackdcl update --package=<package> (remove old and install new)
docmd npackdcl add
--package
=
$@
docmd npackdcl add
--package
=
$@
...
...
bin/epm-search
View file @
eba15413
...
@@ -40,6 +40,9 @@ case $PMTYPE in
...
@@ -40,6 +40,9 @@ case $PMTYPE in
pacman
)
pacman
)
CMD
=
"pacman -Ss"
CMD
=
"pacman -Ss"
;;
;;
aura
)
CMD
=
"aura -As"
;;
yum-rpm
)
yum-rpm
)
CMD
=
"yum search"
CMD
=
"yum search"
;;
;;
...
...
bin/epm-update
View file @
eba15413
...
@@ -42,6 +42,9 @@ case $PMTYPE in
...
@@ -42,6 +42,9 @@ case $PMTYPE in
pacman
)
pacman
)
sudocmd pacman
-S
-y
sudocmd pacman
-S
-y
;;
;;
aura
)
sudocmd aura
-A
-y
;;
zypper-rpm
)
zypper-rpm
)
sudocmd zypper refresh
sudocmd zypper refresh
;;
;;
...
...
bin/epm-upgrade
View file @
eba15413
...
@@ -43,6 +43,9 @@ epm_upgrade()
...
@@ -43,6 +43,9 @@ epm_upgrade()
pacman
)
pacman
)
CMD
=
"pacman -S -u"
CMD
=
"pacman -S -u"
;;
;;
aura
)
CMD
=
"aura -A -u"
;;
emerge
)
emerge
)
CMD
=
"emerge -NuDa world"
CMD
=
"emerge -NuDa world"
;;
;;
...
...
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