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
2f3302ca
Commit
2f3302ca
authored
Nov 12, 2025
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add stplr support
parent
96c975bf
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
33 additions
and
0 deletions
+33
-0
epm-check
bin/epm-check
+3
-0
epm-info
bin/epm-info
+3
-0
epm-install
bin/epm-install
+6
-0
epm-list_available
bin/epm-list_available
+3
-0
epm-packages
bin/epm-packages
+3
-0
epm-remove
bin/epm-remove
+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-check
View file @
2f3302ca
...
@@ -85,6 +85,9 @@ case $PMTYPE in
...
@@ -85,6 +85,9 @@ case $PMTYPE in
pkgng
)
pkgng
)
sudocmd pkg check
-d
-a
sudocmd pkg check
-d
-a
;;
;;
stplr
)
sudocmd stplr fix
;;
homebrew
)
homebrew
)
docmd brew doctor
docmd brew doctor
;;
;;
...
...
bin/epm-info
View file @
2f3302ca
...
@@ -140,6 +140,9 @@ case $PMTYPE in
...
@@ -140,6 +140,9 @@ case $PMTYPE in
eopkg
)
eopkg
)
docmd eopkg info
$pkg_files
$pkg_names
docmd eopkg info
$pkg_files
$pkg_names
;;
;;
stplr
)
docmd stplr info
$pkg_names
;;
pisi
)
pisi
)
docmd pisi info
$pkg_files
$pkg_names
docmd pisi info
$pkg_files
$pkg_names
;;
;;
...
...
bin/epm-install
View file @
2f3302ca
...
@@ -189,6 +189,9 @@ epm_install_names()
...
@@ -189,6 +189,9 @@ epm_install_names()
eopkg
)
eopkg
)
sudocmd eopkg
$(
subst_option nodeps
--ignore-dependency
)
install
$@
sudocmd eopkg
$(
subst_option nodeps
--ignore-dependency
)
install
$@
return
;;
return
;;
stplr
)
sudocmd stplr
install
$@
return
;;
pisi
)
pisi
)
sudocmd pisi
$(
subst_option nodeps
--ignore-dependency
)
install
$@
sudocmd pisi
$(
subst_option nodeps
--ignore-dependency
)
install
$@
return
;;
return
;;
...
@@ -309,6 +312,9 @@ epm_ni_install_names()
...
@@ -309,6 +312,9 @@ epm_ni_install_names()
pisi
)
pisi
)
sudocmd pisi
--yes-all
install
$@
sudocmd pisi
--yes-all
install
$@
return
;;
return
;;
stplr
)
sudocmd stplr
install
-y
$@
return
;;
nix
)
nix
)
sudocmd nix-env
--install
$@
sudocmd nix-env
--install
$@
return
;;
return
;;
...
...
bin/epm-list_available
View file @
2f3302ca
...
@@ -117,6 +117,9 @@ case $PMTYPE in
...
@@ -117,6 +117,9 @@ case $PMTYPE in
eopkg
)
eopkg
)
CMD
=
"eopkg list-available"
CMD
=
"eopkg list-available"
;;
;;
stplr
)
CMD
=
"stplr list"
;;
pisi
)
pisi
)
CMD
=
"pisi list-available"
CMD
=
"pisi list-available"
;;
;;
...
...
bin/epm-packages
View file @
2f3302ca
...
@@ -183,6 +183,9 @@ case $PMTYPE in
...
@@ -183,6 +183,9 @@ case $PMTYPE in
eopkg
)
eopkg
)
CMD
=
"eopkg list-installed"
CMD
=
"eopkg list-installed"
;;
;;
stplr
)
CMD
=
"stplr list --installed"
;;
pisi
)
pisi
)
CMD
=
"pisi list-installed"
CMD
=
"pisi list-installed"
;;
;;
...
...
bin/epm-remove
View file @
2f3302ca
...
@@ -145,6 +145,9 @@ epm_remove_names()
...
@@ -145,6 +145,9 @@ epm_remove_names()
eopkg
)
eopkg
)
sudocmd eopkg
$(
subst_option nodeps
--ignore-dependency
)
remove
$@
sudocmd eopkg
$(
subst_option nodeps
--ignore-dependency
)
remove
$@
return
;;
return
;;
stplr
)
sudocmd stplr remove
$@
return
;;
pisi
)
pisi
)
sudocmd pisi
$(
subst_option nodeps
--ignore-dependency
)
remove
$@
sudocmd pisi
$(
subst_option nodeps
--ignore-dependency
)
remove
$@
return
;;
return
;;
...
@@ -242,6 +245,9 @@ epm_remove_nonint()
...
@@ -242,6 +245,9 @@ epm_remove_nonint()
eopkg
)
eopkg
)
sudocmd eopkg
$(
subst_option nodeps
--ignore-dependency
)
--yes-all
remove
$@
sudocmd eopkg
$(
subst_option nodeps
--ignore-dependency
)
--yes-all
remove
$@
return
;;
return
;;
stplr
)
sudocmd stplr remove
-y
$@
return
;;
pisi
)
pisi
)
sudocmd pisi
$(
subst_option nodeps
--ignore-dependency
)
--yes-all
remove
$@
sudocmd pisi
$(
subst_option nodeps
--ignore-dependency
)
--yes-all
remove
$@
return
;;
return
;;
...
...
bin/epm-search
View file @
2f3302ca
...
@@ -59,6 +59,9 @@ case $PMTYPE in
...
@@ -59,6 +59,9 @@ case $PMTYPE in
eopkg
)
eopkg
)
CMD
=
"eopkg search --"
CMD
=
"eopkg search --"
;;
;;
stplr
)
CMD
=
"stplr search --"
;;
pisi
)
pisi
)
CMD
=
"pisi search --"
CMD
=
"pisi search --"
;;
;;
...
...
bin/epm-update
View file @
2f3302ca
...
@@ -172,6 +172,9 @@ case $PMTYPE in
...
@@ -172,6 +172,9 @@ case $PMTYPE in
eopkg
)
eopkg
)
sudocmd eopkg update-repo
sudocmd eopkg update-repo
;;
;;
stplr
)
sudocmd stplr refresh
;;
pisi
)
pisi
)
sudocmd pisi update-repo
sudocmd pisi update-repo
;;
;;
...
...
bin/epm-upgrade
View file @
2f3302ca
...
@@ -205,6 +205,9 @@ epm_upgrade()
...
@@ -205,6 +205,9 @@ epm_upgrade()
eopkg
)
eopkg
)
CMD
=
"eopkg upgrade"
CMD
=
"eopkg upgrade"
;;
;;
stplr
)
CMD
=
"stplr upgrade"
;;
pisi
)
pisi
)
CMD
=
"pisi upgrade"
CMD
=
"pisi upgrade"
;;
;;
...
...
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