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
390f7b71
Commit
390f7b71
authored
Oct 05, 2013
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add initial support for guix
parent
174e4515
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
27 additions
and
0 deletions
+27
-0
epm-autoremove
bin/epm-autoremove
+3
-0
epm-install
bin/epm-install
+3
-0
epm-packages
bin/epm-packages
+3
-0
epm-release-upgrade
bin/epm-release-upgrade
+6
-0
epm-remove
bin/epm-remove
+3
-0
epm-search
bin/epm-search
+3
-0
epm-sh-functions
bin/epm-sh-functions
+3
-0
epm-upgrade
bin/epm-upgrade
+3
-0
No files found.
bin/epm-autoremove
View file @
390f7b71
...
...
@@ -56,6 +56,9 @@ case $PMTYPE in
# clean-system removes non official packages
#sudocmd slackpkg clean-system
;;
guix
)
sudocmd guix gc
;;
#zypper-rpm)
# sudocmd zypper clean
# ;;
...
...
bin/epm-install
View file @
390f7b71
...
...
@@ -143,6 +143,9 @@ epm_install_names()
nix
)
__separate_sudocmd
"nix-env --install"
"nix-env --upgrade"
$@
return
;;
guix
)
__separate_sudocmd
"guix package -i"
"guix package -i"
$@
return
;;
*
)
fatal
"Have no suitable install command for
$PMTYPE
"
;;
...
...
bin/epm-packages
View file @
390f7b71
...
...
@@ -93,6 +93,9 @@ case $PMTYPE in
ipkg
)
CMD
=
"ipkg list"
;;
guix
)
CMD
=
"guix package -I"
;;
*
)
fatal
"Have no suitable query command for
$PMTYPE
"
;;
...
...
bin/epm-release-upgrade
View file @
390f7b71
...
...
@@ -63,6 +63,12 @@ epm_release_upgrade()
conary
)
epm Upgrade
;;
emerge
)
epm Upgrade
;;
guix
)
sudocmd guix pull
--verbose
;;
*
)
fatal
"Have no suitable command for
$PMTYPE
"
;;
...
...
bin/epm-remove
View file @
390f7b71
...
...
@@ -94,6 +94,9 @@ epm_remove_names()
nix
)
sudocmd nix-env
--uninstall
$@
return
;;
guix
)
sudocmd guix package
-r
$@
return
;;
chocolatey
)
sudocmd chocolatey uninstall
$@
return
;;
...
...
bin/epm-search
View file @
390f7b71
...
...
@@ -70,6 +70,9 @@ case $PMTYPE in
homebrew
)
CMD
=
"brew search"
;;
guix
)
CMD
=
"guix package -A"
;;
*
)
fatal
"Have no suitable search command for
$PMTYPE
"
;;
...
...
bin/epm-sh-functions
View file @
390f7b71
...
...
@@ -326,6 +326,9 @@ case $DISTRNAME in
OpenWRT
)
CMD
=
"ipkg"
;;
GNU/Linux/Guix
)
CMD
=
"guix"
;;
*
)
fatal
"Have no suitable DISTRNAME
$DISTRNAME
"
;;
...
...
bin/epm-upgrade
View file @
390f7b71
...
...
@@ -71,6 +71,9 @@ epm_upgrade()
slackpkg
)
CMD
=
"/usr/sbin/slackpkg upgrade-all"
;;
guix
)
CMD
=
"guix package -u"
;;
*
)
fatal
"Have no suitable 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