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
93476aa5
Commit
93476aa5
authored
Feb 11, 2013
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
replace pkg_add with pkgsrc (generic name for *BSD package manager)
parent
bcd4d994
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
13 additions
and
13 deletions
+13
-13
epm-install
bin/epm-install
+4
-4
epm-packages
bin/epm-packages
+1
-1
epm-reinstall
bin/epm-reinstall
+1
-1
epm-remove
bin/epm-remove
+3
-3
epm-search
bin/epm-search
+1
-1
epm-sh-functions
bin/epm-sh-functions
+2
-2
epm-upgrade
bin/epm-upgrade
+1
-1
No files found.
bin/epm-install
View file @
93476aa5
...
...
@@ -63,7 +63,7 @@ epm_install_names()
urpm-rpm
)
sudocmd urpmi
$URPMOPTIONS
$@
return
;;
pkg
_add
)
pkg
src
)
sudocmd pkg_add
-r
$@
return
;;
emerge
)
...
...
@@ -112,7 +112,7 @@ epm_ni_install_names()
# FIXME: returns true ever no package found, need check for "no found", "Nothing to do."
yes
| sudocmd zypper
--non-interactive
$ZYPPEROPTIONS
install
$@
return
;;
pkg
_add
)
pkg
src
)
sudocmd pkg_add
-r
$@
return
;;
pacman
)
...
...
@@ -184,7 +184,7 @@ epm_install_files()
URPMOPTIONS
=
--no-verify-rpm
# use install_names
;;
pkg
_add
)
pkg
src
)
sudocmd pkg_add
$@
return
;;
pacman
)
...
...
@@ -208,7 +208,7 @@ epm_print_install_command()
apt-dpkg
)
echo
"dpkg -i
$@
"
;;
pkg
_add
)
pkg
src
)
echo
"pkg_add
$@
"
;;
pacman
)
...
...
bin/epm-packages
View file @
93476aa5
...
...
@@ -35,7 +35,7 @@ case $PMTYPE in
emerge
)
CMD
=
"qlist -I"
;;
pkg
_add
)
pkg
src
)
CMD
=
"pkg_info"
;;
pacman
)
...
...
bin/epm-reinstall
View file @
93476aa5
...
...
@@ -37,7 +37,7 @@ epm_reinstall_names()
zypper-rpm
)
sudocmd zypper
install
$@
return
;;
pkg
_add
)
pkg
src
)
sudocmd pkg_add
-r
$@
return
;;
pacman
)
...
...
bin/epm-remove
View file @
93476aa5
...
...
@@ -28,7 +28,7 @@ epm_remove_low()
apt-dpkg
)
sudocmd dpkg
-P
$@
return
;;
pkg
_add
)
pkg
src
)
sudocmd pkg_delete
-r
$@
return
;;
emerge
)
...
...
@@ -55,7 +55,7 @@ epm_remove_names()
urpm-rpm
)
sudocmd urpme
$@
return
;;
pkg
_add
)
# without dependencies
pkg
src
)
# without dependencies
sudocmd pkg_delete
$@
return
;;
emerge
)
...
...
@@ -127,7 +127,7 @@ epm_print_remove_command()
apt-dpkg
)
echo
"dpkg -P
$@
"
;;
pkg
_add
)
pkg
src
)
echo
"pkg_delete -r
$@
"
;;
emerge
)
...
...
bin/epm-search
View file @
93476aa5
...
...
@@ -31,7 +31,7 @@ case $PMTYPE in
urpm-rpm
)
CMD
=
"urpmq -y"
;;
pkg
_add
)
pkg
src
)
CMD
=
"pkg_info -x"
;;
emerge
)
...
...
bin/epm-sh-functions
View file @
93476aa5
...
...
@@ -200,8 +200,8 @@ case $DISTRNAME in
Mandriva|ROSA
)
CMD
=
"urpm-rpm"
;;
FreeBSD
)
CMD
=
"pkg
_add
"
FreeBSD
|NetBSD|OpenBSD|Solaris
)
CMD
=
"pkg
src
"
;;
Gentoo
)
CMD
=
"emerge"
...
...
bin/epm-upgrade
View file @
93476aa5
...
...
@@ -46,7 +46,7 @@ epm_upgrade()
emerge
)
CMD
=
"emerge -NuDa world"
;;
pkg
_add
)
pkg
src
)
CMD
=
"freebsd-update fetch install"
;;
chocolatey
)
...
...
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